diff --git a/src/python/EDA/.ipynb b/src/python/EDA/.ipynb new file mode 100644 index 0000000..4dc2540 --- /dev/null +++ b/src/python/EDA/.ipynb @@ -0,0 +1,756 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.linear_model import LinearRegression\n", + "from scipy.stats import pearsonr\n", + "from sklearn.metrics import mean_squared_error\n", + "from sklearn.metrics import mean_absolute_error\n", + "from sklearn.model_selection import KFold\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 2-aminoadipate 3-phosphoglycerate Alpha-glycerophosphate 4-pyridoxate \\\n", + "0 6.112727 6.034198 5.896896 6.000532 \n", + "1 5.577413 5.727045 5.111468 6.073250 \n", + "2 5.886398 5.574881 5.541259 5.848375 \n", + "3 5.770030 6.099229 6.233259 5.543495 \n", + "4 5.480683 5.469742 6.509397 6.251005 \n", + "\n", + " Aconitate Adenine Adipate Alpha-ketoglutarate AMP Citrate \\\n", + "0 5.513618 5.868529 5.977177 5.693074 5.923737 5.641242 \n", + "1 5.802494 5.824473 5.888821 5.768379 5.760784 5.914742 \n", + "2 5.665026 5.875548 5.894904 5.839640 5.742613 5.570208 \n", + "3 5.767759 6.155905 6.111148 5.949481 6.342703 6.054781 \n", + "4 5.190578 5.897085 6.148333 5.607481 5.871600 5.128463 \n", + "\n", + " ... C56:8 TAG C56:7 TAG C56:6 TAG C56:5 TAG C56:4 TAG C56:3 TAG \\\n", + "0 ... 6.070239 6.133433 6.091089 6.257711 6.372732 6.202511 \n", + "1 ... 6.248653 6.633575 6.378052 6.341043 6.360945 6.333540 \n", + "2 ... 5.942887 5.946988 5.837980 5.913350 6.137530 5.807546 \n", + "3 ... 6.516922 6.113791 6.282113 6.248667 6.109480 6.043570 \n", + "4 ... 6.161981 6.777932 6.676390 6.695659 6.751029 6.385056 \n", + "\n", + " C56:2 TAG C58:8 TAG C58:7 TAG C58:6 TAG \n", + "0 5.939576 6.309821 6.115974 5.999436 \n", + "1 6.137271 7.065858 6.832174 6.363064 \n", + "2 5.704149 5.881193 5.785208 5.504225 \n", + "3 5.846802 6.429402 5.779815 6.241530 \n", + "4 6.682612 6.757899 6.728570 6.879260 \n", + "\n", + "[5 rows x 225 columns]\n", + " H3K4me0 H3K4me1 H3K4me2 H3K4ac1 H3K9me0K14ac0 H3K9me1K14ac0 \\\n", + "0 0.116020 -0.153144 -0.348607 -1.417128 -1.281177 -0.719707 \n", + "1 -0.058624 0.219592 0.110946 -0.170282 0.334630 0.497303 \n", + "2 0.480909 0.298440 0.073777 0.413953 -0.479543 0.133280 \n", + "3 -0.079957 -0.617656 -0.566702 0.079932 0.373140 0.159682 \n", + "4 -0.059965 -0.063483 -0.267980 0.357422 0.075651 0.047830 \n", + "\n", + " H3K9me2K14ac0 H3K9me3K14ac0 H3K9ac1K14ac0 H3K9me0K14ac1 ... \\\n", + "0 -0.208080 -0.033416 -0.967821 -1.150058 ... \n", + "1 0.307907 -0.466686 0.062518 -0.517698 ... \n", + "2 0.053279 -0.220467 -0.427160 0.215504 ... \n", + "3 0.060946 -0.181112 0.208328 0.182229 ... \n", + "4 0.115243 -0.498239 -0.059567 0.845077 ... \n", + "\n", + " H3K27ac1K36me0 H3K27ac1K36me1 H3K27ac1K36me2 H3K27ac1K36me3 \\\n", + "0 0.396178 1.261963 0.492776 -0.211349 \n", + "1 -1.198709 -1.394997 -1.123119 -1.501911 \n", + "2 0.055683 -0.659294 0.114288 -1.289012 \n", + "3 1.098303 0.381884 0.258282 0.751323 \n", + "4 -0.185237 0.239421 0.358072 -0.176527 \n", + "\n", + " H3.3K27me0K36me0 H3K56me0 H3K56me1 H3K79me0 H3K79me1 H3K79me2 \n", + "0 -0.554973 -0.222912 -0.310910 -0.272655 0.271469 0.469647 \n", + "1 -0.180229 -0.075173 NaN 0.051018 0.099032 0.169761 \n", + "2 0.280396 0.117564 NaN 0.185984 0.191760 -0.437561 \n", + "3 0.031194 -0.199316 0.037929 0.003978 -0.225147 -0.061445 \n", + "4 -0.351188 0.037021 NaN 0.045495 -0.153684 -0.106306 \n", + "\n", + "[5 rows x 42 columns]\n" + ] + } + ], + "source": [ + "md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name=\"All\")\n", + "mt = md.drop(['Tissue', 'Medium','Culture'], axis=1)\n", + "hm = pd.read_csv('GCP_proteomics_remapped.csv')\n", + "merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line')\n", + "MET = merge_tb.iloc[:,1:226]\n", + "GCP = merge_tb.iloc[:,227:269]\n", + "print(MET.head())\n", + "print(GCP.head())\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(259, 42)\n", + "(604, 225)\n" + ] + } + ], + "source": [ + "# GCP.to_numpy()\n", + "# MET.to_numpy()\n", + "GCP = np.nan_to_num(GCP, nan=0)\n", + "MET = np.nan_to_num(MET, nan=0)\n", + "Xtrain, Xtest, Ytrain, Ytest =train_test_split(GCP, MET, test_size=0.3, random_state=0)\n", + "\n", + "# print(GCP.shape)\n", + "# print(Xtrain)\n", + "print(Xtest.shape)\n", + "# print(MET.shape)\n", + "print(Ytrain.shape)\n", + "# print(Ytest.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression()]\n" + ] + } + ], + "source": [ + "\n", + "GCP2MET_models = []\n", + "for i in range(Ytrain.shape[1]):\n", + " mdl_G2M = LinearRegression().fit(Xtrain, Ytrain[:, i])\n", + " GCP2MET_models.append(mdl_G2M)\n", + "\n", + "# GCP2MET_models.append(mdl_G2M.coef_)\n", + "# Ypred = mdl_G2M.coef_ * Xtest\n", + "print(GCP2MET_models)\n", + "# print(len(GCP2MET_models))\n", + "\n", + "MET2GCP_models = []\n", + "\n", + "for j in range(Xtrain.shape[1]):\n", + " mdl_M2G = LinearRegression().fit(Ytrain, Xtrain[:,j])\n", + " MET2GCP_models.append(mdl_M2G)\n", + "\n", + "# MET2GCP_models.append(mdl_M2G.coef_)\n", + "# print(MET2GCP_models)\n", + "# print(len(MET2GCP_models))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def evaluate_models(models, Xtest, Ytest):\n", + " \"\"\"\n", + " evaluate_models returns results from the model predictions, including the pearson\n", + " correlation coefficient, p-Values, and MSE.\n", + "\n", + " :param models: A list of scikit-learn model objects.\n", + " :param Xtest: A numpy array or pandas dataframe containing validation set input data.\n", + " :param Ytest: A numpy array or pandas dataframe containing validation set output data.\n", + " :return pred_resul: A dictionary containing the final MSE, pValue, or rValue.\n", + " \n", + " \"\"\"\n", + " \n", + " predictions = []\n", + " rValue = list()\n", + " pValue = list()\n", + " MSE = list()\n", + " for i in range(len(models)):\n", + " mdl = models[i]\n", + " Ypred = mdl.predict(Xtest)\n", + " predictions.append(Ypred)\n", + " \n", + " r, pvalue = pearsonr(Ypred, Ytest[:, i])\n", + " rValue.append(r)\n", + " pValue.append(pvalue)\n", + " \n", + " mse = mean_squared_error(Ypred, Ytest[:, i])\n", + " MSE.append(mse)\n", + " \n", + "\n", + " df_MSE = pd.DataFrame(MSE)\n", + " df_pValue = pd.DataFrame(pValue)\n", + " df_rValue = pd.DataFrame(rValue)\n", + " \n", + " return df_MSE, df_pValue, df_rValue\n", + "\n", + "mse1 = evaluate_models(GCP2MET_models, Xtest, Ytest)\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0\n", + "0 0.105660\n", + "1 0.113761\n", + "2 0.211453\n", + "3 0.124643\n", + "4 0.102915\n", + ".. ...\n", + "220 0.157474\n", + "221 0.174273\n", + "222 0.269746\n", + "223 0.353366\n", + "224 0.266817\n", + "\n", + "[225 rows x 1 columns]\n" + ] + } + ], + "source": [ + "mse1,p1,pearson1 = evaluate_models(GCP2MET_models, Xtest, Ytest)\n", + "print(mse1)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0 1 2 3 4 5 6 \\\n", + "mse1 0.098891 0.094329 0.319502 0.113154 0.105149 0.133179 0.045786 \n", + "mse2 0.123628 0.103319 0.335725 0.139940 0.102402 0.140503 0.043725 \n", + "mse3 0.099345 0.103648 0.278150 0.128813 0.099365 0.136939 0.038375 \n", + "\n", + " 7 8 9 ... 215 216 217 \\\n", + "mse1 0.080428 0.250379 0.112139 ... 0.145670 0.202951 0.192299 \n", + "mse2 0.064761 0.253493 0.116281 ... 0.101652 0.203684 0.191712 \n", + "mse3 0.067909 0.191660 0.102278 ... 0.124050 0.197997 0.183160 \n", + "\n", + " 218 219 220 221 222 223 224 \n", + "mse1 0.224030 0.169372 0.142034 0.170940 0.298064 0.340335 0.290046 \n", + "mse2 0.250278 0.189576 0.166025 0.201022 0.316814 0.396047 0.300359 \n", + "mse3 0.250604 0.200674 0.176717 0.198773 0.277209 0.326478 0.239974 \n", + "\n", + "[3 rows x 225 columns]\n" + ] + } + ], + "source": [ + "\n", + "kf = KFold(n_splits=3)\n", + "\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse_result = pd.DataFrame()\n", + "pvalue_result = pd.DataFrame()\n", + "rvalue_result = pd.DataFrame()\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + "# print(\"TRAIN:\", train_index, \"TEST:\", test_index)\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_GCP2MET_models = []\n", + " final_metrics = []\n", + " for i in range(y_train.shape[1]):\n", + " mdl_G2M = LinearRegression().fit(X_train, y_train[:, i])\n", + " v_GCP2MET_models.append(mdl_G2M)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_GCP2MET_models, X_test, y_test)\n", + "# print(\"mse:_\")\n", + "# print(df_MSE)\n", + " mse_result = pd.concat([mse_result,df_MSE],axis = 1)\n", + " pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + " rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "\n", + " \n", + "mse_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse_result = mse_result.T\n", + "print(mse_result)\n", + " \n", + " \n", + "\n", + "# MET2GCP_models = []\n", + "\n", + "# for j in range(Xtrain.shape[1]):\n", + "# mdl_M2G = LinearRegression().fit(Ytrain, Xtrain[:,j])\n", + "# MET2GCP_models.append(mdl_M2G)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 mse1\n", + "1 mse1\n", + "2 mse3\n", + "3 mse1\n", + "4 mse3\n", + " ... \n", + "220 mse1\n", + "221 mse1\n", + "222 mse3\n", + "223 mse3\n", + "224 mse3\n", + "Length: 225, dtype: object\n", + " 0 1 2 3 4 5 6 \\\n", + "mse1 0.098891 0.094329 0.319502 0.113154 0.105149 0.133179 0.045786 \n", + "mse2 0.123628 0.103319 0.335725 0.139940 0.102402 0.140503 0.043725 \n", + "mse3 0.099345 0.103648 0.278150 0.128813 0.099365 0.136939 0.038375 \n", + "\n", + " 7 8 9 ... 215 216 217 \\\n", + "mse1 0.080428 0.250379 0.112139 ... 0.145670 0.202951 0.192299 \n", + "mse2 0.064761 0.253493 0.116281 ... 0.101652 0.203684 0.191712 \n", + "mse3 0.067909 0.191660 0.102278 ... 0.124050 0.197997 0.183160 \n", + "\n", + " 218 219 220 221 222 223 224 \n", + "mse1 0.224030 0.169372 0.142034 0.170940 0.298064 0.340335 0.290046 \n", + "mse2 0.250278 0.189576 0.166025 0.201022 0.316814 0.396047 0.300359 \n", + "mse3 0.250604 0.200674 0.176717 0.198773 0.277209 0.326478 0.239974 \n", + "\n", + "[3 rows x 225 columns]\n" + ] + } + ], + "source": [ + "minMSE = mse_result.idxmin()\n", + "print(minMSE)\n", + "\n", + "print(mse_result)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# pvalue_result.columns = [\"p1\",\"p2\",\"p3\"]\n", + "\n", + "# print(pvalue_result)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# rvalue_result.columns = [\"r1\",\"r2\",\"r3\"]\n", + "# print(rvalue_result)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.09889121752201889\n", + "0.0943285422996137\n", + "0.31950231427523035\n", + "0.11315431881789152\n", + "0.10514939486950832\n", + "0.13317884818626838\n", + "0.04578579033959973\n", + "0.08042755920071351\n", + "0.2503789550024557\n", + "0.11213885851416264\n", + "0.12186793393342182\n", + "0.20190726264968384\n", + "0.3509429787253682\n", + "0.32541594919029554\n", + "0.08528650803056174\n", + "0.13763564355567962\n", + "0.08012526888079799\n", + "0.13253482205965422\n", + "0.19291412892579957\n", + "0.0559227796093987\n", + "0.06537129352056005\n", + "0.17886043510849625\n", + "0.1560246615350091\n", + "0.2222381669405133\n", + "0.215978795458972\n", + "0.11375716423000684\n", + "0.47815794583899096\n", + "0.11705687793958357\n", + "0.20353171323770963\n", + "0.07199777812843675\n", + "0.2287430673356061\n", + "0.08970158475257362\n", + "0.1299459584882021\n", + "0.1418574531686212\n", + "0.05665781864690379\n", + "0.18153708419971948\n", + "0.11706498897176869\n", + "0.17650933099444802\n", + "0.12781678968324506\n", + "0.07278866431745934\n", + "0.14995104442276785\n", + "0.160340673316442\n", + "0.25237900246603945\n", + "0.1960886414092957\n", + "0.14236544878279636\n", + "0.2003490583692743\n", + "0.3045762606239231\n", + "0.16073430871816632\n", + "0.13546511927557014\n", + "0.06190897430275994\n", + "0.865601062740658\n", + "0.6000519431900272\n", + "0.04217252120082903\n", + "0.1837464099483956\n", + "0.06023358098683702\n", + "0.16577538673498207\n", + "0.11188110598541207\n", + "0.04411624849247633\n", + "0.10885513483161179\n", + "0.18467276773600627\n", + "0.22355897382220377\n", + "0.1614960501321371\n", + "0.16355348849430396\n", + "0.10766308351332741\n", + "0.06849896127427424\n", + "0.30298450952184314\n", + "0.2458981678580163\n", + "0.15878019711048974\n", + "0.10621809779222031\n", + "0.20812988892151668\n", + "0.13913284450015567\n", + "0.1059005850765521\n", + "0.19336832222340633\n", + "0.1780797067322212\n", + "0.17854841379986214\n", + "0.1549340098542321\n", + "0.07284450142444486\n", + "0.27067498991434086\n", + "0.17189670242975028\n", + "0.09025956606433765\n", + "0.22508765100242345\n", + "0.08501979948774761\n", + "0.33714423636769963\n", + "0.33912910670315727\n", + "0.07161758696695872\n", + "0.07397189009776113\n", + "0.2260506828509647\n", + "0.08596565381251449\n", + "0.11628872507037022\n", + "0.07923417407885362\n", + "0.1841768702963187\n", + "0.27309866030201246\n", + "0.15519343808288816\n", + "0.1378396188120753\n", + "0.3958904645155883\n", + "0.1425253901917127\n", + "0.1921332568665465\n", + "0.04358141004418022\n", + "0.1329974204442796\n", + "0.30840405901616524\n", + "0.953321613554908\n", + "0.14489834230625334\n", + "0.09030703478578586\n", + "0.059465722039105676\n", + "0.07369610499270658\n", + "0.1527603083272205\n", + "0.40428619318653336\n", + "0.31331893902990954\n", + "0.06214448621044182\n", + "0.3166158683296025\n", + "0.5052404236525616\n", + "0.11340694909924369\n", + "0.1939299313079656\n", + "0.30812155084322324\n", + "0.15172123473841473\n", + "1.70070489208774\n", + "0.13102290898840585\n", + "0.16100877651779275\n", + "0.09095015883539534\n", + "0.12373311275114751\n", + "0.21451163425612924\n", + "0.23335534212726763\n", + "0.18733837862040117\n", + "0.21764590799013261\n", + "0.3531965029687948\n", + "0.10905239942680041\n", + "0.07906875204816262\n", + "0.2073348030270635\n", + "0.2933608563236027\n", + "0.39584376945346217\n", + "0.3606032316027923\n", + "0.31602967983572644\n", + "0.09405675552353102\n", + "0.07386852638479757\n", + "0.1738667215974467\n", + "0.05932535787582948\n", + "0.08102415017561436\n", + "0.05922393666864264\n", + "0.08892297587722896\n", + "0.07692790600395483\n", + "0.06502131934661161\n", + "0.13208653890498226\n", + "0.05242883914368666\n", + "0.11191078091881561\n", + "0.061457554216861256\n", + "0.10250425872357652\n", + "0.07651174688619893\n", + "0.12481673918745015\n", + "0.061145898296180126\n", + "0.18707773893502933\n", + "0.13297378462130957\n", + "0.04058209113116371\n", + "0.09172646683956784\n", + "0.07106638421982173\n", + "0.07716383750507226\n", + "0.031457809707597616\n", + "0.02514709197394742\n", + "0.06468792356907108\n", + "0.05954297821263373\n", + "0.04671779947638809\n", + "0.02917805544378862\n", + "0.05914908750812566\n", + "0.08160102592060212\n", + "0.07635133906221078\n", + "0.0500481772403784\n", + "0.08908614782954417\n", + "0.10138001931068195\n", + "0.03176938892045923\n", + "0.027324265513848974\n", + "0.0557026539869544\n", + "0.11133928047566223\n", + "0.05295367321656632\n", + "0.14371848704473605\n", + "0.03534567681078277\n", + "0.036947040854912155\n", + "0.08677824627598008\n", + "0.13135153900091873\n", + "0.2632769510077481\n", + "0.1386593807216776\n", + "0.12397580823777024\n", + "0.07834275862351467\n", + "0.056242065761886964\n", + "0.08929602964500961\n", + "0.07406492412188777\n", + "0.10239146509167323\n", + "0.13111809128941898\n", + "0.09905079268814086\n", + "0.09361966812832985\n", + "0.13316975534732206\n", + "0.1429883929334547\n", + "0.11799012920711918\n", + "0.1364350870172269\n", + "0.1373462500807835\n", + "0.18528852746346577\n", + "0.09277607566251678\n", + "0.292468521032657\n", + "0.18365151014119657\n", + "0.22239314145102418\n", + "0.22583409253490344\n", + "0.16913946689009668\n", + "0.13989842830514998\n", + "0.1724677598910885\n", + "0.2416795620694873\n", + "0.1457513190437113\n", + "0.14270057853308427\n", + "0.1106358593635556\n", + "0.1112700945593258\n", + "0.18438576731780357\n", + "0.13838007652340148\n", + "0.14763905634389926\n", + "0.22012734102029255\n", + "0.14549211576313315\n", + "0.11996097124140248\n", + "0.15517824042441733\n", + "0.19653387574107706\n", + "0.14567037703663033\n", + "0.20295090227156848\n", + "0.19229872601627704\n", + "0.2240298195476465\n", + "0.1693718666882403\n", + "0.1420339055580221\n", + "0.17094045355982157\n", + "0.29806433806301974\n", + "0.3403347355125847\n", + "0.2900456588128333\n" + ] + } + ], + "source": [ + "for index in mse_result:\n", + " print(mse_result[index]['mse1'])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0\n", + "0 0.098891\n", + "1 0.094329\n", + "2 0.278150\n", + "3 0.113154\n", + "4 0.099365\n", + ".. ...\n", + "220 0.142034\n", + "221 0.170940\n", + "222 0.277209\n", + "223 0.326478\n", + "224 0.239974\n", + "\n", + "[225 rows x 1 columns]\n" + ] + } + ], + "source": [ + "mse_min = pd.DataFrame()\n", + "MSE_min = list()\n", + "for index in mse_result:\n", + " v = mse_result[index][minMSE[index]]\n", + " MSE_min.append(v)\n", + "# print(v)\n", + "mse_min = pd.DataFrame(MSE_min)\n", + "print(mse_min)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0GCP2MET_models 0v_GCP2MET_models\n", + "0 0.105660 0.098891\n", + "1 0.113761 0.094329\n", + "2 0.211453 0.278150\n", + "3 0.124643 0.113154\n", + "4 0.102915 0.099365\n", + ".. ... ...\n", + "220 0.157474 0.142034\n", + "221 0.174273 0.170940\n", + "222 0.269746 0.277209\n", + "223 0.353366 0.326478\n", + "224 0.266817 0.239974\n", + "\n", + "[225 rows x 2 columns]\n" + ] + } + ], + "source": [ + "raw = mse1.join(mse_min, lsuffix='GCP2MET_models', rsuffix='v_GCP2MET_models')\n", + "print(raw)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression()]\n" + ] + } + ], + "source": [ + "GCP2MET_models\n", + "v_GCP2MET_models\n", + "new = list()\n", + "for index, row in raw.iterrows():\n", + " if row['0GCP2MET_models'] < row['0v_GCP2MET_models']:\n", + " \n", + " new.append(GCP2MET_models[index])\n", + " else:\n", + " new.append(v_GCP2MET_models[index])\n", + " \n", + " \n", + "print(new)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# mse_result,p_result,pearson_result = evaluate_models(new, Xtest, Ytest)\n", + "# print(mse_result)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/src/python/EDA/CCLE metabolomics dataset.xlsx b/src/python/EDA/CCLE metabolomics dataset.xlsx new file mode 100644 index 0000000..683bf6d Binary files /dev/null and b/src/python/EDA/CCLE metabolomics dataset.xlsx differ diff --git a/src/python/EDA/GCP_proteomics_remapped.csv b/src/python/EDA/GCP_proteomics_remapped.csv new file mode 100644 index 0000000..81b280c --- /dev/null +++ b/src/python/EDA/GCP_proteomics_remapped.csv @@ -0,0 +1,867 @@ +Cell Line,H3K4me0,H3K4me1,H3K4me2,H3K4ac1,H3K9me0K14ac0,H3K9me1K14ac0,H3K9me2K14ac0,H3K9me3K14ac0,H3K9ac1K14ac0,H3K9me0K14ac1,H3K9me1K14ac1,H3K9me2K14ac1,H3K9me3K14ac1,H3K9ac1K14ac1,H3K18ac0K23ac0,H3K18ac1K23ac0,H3K18ac0K23ac1,H3K18ac1K23ac1,H3K18ac0K23ub1,H3K27me0K36me0,H3K27me0K36me1,H3K27me0K36me2,H3K27me0K36me3,H3K27me1K36me0,H3K27me1K36me1,H3K27me1K36me2,H3K27me1K36me3,H3K27me2K36me0,H3K27me2K36me1,H3K27me2K36me2,H3K27me3K36me0,H3K27me3K36me1,H3K27ac1K36me0,H3K27ac1K36me1,H3K27ac1K36me2,H3K27ac1K36me3,H3.3K27me0K36me0,H3K56me0,H3K56me1,H3K79me0,H3K79me1,H3K79me2 +DMS53,0.1160196,-0.153144208,-0.34860651,-1.41712763,-1.281176501,-0.719706709,-0.208079802,-0.033416103,-0.96782088,-1.150057978,-0.694684266,0.599286021,1.125165552,-0.611418105,-0.384637913,0.249617843,-0.088406829,-0.511181074,-0.279846941,-1.453154586,0.287488563,0.646869032,-0.145690493,-1.880791881,0.422464947,0.331515352,-0.051698539,-1.590647709,-0.687768495,0.838781042,-0.956909638,-1.419156743,0.39617762,1.261962889,0.492776032,-0.211348976,-0.554972949,-0.22291187,-0.310910451,-0.272654654,0.271469181,0.46964655 +SW1116,-0.058624326,0.219591976,0.110946033,-0.170281885,0.33462959,0.497303478,0.307907259,-0.466685703,0.062517765,-0.517698453,-0.565489483,-0.445957305,-0.89726354,-0.274196526,0.145466848,-0.015737106,-0.000636813,-0.260064032,,-0.588527902,-1.391134163,-1.308719213,-1.103263937,-0.207402408,-0.692251406,-0.680535533,-0.456650877,0.385298696,0.411447024,-0.056638971,0.222129535,0.456334235,-1.198708707,-1.394996649,-1.123119446,-1.501910595,-0.180229341,-0.075172842,,0.051017782,0.099032394,0.169760564 +NCIH1694,0.480908807,0.298440467,0.073776921,0.413953387,-0.479542743,0.133279535,0.053278956,-0.220467463,-0.42716008,0.215503732,0.906119304,0.923124492,0.938962968,0.071732251,0.419934885,0.512121872,0.308431961,0.464105925,,-0.499895183,-0.056093253,0.106693859,-0.9205467,-0.849407908,0.255745193,0.39502136,-0.361501972,-0.417355649,-0.415226491,0.469914454,0.755684769,0.096899924,0.055683063,-0.659294218,0.114287514,-1.289012183,0.280395911,0.117563553,,0.18598369,0.191759968,-0.437560648 +P3HR1,-0.079957187,-0.617656074,-0.566702235,0.079931995,0.373140403,0.159681542,0.060946025,-0.181111998,0.208328161,0.182228706,0.082201682,-0.204057715,-0.590027226,0.165935815,-0.026958983,-0.249538262,0.532824308,0.028630002,0.960154137,1.421107145,0.341170252,-0.169290191,0.248911259,1.126911773,-0.207276878,-0.774751233,-0.129343492,1.18467524,-0.33101205,-1.543765106,0.467751885,-0.740518469,1.098303246,0.381883832,0.258281724,0.751323417,0.031193779,-0.199315524,0.037929332,0.003978434,-0.225147213,-0.06144507 +HUT78,-0.059965467,-0.063482668,-0.267979772,0.357421525,0.075651154,0.047829603,0.115242534,-0.498239051,-0.059567453,0.845077047,0.466630494,0.558869888,0.245954536,0.431598335,0.12695011,-0.331886928,0.437236084,0.140781573,,-0.00109451,0.13631594,0.381835228,0.104973102,-0.387625211,0.077846388,0.572835873,0.095180724,-0.219881913,0.098818102,0.096207796,0.943753918,0.391319708,-0.185237129,0.239420617,0.358072194,-0.176526852,-0.351188148,0.037021484,,0.045494934,-0.153683963,-0.106306037 +HOS,-0.241258805,-0.871103312,-0.382457339,-0.100697817,-0.212449205,-0.295410145,-0.313819995,-0.605896899,-0.588622668,-0.161428562,-0.100574882,-0.094737805,-0.250941193,-0.556886225,-0.487389509,-0.596367699,-0.355451252,-1.207914036,,-0.266918115,-0.678795482,-1.146236129,-1.059866617,-0.098534954,-0.953652666,-1.248081078,-0.323851201,0.580772947,-0.548917103,-0.932672239,0.652635497,0.166853408,-1.324244195,-1.765642023,-1.71714897,-1.974660198,-0.435360165,0.2312459,,-0.095360384,-0.532368252,-0.391364757 +HUNS1,0.000764619,0.19307549,-0.001264666,0.172924,0.157646569,0.01914459,-0.242568279,-0.629404591,-0.512414994,0.645289373,0.428714529,-0.189191409,-0.615870325,-0.449465808,-0.250884056,0.239400502,0.301175842,0.745306798,,0.159420944,-0.060007046,-0.172347442,-0.27527166,0.205924595,-0.139358858,-0.137264841,0.014357531,0.459017098,-0.099897758,-0.230573515,0.092509532,-0.058189189,0.911651377,0.305551629,0.191608714,0.299686135,-0.105316635,-0.248224458,,0.15152941,0.014668422,-0.132116226 +AML193,0.127253798,-0.101106619,0.197892882,-1.028948063,0.085119103,0.136274871,0.406177639,-0.14005479,-0.586289228,-0.012945301,-0.030925092,0.005416721,-0.157620746,-0.237153683,0.113158074,-0.352393521,-0.082695583,-0.523776341,1.548554752,1.529368635,1.375550821,0.839078211,0.806688714,1.470906424,0.507878022,0.200933877,0.044937753,0.899559389,-0.524810257,-1.256167732,-1.33834584,-1.925922181,0.783968754,0.73324068,0.531269448,0.441987066,0.869000915,0.087313629,0.140158428,-0.092945161,0.209983484,0.654700122 +RVH421,0.106098435,0.586015329,0.40797154,,0.331119194,0.215083832,0.284994109,-0.009726683,0.231658858,0.144449358,0.317468025,0.443739089,0.179135988,0.221206821,0.364669564,-0.066533121,-0.053303072,-0.309709871,3.302333669,-0.389392136,0.180105814,0.138069326,-0.309169087,-0.42985158,-0.065798895,0.541493453,0.438642658,-0.01309322,0.056809003,0.657643474,0.520708716,0.731014286,0.118950828,0.27240891,0.037343517,-0.168794209,-0.009649966,0.149910695,0.1793497,0.172654125,0.376767677,0.414125143 +NCIH1184,-0.230316079,-0.286837353,-0.530605223,0.187882723,-0.211250053,0.126076994,0.354721009,-0.279559422,-0.328033221,-0.07676735,0.625148538,0.303761198,0.326490429,-0.390268078,-0.1528503,-0.350307839,0.557162074,0.039845772,,-0.735931433,0.343027454,-0.342026212,-0.421292136,-0.825284767,0.492412311,0.178041759,-0.069453468,-0.252146145,0.296431382,0.370583348,-0.145857396,0.096912538,0.341511265,0.133471798,-0.618257078,-1.027827636,-0.383809868,-0.038307656,,-0.149660109,-0.391326605,-1.398210221 +HCC2157,-0.206078025,-0.552738412,-0.371802223,-0.014962529,0.339042777,0.285126781,-0.196569427,0.297008589,-0.487850055,-0.275697198,-0.533705835,-0.462720703,-0.037683606,-0.696987167,0.203270348,-0.559956607,-0.757669608,-0.659905666,0.64265808,-1.013152464,0.11489862,-0.730018877,-0.885535123,-1.119390268,0.51859176,0.981895764,0.060840256,-2.1559968,0.026777125,0.783154783,-2.959509087,-1.000264043,-0.964735745,-0.617442665,-1.303381035,-1.655696915,0.647096461,-0.150500923,0.169238349,0.102802528,0.343326636,0.929024858 +TC71,0.067038251,0.021498349,-0.161586627,-3.473744722,-0.916519029,-1.44786247,-0.146745085,-0.049005182,0.034623428,0.057239166,0.502783102,0.750550342,0.654791803,1.547162495,-0.231381301,0.586531479,0.544885987,1.075073845,-6.682473838,0.259487411,0.001765083,0.244445751,0.115529304,0.273966114,0.28804402,0.602810201,-0.449467404,0.076627955,-0.209369398,-0.07647516,-0.578512931,-0.517742978,-0.289603482,-0.093984017,0.584510974,-0.271376307,-0.932321701,-0.05319743,-10.0244384,-0.261478587,-0.843613063,-3.517417418 +NCIH2227,0.047333622,0.49801934,0.600296584,0.153607828,0.057897466,-0.259282483,0.263956533,1.097581557,0.204822443,-0.36854677,-0.742090191,-0.357930389,0.334479331,-0.201230673,0.119625477,0.335112563,-0.079369148,0.462054497,,0.719587874,0.900367042,0.60783944,0.589251373,0.709870865,0.262850272,0.765008469,0.135555631,0.019604711,-0.587304323,-0.014329022,-0.130413347,-0.857023232,0.082341336,0.879396956,1.105949252,1.021622663,0.789208124,0.073048936,,0.230717187,0.083038419,-0.372255802 +SNU449,0.146282836,0.135028666,0.207874341,0.302431785,-0.554820629,-0.133560459,0.634939664,0.948814999,-0.382155477,-0.312414957,-0.301034002,0.496727042,0.716096907,-0.324323271,0.154912141,-0.106237363,0.343865448,0.08426633,,-0.050781749,-0.210176968,0.086779765,-0.157704596,-0.14766104,-0.275193521,0.099920456,0.087490373,0.41267764,-0.013285296,-0.143192679,1.053969186,0.591720114,-0.064235153,-0.292513211,0.226690368,-0.010980276,0.145131088,0.161485074,,0.048608839,0.534299558,1.063612955 +NCIH28,-0.023125373,0.106824759,-0.19631227,0.299748018,-0.696086909,-0.247490693,-0.090535736,-0.035269927,-0.041009374,0.424266426,0.605369463,0.535059089,0.506354674,0.877185505,-0.236039707,0.388035709,0.413477417,1.057429281,,-0.179339634,0.405965551,0.543300031,0.418985693,-0.953197645,0.208590202,-0.377629192,0.284821371,-0.483500062,0.015491897,0.33427766,-0.304235636,0.507085762,0.52251504,1.077468359,0.708229967,0.868660818,-0.875700684,-0.05663974,,-0.111589802,-0.110250357,0.112367844 +OV56,-0.122174538,-0.024343368,0.202083701,-1.029043767,0.221817037,0.005453978,0.207774491,0.242657898,0.978543253,-0.001189304,-0.145769794,-0.541663404,-0.206322891,0.543785067,-0.044861309,0.061176388,-0.200918264,0.174339433,-0.026273322,-0.088783464,-0.176206949,-0.595187476,-0.012958135,0.156267518,-0.006270505,0.649849379,0.249654689,0.124417181,-0.029014417,0.283450933,-0.352035159,-0.108625903,0.529532946,0.292049153,0.670822561,-0.131333238,0.364411485,-0.174332299,0.260027182,0.058612923,-0.058041618,0.131208676 +JHOS4,0.148802782,0.180520586,0.095899821,0.008534692,0.448940388,0.462632038,-0.048603357,0.063261362,0.092363828,0.0031358,-0.201044533,-0.562754038,-0.460190483,-0.11969863,0.021282551,-0.400238868,0.023354706,-0.482766405,-0.419390589,7.41E-05,0.71847851,0.441461266,-0.174941227,0.020531545,0.8770199,0.706635323,0.238557366,-0.346988386,0.403399195,0.304659776,-1.092168706,-0.56018517,0.191419282,0.112086788,0.025739157,-0.120145809,0.247086267,0.072729457,0.390911221,-0.050414469,-0.947436723,-2.860202891 +KYSE450,0.105869517,-1.081520175,-0.785516634,,-0.719088924,0.036815508,0.403204509,0.119202087,-0.635946938,-0.807484416,0.086952915,0.70874559,0.528425186,-0.644744941,0.038253716,-0.335211667,-0.219324911,-0.983659066,-1.062961897,-1.766804683,-1.505052606,-1.064951603,0.125395145,-1.183036061,-0.741318978,-0.525481833,0.610321128,-0.181681972,0.408492703,0.626135619,0.225614708,0.818417816,-1.866855543,-1.824134531,-1.565248755,-0.740639477,-1.133063731,0.121165496,-0.071349351,0.080833459,0.336347188,0.74391122 +RMUGS,0.253318936,0.669642039,0.083979239,0.492799565,0.650416327,0.015822741,-0.507752814,0.381000754,1.089686883,0.714390735,0.469861524,-0.52306177,-0.24344427,1.161329006,0.083929078,0.745034012,0.218106731,0.400578517,,1.032597925,0.839821193,-0.177793915,0.516294591,0.55296931,0.30586808,-0.612192805,-0.504581127,-0.251365469,0.314262258,0.493330071,-0.763762418,-0.064656202,1.063137587,1.154115494,1.003447913,-1.200632505,0.713346208,0.136329363,0.095696271,0.051998938,-0.17029303,-0.43652464 +KLE,-0.73295731,0.351842735,0.256152425,-1.483163386,-0.216648574,-0.26031769,-0.391316308,0.946372444,-0.621244378,-0.979175341,-1.209041148,-1.084580782,-0.008920044,-1.201222761,-0.028457318,-0.77444707,-0.515071116,-1.102873921,1.115802884,-0.413240427,-0.137499772,0.143638695,0.594125278,-0.349558081,-0.192523475,-0.570962304,0.18474246,-0.106903133,0.328008048,0.282353488,-0.439127525,-0.58042273,-1.771019783,-1.304536112,-1.096218967,0.061821858,0.173966349,0.204456439,-0.307812905,-0.078139148,-0.042865639,-0.359874437 +LN229,-0.086895094,0.224612427,0.469778823,,-0.05785702,-0.105783381,0.131899988,0.001151244,0.951259081,0.757197243,0.133071258,0.440542809,0.484759961,0.972064003,0.095047776,0.360977047,0.003307128,0.225677134,0.071930594,0.916427278,1.562312235,1.844039779,1.164083169,0.282734133,0.563753303,1.191688678,0.127294899,-0.06453132,-0.358432709,-0.576482429,-0.698083808,-1.076892066,0.956553036,0.978409766,1.002238023,0.903297079,1.117624181,0.232949022,0.482188258,-0.022692861,0.191288354,0.075936189 +P31FUJ,-0.013862575,0.071725649,0.151650185,0.46425292,-0.320232979,-0.398157806,-0.007414368,-0.324262085,0.180703116,0.479683753,0.45824815,0.558166355,0.798889862,1.026087291,-0.23157063,-0.334939958,0.738939848,0.365133821,0.976157778,2.623864719,2.058671304,1.929852759,1.350683387,1.729800023,0.671175012,-0.402458451,-1.162849743,-0.067000601,-1.384448607,-2.591920012,-2.834326768,-3.642051701,1.667386633,1.693025878,1.687818371,1.072947591,0.619401939,0.125549854,0.290206995,0.151505033,-0.049540603,-0.708092395 +RKN,-0.294483534,-0.415074292,-0.312532695,-0.513286991,-0.260070941,-0.233288071,-0.468191958,-0.691999348,-0.145007819,-0.046229604,-0.382360691,-0.133651824,-0.586865231,-0.112160675,-0.035075189,-0.61877819,-0.848817364,-0.980891051,,-0.706129257,-1.180614159,-0.399835852,0.00876477,-0.14897129,-0.291160505,-0.071445966,0.115656244,-0.026958364,0.019502375,-0.16121637,-0.590029052,-0.401351192,-2.28448366,-1.574460338,-0.772863618,-0.545275216,-0.788057514,-0.264966223,,-0.427169554,-0.167201289,0.37351434 +NH6,0.458599544,0.615394246,0.087076225,0.865787611,-0.308079279,0.42069994,0.000742748,-0.530562219,1.074674551,0.480208267,1.49004024,0.721616337,0.919285007,1.058305483,0.106960785,0.900602012,0.707735771,1.823861174,,-0.151659758,0.861128518,1.066396555,0.89643924,-0.66038483,0.711035552,1.011662815,0.414827124,-0.35644459,0.147803042,1.023738728,0.241831108,-0.232271452,0.935809544,1.627342337,1.607385088,1.163519562,0.731126906,0.276692325,,0.272789994,0.39933278,0.236566612 +SF126,0.186392587,0.265171639,0.483745316,0.038763836,0.390226936,0.089386492,-0.062455584,-0.09800442,0.429305795,0.891651052,0.24235499,-0.268201217,-0.963852172,0.816128931,-0.022281112,0.616388422,0.110011653,0.841470289,,1.039911147,0.428711594,0.640168622,0.49076092,0.770983254,-0.01937683,0.018689166,0.195563242,0.17660947,-0.186198479,-0.487545345,0.367321774,-0.153754038,1.119046889,1.473122861,1.388287263,0.927222631,-0.171693914,-0.014695671,,0.132679522,-0.315678578,-0.74656623 +RERFLCAD2,-0.316810757,0.034428599,-0.478413303,-0.508833546,0.376827063,0.117083393,0.558105236,0.70046059,0.71481835,0.120850782,0.01648801,-0.412989393,-0.591682042,0.24877642,0.322293185,-0.190989477,0.339488459,0.221510977,-0.962800248,1.167737642,0.445551095,0.151411468,0.301205974,0.644678851,0.123918516,-0.014446857,0.579094218,0.267024424,0.191061903,0.72405293,-0.435495054,-0.333294312,0.031049895,0.114206561,0.020410667,0.444386076,1.124057856,0.057294691,0.075243761,0.032250624,0.176699926,-0.010793584 +OUMS23,0.068278558,-0.203509707,-0.756570056,,0.915539241,-0.235936419,-1.05996828,-0.103407276,0.72874533,0.810865776,-0.62863051,-1.534489575,-1.271001245,0.347072395,0.414848444,0.183061825,0.188333833,0.696753844,-0.629602151,0.9366308,0.797697246,-0.013039158,0.671776067,0.282473192,0.310313435,0.557325548,0.853069638,-0.35550845,-0.0844534,-1.053579654,-0.222117241,-0.289125588,0.405198938,1.252635539,0.105123132,0.147467377,0.684252297,-0.217731213,0.101068328,0.105434218,-0.517050369,-1.616150421 +SNGM,0.322977806,0.048230957,-0.894601048,0.587717604,-0.100491626,0.451489523,-0.044618953,-0.822000078,1.346581648,0.819764014,0.998474803,0.653083062,0.029283212,1.525896916,0.113413534,0.093796413,0.486261318,-0.160736567,,-0.970391917,-0.688869876,-0.630059824,0.182688625,-0.542202873,0.157145266,-0.335111845,0.729966562,-0.051239549,0.780175406,0.463219641,-0.157476723,0.510329272,-1.254553739,-0.371208967,0.2424021,-0.877790862,-0.592270764,0.146432448,0.098973647,0.142463589,0.264618356,0.518427831 +OUMS27,0.003644777,-0.171661676,-0.066685245,-0.281344158,0.004628844,0.184314389,-0.100523581,-0.029719514,0.316197872,-0.060046968,0.212823536,-0.25499388,0.064807235,0.187272474,-0.123384122,-0.398665675,-0.884901105,-0.793484977,,-0.829985075,-1.045054783,-0.676517236,-0.299906781,-0.69573818,-0.90437253,-0.452280142,0.280915247,-0.197570348,-0.217569633,-0.293994606,0.41822723,0.331622567,-1.536509062,-1.56652586,-0.9548895,-0.166504238,-0.027573829,-0.167221845,,-0.09088638,-0.104187843,-0.012513641 +NCIH2347,0.570851708,0.098057222,0.238379106,0.069526883,0.223499495,0.185092354,0.354206409,0.541408667,-0.239193685,0.026750776,-0.137059556,-0.409578388,0.42285385,-0.293896921,0.314153395,-0.606838374,0.028357004,-0.691064508,,0.255505034,0.046342734,-0.147794557,0.139925242,0.147688483,0.086620546,0.014116416,0.593904376,0.104145019,0.06222398,-0.228910466,0.285664984,0.351017422,-0.451564246,-0.864733798,-0.903617555,-0.263097417,-0.066378554,0.237799416,,0.203018956,-0.132980175,-0.343477484 +SW1990,0.635107394,0.41473886,0.50157492,1.207241076,0.514756209,0.610219399,0.601087944,0.377004019,-0.009133678,0.330859013,0.776424014,0.74397049,0.509300634,0.16044725,0.671480748,0.447381278,0.355356436,0.120764035,1.986987683,0.158832623,-0.019987072,-0.05057065,-0.053899696,0.379315391,0.178767523,0.130621098,-0.004569062,0.615493423,0.62551094,0.498519176,0.566659267,1.234181316,-0.405426548,0.196618851,-0.093523114,-0.016472436,1.934379016,0.44618371,0.554180408,0.448052458,0.57425513,0.832960909 +HS611T,-0.045066711,-0.203393195,0.021240062,-0.067753726,0.371860157,0.108023573,0.047518274,-0.093733939,-0.548695085,0.10340054,-0.185692951,-0.255340459,-0.395025599,-0.764124402,0.169727957,-0.707940362,-0.063455443,-1.035060413,1.061653998,0.40667517,0.077189041,0.005204287,0.288398317,0.385770812,-0.666704483,-0.560434219,-0.180968083,0.621763107,-0.571430112,-0.807933732,0.917915788,0.439636356,-0.483913844,-0.923990601,-0.447414311,-0.193688651,-0.488530349,0.005094044,0.264927586,0.011611758,0.051078826,0.396302694 +TOLEDO,-1.29761541,-0.782600189,-0.16976663,0.178119403,-0.134189618,-0.302582008,0.275287276,0.08255521,-0.65065647,-0.326119032,-0.189199156,0.432545039,0.131063484,-0.931498975,0.086240597,-0.465131109,0.34214302,-0.693883539,3.07761811,0.441666544,-0.091794942,0.638026458,-0.489356101,0.821432629,0.103611626,-0.361297285,-0.526628193,1.016551812,0.234789737,-0.534314986,-0.210185967,-0.269194665,0.437124826,-0.17761686,-1.030552346,-0.891253666,0.210927076,0.011288324,0.190793633,0.09459348,-1.152772076,-2.179959426 +RERFGC1B,0.095582854,0.352610706,-0.325297831,-0.039114332,-0.300867515,0.06421974,0.003481333,0.413918875,-0.817753713,-0.457045543,-0.29507464,-0.132724351,0.524188026,-0.763355162,0.246562245,-0.635650384,-0.028002273,-0.461414505,,-0.776769117,0.325245753,0.247456625,0.079577394,-0.516612372,0.474051163,0.616990349,0.279767938,-0.690646288,0.220609202,0.556659362,-0.326130113,0.001107918,0.084845805,-0.943800689,-0.523786015,-0.596599998,0.371874531,-0.063377849,,0.020311196,-0.000796866,-0.355808628 +HT1080,0.268670029,0.368067951,0.687021419,0.138021165,0.283251344,-0.053558121,-0.053361407,0.129435268,0.183072836,0.384948406,0.256354889,0.231855978,0.079611991,0.41005162,0.039077047,0.359399951,0.372598881,0.649888817,-3.344053525,1.070399835,1.113569549,0.625134296,0.483241778,0.088600125,0.670015307,0.982347782,1.294061044,-0.150592262,-0.044209167,0.003714369,-0.53236153,-0.391823656,0.791364982,1.760548516,1.418613895,1.408807968,-0.100318781,-0.026871457,-0.179091791,-0.050577559,0.020663232,0.026894679 +NCIH2087,0.138068435,-0.174150106,0.048138211,-0.085900675,0.272772831,0.121360037,0.200612741,0.381227597,0.111209367,0.587136144,-0.162996906,-0.371234154,-0.430613068,0.14584305,0.019589629,-0.09997825,0.014828148,0.026607106,,0.666590114,0.028041275,-0.340324896,-0.094848216,0.282217005,-0.442655882,0.066293375,-0.271161102,-0.019631681,-0.000587324,-0.042760714,0.256384271,-0.145037409,0.162009873,0.253522853,0.358342495,0.107940089,0.383662787,-0.037476502,,0.041109521,-0.26080903,-0.302971942 +COV318,-0.420555703,-0.513053356,-0.231055145,-0.202141006,0,-0.105501864,-0.208830388,-0.255280394,0.183263115,-0.668141895,-0.61011333,-0.677875025,-0.926652673,-0.348993543,-0.419265341,-0.510721408,-0.308787019,-0.340543139,,0.324004456,-0.117896719,-0.103347321,-0.332663424,-0.3062985,-0.731913726,0.088557571,-0.195970034,-0.198028663,-0.475269723,-0.904256418,0.201601623,-0.674977364,-0.022679545,-0.188716141,-0.039479082,-0.270217968,0.109991214,-0.271943012,-0.286699549,-0.18214664,-0.165442504,-0.284913108 +NCIH2085,-0.072608626,-0.139224668,-0.067663594,-0.215553416,0.155892442,0.170126324,0.080518306,-0.244128241,0.519497208,-0.339319977,-0.274929063,-0.648667116,-0.241645339,-0.263251368,-0.002644623,-0.927891857,0.106959106,-0.806641813,,-0.555237839,-1.108147703,-0.917998657,-0.499791049,-0.1498152,-0.604773544,-0.694961845,0.304979715,0.204831025,0.148766723,-0.436796833,1.037346964,0.467373732,-0.881453865,-1.670795997,-1.372736828,-0.81175588,0.332041842,0.034896737,,-0.025446051,-0.256678914,-0.764813906 +NCIH510,-0.492085748,-0.430196142,-0.776972439,-0.286361689,0.298643817,-0.261081574,-0.439622182,-1.202854844,-0.278237209,-0.042815932,0.002191433,-0.687679194,-0.965068804,-0.612188987,-0.309179014,-0.901178906,-0.242019602,-0.793515085,,-0.624087383,0.092916317,0.166634134,-1.304908762,-0.831897646,0.291154058,0.609094165,-0.796096346,-1.22571866,-0.34335948,0.335665969,-0.752282062,-1.257188764,-0.437378957,-0.611385862,-0.79945486,-1.698014036,1.136582195,-0.481190883,,-0.34286481,-0.348750758,-0.528153411 +CAKI1,-0.17207214,0.00652235,-0.14126254,-0.796138282,-0.321028328,-0.045299918,0.184238096,0.427246147,-0.386337687,-1.000427125,-0.822609316,-0.691028128,-0.388472689,-0.502690701,0.057558737,-0.194786382,-0.804300308,-0.630527163,-3.065345954,-1.05948249,-0.496184346,-0.369172657,-0.808968871,-0.672976607,-0.33897718,1.205322462,0.687948532,-0.631937239,-0.15178047,0.712714167,-1.269012956,-0.724053097,-2.149727039,-1.150155121,-0.094024483,-0.505447654,-0.404892349,-0.099165847,-0.343498246,-0.156074622,-0.036527308,-0.279633095 +NCIH716,0.059534747,-0.107522773,0.330280617,-5.644003637,-0.025008753,-0.510207532,0.35058673,0.608466859,-0.29225933,-0.455420537,-0.503141193,0.126143267,0.757854417,-0.114963577,0.097669024,0.443363767,-0.223917671,0.530358482,1.046919707,0.407921079,-0.001765083,-0.028149537,-0.093869349,0.593751874,-0.042197139,0.00075567,0.242684779,0.310895963,0.00177545,-0.366803788,0.196226475,-0.09433687,0.255716052,1.044704321,0.32092376,0.44987996,0.613465808,0.080574762,2.111756048,-0.075517023,0.316114716,0.786379553 +NCIH2066,0.02617638,-0.439643568,-0.6813392,-0.324876591,-0.637186009,-0.103260166,-0.343931595,-0.548754163,-0.152265924,-0.297330585,-0.104429976,0.105059599,-0.274809383,-0.001790282,-0.103105699,-0.482058335,-0.428767684,-0.571484154,,0.622279873,0.994323481,1.406111143,-0.024049652,-0.065574365,0.009119457,0.256368826,-0.797288224,-1.018526753,-0.850338967,-0.81937108,-0.526862972,-1.147127066,-0.372089294,0.387266634,0.526163552,-0.418630396,-0.157484373,-0.378582612,,-0.520539089,-0.310998709,-0.574124731 +NCIH1341,0.116025058,0.414738393,0.043524756,0.144643518,-0.149644435,-0.284400065,0.027187226,-0.372732831,0.753489752,0.34117609,0.382104101,0.53844138,0.520857626,0.986831744,-0.029609875,0.306267797,0.358096758,0.323811743,,-1.42582446,-0.377726877,0.164951559,0.366173282,-0.9812031,-0.226726746,0.437320062,0.173216669,0.102375305,-0.15919623,-0.155237309,0.955701886,-0.045086518,-0.513972772,-0.80208329,0.347190309,0.300641346,-0.950862945,-0.072630899,,-0.008803941,0.174913785,0.003684952 +NCIH2029,0.170618886,0.172883489,-0.141790699,,-0.489288473,0.18915867,0.675587096,0.225292686,0.666319044,-0.586048427,-0.223997229,0.091992568,-0.276058335,0.384372502,0.303792189,-0.016110806,0.320482563,0.261335015,-1.878812159,-0.638737153,0.161184509,-0.64053001,-0.281972197,-0.723214064,0.400918948,1.019975809,0.822474952,-0.43180746,0.49602518,0.056807631,-0.078005488,-0.146860228,-1.050499183,-0.471043249,-0.463656776,-1.50158032,-0.671770359,0.090936824,0.006636834,-0.157594431,0.711364585,1.076676767 +SW480,0.123006084,-0.26704752,-0.38394171,-0.807173765,-0.02069899,-0.33767146,0.142935146,0.585620656,0.111079732,0.050106138,-0.582027814,-0.173449034,0.348767019,-0.001547212,0.259054585,-0.218765974,-0.291940972,-0.52594404,1.117577505,0.317328046,-1.162223662,-1.303448344,-0.637101376,-0.108921602,-0.668200445,-0.621019037,-0.082721113,0.590818439,0.128774371,-0.174119593,0.420462946,0.849638588,-1.423722264,-0.064584418,-1.337901893,-0.642379363,0.117918643,-0.025347814,-0.116598936,0.0510925,-0.18804518,-0.925869718 +HS746T,0.053573323,-1.087223605,-0.355932346,0.234524361,0.17382242,-0.207293233,-0.583417094,0.507673897,-0.280110048,0.407743136,0.037470855,0.14248721,0.141734501,-0.522597391,0.060661006,0.131860133,-0.004593607,-0.258545056,,0.860048514,0.130893418,0.022090659,0.209392834,0.654206416,-0.416392674,-0.957558623,-0.551364925,0.570924069,-0.46693416,-1.493824794,0.224911812,-0.334489717,1.287620349,0,-0.236103286,-0.283468022,0.194704149,0.170396183,,-0.063960762,-0.403185081,-0.332998648 +LU65,0.343285266,-0.875878445,-0.434504725,0.292478744,0.497356287,0.395944412,0.071910585,0.23168109,0.434266188,0.570562169,0.163540056,0.024376026,-0.135070892,0.436805463,0.184746591,0.304243501,0.172222207,0.168679951,,0.093693909,-0.28637613,-1.148852212,-1.091538412,0.655223385,-0.023366953,-0.747155027,-0.487553741,0.756905274,0.160190154,-0.259601448,0.284230159,0.121577366,0.508969954,-0.331140951,-0.540871287,-0.874367066,-0.359531801,0.241436273,,0.288735259,-0.248604865,-0.905551656 +SNUC2A,0.26849093,-1.283800961,-0.477876631,-3.443024692,-0.235185229,0.12887005,0.350403342,0.187549491,-0.364006592,0.583170258,0.425077026,0.584118787,0.674031541,-0.074454804,0.198802942,0.923216787,0.039055549,0.779976815,1.692368609,0.063847018,0.103158478,0.113309497,0.1375651,-0.304939517,0.264120306,0.062077404,0.105832439,-0.159597773,0.627847949,0.733724727,-0.531042386,0.757184239,1.231433464,0.975884332,0.388406683,0.618328994,0.803614201,0.134768678,0.40446017,-0.037190256,0.3654308,0.67350084 +HEC151,-0.001856927,-0.851177082,-0.31498467,-0.020467583,-0.11053053,-0.005943957,0.270168035,0.093298704,-0.576261679,-0.080730892,0.110517231,0.202454712,0.332410659,-0.417314734,-0.0771041,-0.230850985,0.261362675,-0.109529994,0.474268052,0.596306634,-0.103210847,-0.272799356,0.17196892,0.734965974,-0.409788719,-0.478091702,0.25501765,1.220896055,-0.700649526,-1.594574431,0.601577833,-0.898879794,1.243767658,0.047770657,-0.336026726,0.16010093,0.198985254,0.000806943,0.219106691,-0.083051734,-0.186509933,-0.111969702 +MSTO211H,-0.003644777,-0.454736623,0.139331054,-0.306272015,-0.167002805,-0.14853565,-0.245123876,0.169998809,-0.275036345,-0.164388068,-0.052342841,-0.144160744,-0.432827304,-0.241971814,-0.126197646,-0.396857587,0.028568965,-0.017980322,,1.173170474,0.605191393,0.546408634,0.534729292,0.633740623,0.064588369,-0.114603062,-0.222554905,-0.185668821,-0.287249148,-0.915144686,-0.642116511,-0.475673482,-0.507717407,-0.810681472,0.409725308,-0.136166447,-0.522121123,-0.188328735,,-0.133140629,-0.577694219,-1.10283317 +RAJI,0.051013453,-0.139080109,0.091453889,-0.054850418,0.396146253,-0.143401706,-0.028382962,0.115147816,-0.104744975,-0.541018852,-0.108737198,-0.112968902,-0.60458487,-0.468355729,0.179872068,-0.227953752,-0.578184395,-0.586995584,,-0.126015384,-0.63802468,-0.399651422,0.005109585,0.427848322,-0.680789215,-0.881918061,0.243230085,1.196665157,0.327416054,-0.796174083,0.628293851,0.055718196,0.521653471,-1.256703919,-0.999716929,-0.11808143,0.00802286,0.136469197,,0.352818642,0.019297591,0.456353336 +SKMEL1,0.042392395,0.246442761,-0.066629006,0.50690011,-0.004305356,-0.135222841,-0.490940377,-0.694529421,1.012413236,0.929624949,0.785499958,0.708503892,0.033247789,1.46847134,0.040831472,0.262218786,0.954487572,1.139226945,,-0.927449201,-1.077933716,-1.002266727,-1.087628817,-1.209784643,-0.583191727,-0.019289919,-0.017135798,-0.875923652,0.222029353,0.833338208,0.38610055,0.931357597,-0.737932282,-0.049092327,0.147305753,-0.388726559,-1.116197702,0.040949112,,-0.033606691,0.485184374,0.535047645 +SUPT1,-0.089839793,-1.332841108,-0.425511283,0.656432124,-0.239654766,-0.490586371,-0.438727611,-0.682900305,0.050614017,0.827303007,0.772905745,0.498920657,0.103122847,0.863129556,-0.270583075,0.24451823,0.124095692,0.416756426,-0.544603952,-0.277297433,-0.236274144,0.682984754,-0.667685534,-0.566884739,-0.03318812,-0.816916826,-0.455700727,-0.453031477,0.144159868,0.417111046,0.155550558,0.253197216,0.312175706,0.636706103,0.228429282,0.034811956,-0.611653792,-0.202034386,-0.779372183,-0.296078208,-0.476628297,-0.969013697 +JHH7,-0.085336402,0.636965057,0.459191522,-1.424957804,-0.636349813,-0.233705247,-0.291137658,-0.280522265,-0.255261011,0.309198055,0.784015067,0.713755857,0.342591998,0.324580823,-0.334474794,0.498401595,0.401247198,1.050056823,0.67838946,0.218988633,0.186405528,0.088725327,-0.341588688,0.091001887,0.093751686,0.28380739,-0.420293696,-0.040267462,-0.032709672,0.020705726,0.083625479,0.220614064,2.127909296,1.083924775,1.038483021,0.561015976,-0.247009071,-0.217582572,0.111558291,-0.177258332,-0.252757973,-0.377115096 +HCC38,-0.364601711,-0.542922983,-0.074933618,-1.359314698,-0.649376105,0.009457091,-0.268828574,-0.981211321,-0.561360315,-0.609146909,-0.152489743,-0.25153292,-0.458203676,-1.032413175,-0.385129103,-0.215146531,-0.150819292,-0.061383407,0.095534577,-0.619071924,-0.068747805,-0.447154698,0.17636793,-0.86524151,-0.21275742,0.030460695,-0.172161647,-0.266582461,0.221851166,-0.13696651,-0.679660425,-0.236015863,0.047643224,0.365926553,0.309338235,-0.580944677,0.214153759,-0.374048735,-0.213168612,-0.35924327,1.305783218,-0.87969756 +DU4475,-0.08574744,-0.077174056,0.05699578,1.130132679,0.025210597,-0.169315854,-0.360248757,-0.475368517,1.191569157,0.555503941,0.210578311,0.239839647,0.485787129,1.056529976,-0.699473599,0.033746192,0.36310811,1.080885119,-0.801315324,-0.878593066,-0.586756727,-0.617190591,-0.300458877,-0.801265691,-0.502648836,0.220163699,0.463603927,-1.029327259,-0.207529876,0.33183728,0.684600815,0.697670997,-0.486471992,0.227976121,0.239245765,0.093437516,-0.187006439,-0.292727108,0.056574518,0.061083162,0.217932849,0.946346541 +NCIH1573,0.236971088,0.650462269,0.10895403,-1.765976423,0.327960899,0.414192606,-0.332534522,0.242790909,1.662932065,0.868347142,0.406413276,-0.034543379,-0.183815816,1.644174434,-0.084025754,0.943766276,0.42424323,1.483152435,,-0.076518559,-0.825337084,-1.509787133,-0.141233386,-0.092117512,-0.418622471,-0.240503635,0.496362734,-0.15983893,0.547248021,0.312399873,-0.329371603,0.534765157,0.443262954,0.390658884,0.164785071,-0.418423434,0.297631782,0.063050588,-0.006919434,-0.026360627,0.043545411,0.162099877 +NCIH508,-0.022311594,-0.323493416,-0.648369957,0.266539767,-0.389250635,0.178260006,0.194229206,-0.418555779,0.061467042,0.297571102,0.463303667,0.370648866,0.537918872,0.012999784,0.08354741,0.059733276,0.00540343,-0.106136729,,-1.536391765,-1.523326263,-0.990327406,-0.707809294,-0.632296121,-1.147436496,-1.03744806,-0.023532904,0.151513408,0.213949813,-0.504460047,1.026487398,1.038231892,-1.620591519,-1.554535067,-1.810104672,-1.150015414,0.593883249,-0.055274344,,-0.042364317,-0.105957144,-0.418717342 +NCIH1651,0.31249561,0.738482606,0.668914476,0.127905368,-0.213141472,-0.15543679,0.386970876,0.666350372,-0.203443445,-0.232870135,-0.208957679,0.031456315,0.531080187,-0.100312061,0.244049215,0.412923173,-0.529998246,0.053477313,,0.142559748,0.522332509,0.730821182,0.209272253,0.149752793,0.470557611,0.773399268,0.548165795,-0.28720036,0.064395435,0.355128714,-0.946088451,-0.714190694,0.165366423,0.54445836,0.851930055,0.779973342,-1.078872076,0.152862117,,0.035758448,0.391534281,0.597874572 +SKUT1,0.197694841,-0.545794379,-0.391202471,0.128075645,-0.445564319,-0.112600945,0.196448934,0.088878138,-0.880796631,-0.135067405,0.130154915,0.236517384,0.478399875,-0.406094087,0.179332188,0.644916383,-0.428280587,-0.045996946,-3.96099123,0.379588125,-1.241690599,-0.945473306,-2.206799155,0.398071984,-0.889967745,-0.783203649,-1.462255383,0.585268266,-0.305315369,-0.438699618,0.365731318,0.503944771,0.264780754,-1.807130429,-0.508643877,-2.146909242,0.337981284,0.088865839,-8.616245215,0.065454301,-0.001304703,-1.174217327 +MDAMB175VII,-0.234831318,0.525022841,0.018930072,0.512174612,-0.235608171,-0.033270184,0.113936563,0.306501575,-0.970122636,-0.26046861,-0.170875585,0.173789629,0.45106546,-1.084147022,-0.094154041,-0.378200791,-0.232360054,-0.488316659,1.001579425,-1.188679704,-0.509481704,0.567090637,-0.47478303,-1.232321443,-0.023655141,-0.261446003,-0.167630418,-0.908768871,0.260044996,0.756719237,-1.558196863,0.049630057,-0.809671835,-1.243345586,-1.35502394,0.336527881,0.139948377,0.003760938,-0.123300794,-0.170984213,0.419650825,0.984974726 +SUPB15,0.122062431,0.067744194,0.212684188,0.317818937,-0.11813545,-0.060875029,0.196945998,-0.01700354,-0.032746088,0.308023187,0.334840393,0.616114639,0.505488687,-0.049431189,0.101782663,-0.239070541,0.36214894,-0.115498578,0.243982554,-0.62839923,-0.829214972,-1.117772135,-0.014754739,-0.425856213,-0.673164421,-1.155982265,0.196306173,0.467157707,0.144992399,0.764028713,0.78759453,1.076715668,-0.836952176,-1.495433603,-1.141939813,0.879336303,-0.092028304,0.124884775,-0.066388652,0.239596598,0.371858639,0.283969653 +NCIH226,-0.31208793,0.073412238,-0.543202353,-0.629129303,0.19195435,-0.210217267,-0.8055145,-0.01420813,0.54805347,-0.563495945,-0.799842693,-1.088577676,-0.708102882,0.166144133,-0.279084675,-0.210671905,-0.843072146,-0.212784709,,-0.008919976,-0.789381729,-0.599538841,0.078039057,-0.145206213,-0.690561638,-0.790801008,0.619603078,-0.285239661,-0.247743236,-0.244684514,-0.59970362,0.026204589,-0.787515057,-0.618017797,-0.459868316,0.774718857,-0.658022564,-0.327697559,,-0.309388215,-0.35817679,-0.369962097 +NCIH1666,-2.021275823,-1.950368939,-1.901468905,-1.632459392,0.078810771,-0.034340866,-0.366758029,-0.187540106,0.989712421,-0.09479797,-0.396406514,-0.967160407,-1.053990283,0.246966756,-0.278044561,-0.405736535,-0.340480861,-0.638834279,,1.006209294,0.477431633,0.233568457,-0.039197338,0.684582516,0.644583395,0.211852343,-0.092410007,-0.680302387,0.106520697,0.369225946,-1.665143273,-0.685100816,-0.466160527,0.597006172,0.624716214,0.303859022,0.199801616,-0.01157885,,0.083991965,-0.174317868,-0.456676513 +SW1783,-0.160691106,-0.31081803,-0.294477641,-1.211264677,0.083379235,0.795690298,0.269891586,0.108042665,0.06690853,-0.564597781,-0.937111017,-0.849771373,-0.891319543,-0.457079049,-0.008298557,-0.225968008,-0.764471444,-0.579578798,-0.705534083,0.460142212,0.06984416,-0.262297993,0.218451901,0.531371271,-0.205440141,-0.191110445,0.45994141,0.35413781,0.040713362,0.0791481,0.034937402,0.283840896,0.694250712,0.593880327,0.056339358,0.749173572,1.053887985,-0.044731258,0.14371788,0.021887811,0.072477014,0.116410677 +ISTMES1,-0.15404326,-0.044048951,0,-0.087746856,-0.07063766,0.163964138,-0.027555688,-0.35298573,-0.880610872,-0.25717004,0.002894679,0.241424964,0.168294746,-1.111003759,-0.044138781,-0.531349119,-0.082453437,-0.237677454,,0.767321444,0.834821587,0.497182154,-0.094862754,0.868615362,0.638289963,0.525504302,-0.351020591,-0.041442893,-0.208108609,-0.3968374,-1.287590198,-1.200436018,0.296763087,0.074427621,-0.235510031,-0.512700679,-0.033919536,0.154941488,,0.070507411,-0.006224335,-0.188496096 +NCIH1734,0.276656077,0.332012966,0.043614078,-0.070731422,0.276728548,0.448277193,0.186226555,0.540074486,0.093469102,-0.232596313,-0.134240348,-0.487574771,-0.042528778,-0.307930378,0.288980162,-0.025732419,0.047756389,-0.087110551,,-0.448210348,-0.360430643,-0.376243633,-0.331157986,-0.534721687,-0.175560103,0.084151325,0.302355297,-0.375886822,-0.101085198,1.040986994,-0.316818378,-0.008016933,-0.601912585,-0.928615012,-0.266270807,-0.275289822,0.26452963,0.110647981,,0.161968193,0.352751293,0.134062436 +NCIH2342,0.16205568,0.261824697,-0.117050085,-1.542387066,0.393151158,0.189792362,-0.262572287,0.223264997,0.367935138,0.256555641,0.099296355,-0.386566805,-0.377860479,0.359987792,0.040283894,-0.184720625,-0.037456532,-0.265187873,0.784106762,-0.319387575,0.001836923,-0.11903681,-1.115613207,-0.051581776,0.267419869,0.499257151,-0.800116029,-0.164060782,0.284087204,0.326315635,0.156029442,0.071603789,-0.799029104,-0.487190688,-0.497468723,-1.070321542,0.144434066,0.006475819,0.040450375,-0.037705061,0.368298226,0.608105164 +EBC1,-0.011324742,-0.663621231,-0.393762965,0.434613042,0.324208845,0.304716747,0.108542476,-0.235059001,0.092205146,-0.008570378,-0.169963278,-0.673558733,-1.177066691,-0.333323539,0.11934544,-0.283153851,-0.428654188,-0.74427074,3.412577271,-0.027182469,-0.203538463,-0.455324859,0.04206418,0.605650843,-0.018087763,-0.281954692,0.103694641,0.621123714,-0.108492027,-0.960022364,-0.398079693,-0.534623199,-0.17880707,-0.507045933,-0.526010561,-0.314815326,-0.22116204,-0.117795322,0.027335244,0.059832226,-0.193476338,-0.798031186 +HS936T,0.070634706,-0.231276549,-0.277505241,0.727451526,0.136341793,-0.513070217,-0.909325559,-0.597631791,1.898126239,0.80277996,0.505103675,0.249942027,0.3665296,2.241174173,-0.341209572,0.278483584,1.059551252,1.179800026,-0.455944933,-0.693696748,-0.461379491,-1.467432018,-0.853765908,-0.603499411,-0.306680316,0.102842546,0.163531775,-0.13569736,0.261231348,0.675303555,0.544175295,0.659817803,0.46064862,0.699702963,0.485536402,-0.551080298,-0.657341193,-0.002628267,-0.140721004,-0.24458107,0.300062503,0.453168131 +T173,0.412963176,0.427263444,0.171476003,,0.712739973,0.50277008,0.954791478,0.810392133,0.457568748,0.903943815,0.594606857,0.566126669,0.70145223,0.803340826,0.698495797,0.333679394,0.880573406,0.625747261,,0.604969979,0.553380887,0.478442653,0.44843244,0.889218001,0.93450395,0.263683425,0.635904281,0.87524521,0.494975037,0.070966189,0.333103559,0.447828236,0.098737012,,,0.006952273,0.98525869,0.561288921,,0.873272051,0.734694953, +NCIH322,-0.585939467,-0.243509204,-0.79804889,-0.412910833,-0.80503752,-0.214023775,0.019851743,-0.055272617,0.03549588,-0.392432314,0.321204325,0.69683149,0.840629417,0.454691903,-0.043656346,0.930119033,0.29184973,0.834898969,-0.25288827,-1.001460163,-0.273108518,0.911875804,0.534159663,-0.980641352,0.218619505,0.990063405,0.222730895,-1.094714963,-0.025286199,0.68770926,-0.896102965,-0.645040454,-0.963591249,0.185992801,1.309500781,1.467176505,-0.140162019,-0.095763734,-0.062705589,-0.092411519,0.234769905,0.543787637 +HS618T,-0.081418407,-0.169273328,-0.613132611,0.020194691,-0.35213421,-0.363651245,-0.227095079,0.090723228,-0.734109581,0.408947508,0.443252954,0.159906707,0.101124729,0.228399043,-0.062862761,-0.318958514,-0.004057862,0.307775236,,1.224015975,0.169568762,0.09369204,-0.101460126,0.672117301,-0.19665777,-0.030761124,-0.156018037,-0.411674275,-0.091322865,-0.364092817,-0.476995079,-0.237913531,-0.023992034,0.43568733,0.599220928,0.671675201,-0.161086063,-0.160987064,,-0.079128613,-0.137234464,-0.032287698 +HS870T,0.026017513,0.138464908,0.555526896,-0.072595239,-0.304412438,0.155333153,0.424971415,0.291453288,-0.263872236,-0.720664936,-0.334624663,0.076475812,0.100865346,-0.421869977,0.051752213,0.275412853,-0.151621653,0.438486196,,0.0846041,-0.184704735,-0.808453174,-0.457012876,0.102071513,-0.319982712,-0.568570034,0.074056862,-0.001379634,-0.12913695,0.053808211,0.234901121,0.340929994,1.099369031,0.737996166,-0.114312641,-0.012564837,0.56384479,-0.252279046,,0.204017727,0.060536701,-0.051385397 +PANC1,-0.155761817,0.058682677,0.300556078,,-0.196082016,-0.138764733,-0.146968093,0.180416956,0.286347698,-0.251819723,-0.290702215,-0.199298764,0.265695787,0.194695309,-0.103406362,0.043912198,-0.535192318,-0.143640772,0.73989803,-1.527805442,-1.932458419,-1.768500308,-1.261637027,-0.939211018,-1.138127139,-0.678106999,-0.449374383,-0.094240572,-0.191430779,0.129009595,0.27858469,0.70258402,-1.854030431,-1.575167099,-1.327715624,-0.958711329,-1.139275357,-0.235758567,-0.177694544,-0.142342802,-0.191930861,-0.192324607 +NCIH2291,-0.132713894,-0.35378804,-0.269486177,-0.224727707,-0.987014666,-0.543879538,-0.11900061,0.01420813,-0.729678869,-0.202291578,-0.002191433,0.061595889,0.477353139,-0.282727601,-0.141276347,-0.241785139,-0.414628986,-0.333078213,,-0.488138813,-0.88701929,-1.313084717,-1.07934092,-0.550851143,-0.718430515,-0.672691388,-0.436654438,-0.334009536,-0.269466975,-0.148459544,-0.009464144,0.571202016,-1.467431764,-0.713307136,-0.626288734,-0.787187832,-1.345444972,-0.350199957,,-0.240937721,-0.412707459,-0.670478459 +T47D,0.084600511,0.805610145,0.871175891,-0.734343433,-0.531623673,0.131720438,0.156258393,0.252731918,1.08651376,0.216802036,0.058984509,0.029307987,-0.065814893,0.847127382,-0.059665469,0.586412597,0.01848667,1.136630442,0.779234364,-0.996932334,-0.584116031,-0.845365662,-1.268303427,-0.332537122,-0.606169667,-0.596733936,-0.267953749,-0.291875113,0.285017026,0.233684035,0.513279036,0.836987516,1.352992027,-0.306702259,0.365728158,0.547334944,-0.139776844,-0.243939581,1.627086385,0.288974055,0.694536525,-0.571384524 +BICR16,0.318464913,-0.19453041,-2.812040211,0.497253058,0.137870212,0.341657989,0.161398773,-0.256409206,0.222771432,-0.185074534,-0.070947755,-0.100651454,-0.058457758,-0.206274007,0.424423603,-0.080621951,-0.103058535,-0.550519858,1.792100926,0.495436264,-0.070968567,-0.5510057,0.206107967,0.329280456,-0.055195311,-0.787259208,0.613680038,0.758501391,0.243702705,0.098202744,0.49154907,0.766988752,0.064674957,,-0.05199735,0.334913066,0.361820698,0.329328431,0.682518553,0.257256482,0.158532043,-0.226098453 +TE10,-0.054268888,0.369012287,0.243257081,-4.528461038,0.152346562,0.278830128,-0.05601085,-0.075298479,-1.064892054,0.112406535,0.135517423,0.070629984,0.129181208,-1.026249009,-0.013717888,0.490342844,-0.240022324,-0.135483625,-4.390444653,-0.113197919,0.188989316,-0.089515965,-0.083450983,-0.117323759,0.118380306,0.209897855,0.270212608,-0.208197211,0.13222962,0.059653839,-0.463086901,-0.006682048,-0.322470825,-1.360448855,-0.50042549,-0.823084416,-0.099276745,-0.000806943,-8.424210262,0.057317559,-0.12972345,-0.678799333 +SKMEL28,-0.069442217,0.348408212,0.152706525,0.841692491,0.139016652,-0.148365442,-0.342603322,-0.526624544,0.872961836,0.505759612,0.434806808,0.239304721,0.002385885,1.104040776,-0.296599398,0.072258381,-0.031842799,-0.173916182,-2.036687363,-1.102366576,-0.577374887,-0.20959058,-0.277159316,-1.143946339,-0.389225529,-0.618745073,-0.278612697,-0.324605709,0.150697096,0.370357801,0.545643173,0.759556902,-1.00018283,-0.677285442,-0.124252863,-0.065839397,-1.051973754,-0.077905571,-0.132675572,-0.020548727,0.269753248,0.8172475 +BICR6,-0.193153542,-0.226485665,0.128974382,,-0.28927083,-0.23940327,-0.187386935,0.003045255,-0.150721315,-0.288426525,-0.205818049,0.220521037,0.683219195,0.189619778,-0.063799907,-0.125745668,0.333264955,0.37145021,-6.612463245,-0.441443078,-0.915085978,-0.763705679,0.309527059,-0.131323494,-0.792050157,-0.743304253,0.169193467,0.439403554,-0.323876594,-1.334592478,0.685394365,0.215728433,-0.925994781,-2.490015186,-1.898806132,-1.658711733,-0.44192405,-0.043340531,,-0.209661877,-0.649207165,-2.826246743 +BHY,-0.067919833,0.004733041,-0.35751612,0.062389033,0.196559142,0.474043341,0.363390294,0.091071762,0.715052998,-0.576979578,-0.367542492,-0.394657454,-0.359963957,-0.069809,0.012798152,-0.254786742,-0.082412963,-1.065359967,,-0.044457158,0.145934937,-0.631718661,0.298640958,0.065687368,0.208194617,-0.91780783,0.976964427,0.182030376,0.16308734,-0.174658219,0.682005529,0.192344223,-0.314353163,-0.377176313,-0.075788758,-1.085770363,0.133376688,0.07149953,,0.072972961,-0.253702077,-0.497316381 +SH4,-0.102580837,0.106674127,0.211835641,-0.287120263,-0.174610815,-0.951155093,0.108983976,0.022958952,0.145429843,-0.348983119,-0.342703768,0.168595038,0.339272962,0.305354349,-0.043452738,-0.5239624,0.368712272,0.049305441,-0.219297289,-0.709633877,-0.013232625,0.300124476,-0.107776622,-0.966035072,-0.13555474,0.728709945,-0.046093354,-0.814138332,-0.529125247,0.242640333,0.178073564,0.178672718,-1.377801669,-0.224505725,0.215139477,-0.355950254,-0.459210866,-0.075386899,0.133926849,-0.107719509,-0.071894104,0.106244874 +KPL1,0.249633803,0.157080863,0.001176844,1.168106343,0.376408617,0.21348728,-0.565374709,-0.615341413,0.665687065,0.397128853,0.181552917,-0.054713705,-0.209803073,0.175552311,-0.227803879,-0.463177318,0.206526619,-0.183261016,-0.251079724,-0.203703532,0.581273809,0.288752637,0.061865284,-0.143748385,0.442271526,0.191079437,0.1986883,-0.05504703,0.041815819,0.221910914,-0.743874713,0.344170391,-0.136310378,0.349336609,0.043949795,0.302533358,0.374956386,0.06198108,-0.457651295,0.318741242,1.436541807,0.010827121 +TUHR4TKB,-0.030271159,0.254288497,-0.300691595,-0.429305372,-0.057560857,0.333836954,0.186501127,-0.09323007,0.422444761,-0.263652349,-0.039155884,-0.130631106,-0.144079582,0.538273765,0.106714991,-0.063861209,-0.273687535,-0.13429017,-0.730608626,-0.440483804,-0.183139837,-0.398486028,-0.308190952,-0.515787991,-0.010156273,0.423237724,-0.259169929,-0.015913506,-0.043690612,0.446631888,-0.000658439,0.260339836,-0.897650229,-0.298718861,-0.192931555,-0.027769825,-0.163477248,0.062520958,-0.244840226,0.0121679,0.15120174,0.457534081 +LS123,0.403321482,0.111818814,-0.060331788,-0.027794345,0.318749218,0.250073931,0.471822257,0.8882894,-0.288783136,-0.771333377,-0.605061254,-0.387745296,0.49869285,-0.981178299,0.559864575,-0.252124721,-0.407590068,-1.080469192,,0.059851373,-0.200571025,-0.439954655,-0.415640933,0.479085329,0.235925586,-0.111738624,0.299513046,0.340305807,0.452957194,0.201669435,-0.050140542,0.407563422,-0.460564199,-1.197293085,-0.871723529,-0.958189492,0.182306625,0.184778601,,0.438062666,0.551867001,0.823401532 +HEL,0.052802511,0.149555946,0.84326393,-0.008751778,-0.178832557,-0.158236519,-0.509555446,-0.96517419,-0.736749436,0.944948764,0.448374101,-0.599977337,-0.417452621,-0.229189408,-0.27153929,-0.650463667,0.449944345,0.566830451,0.726944108,-0.400412471,0.645977487,0.882421091,0.299743728,-0.337517098,-0.167135529,0.493080157,-0.235847784,0.437572689,-0.902150427,-1.041375293,0.852723176,-0.497149107,0.163441001,1.494953592,0.291133112,0.128447039,0.149619895,-0.242715775,,-0.049972355,-0.294985922,-0.30293978 +HPAC,0.163497915,0.373213349,-0.052331812,1.021589359,0.030445569,-0.229386399,-0.623481421,0.110448204,1.537547146,0.744835113,0.885672625,0.717014082,0.685433404,2.063426756,-0.224263899,1.005261989,0.917170986,1.204382324,,0.1327758,0.586431833,1.409231221,0.827436324,-0.390857167,0.339933162,0.831687196,0.299253337,-0.252003629,-0.218168084,-0.194784102,-0.092685359,-0.60604261,0.065922936,1.592213545,1.97223091,1.882194968,0.475060604,0.405091709,,0.065864467,0.292131803,0.17454687 +RCC10RGB,0.202678772,0.313529977,0.122618288,-0.097429961,-0.381101349,-0.071387352,0.341472548,-0.182607382,-0.479239051,-0.4026063,0.148547635,0.472728991,0.391163334,0.287607219,0.146611632,0.463597259,-0.318647841,0.321959785,-1.573770344,-0.198057135,0.140086568,-0.169203216,0.362917534,-0.66975569,0.024831743,0.321202159,1.168832832,-0.145145608,0.384031682,0.421964508,-0.179046974,0.606634461,-0.368916144,0.429160721,0.428234894,0.703731195,-0.231278037,0.062984049,-0.10326402,-0.069023968,-0.10831216,0.311934988 +JHOM1,0.532229044,0.472250605,0.156846987,0.905953124,0.289531178,1.042105381,-1.221889374,1.297881792,1.131378383,0.607522021,0.287690221,0.384332997,0.316370581,1.340342062,0.647441387,0.228297919,0.832663519,0.96607704,5.970914268,1.370173267,0.642434416,1.415630853,1.02374616,1.471741068,0.59031178,0.873338818,1.59564187,0.324528759,0.378870766,1.152754687,0.758009764,0.125625781,1.350459776,1.042456521,0.506418843,1.833078422,0.810776466,0.414316243,0.337863654,0.819601383,0.920042444,0.468784469 +SU8686,-0.582353931,-0.215978346,0.449756724,0,0.228027683,-0.022004615,-0.17275092,0.050319345,0.643363007,0.14653339,-0.333917139,-0.4402689,-0.281083713,0.148856925,-0.116312614,0.570872017,-0.527930401,0.474719388,1.31008831,0.592408561,1.597508793,2.044238619,0.44672567,-0.362153648,0.783261158,0.941975669,-0.00181186,-1.211401638,-0.36228852,0.280306816,-2.118582953,-1.11799399,1.491993849,2.527604912,2.398780829,2.316906674,0.48534313,-0.017977471,-0.000936174,0.063600567,-0.38257199,-0.571478009 +HCC33,-0.020566566,0.456668493,-0.256341474,-2.053670431,0.536675072,0.198335444,,,,0.595839644,0,,-0.581953392,0.414339723,0.304611606,-0.04511607,0.164528695,0.141195534,,-0.243288321,0.489459336,,,0.003209871,-0.126962283,0.754775795,-0.381766512,,,-0.054252597,,,-0.057699764,-0.257024142,,,0.907982688,-0.049044427,,-0.089102296,-1.284831274, +TE6,-0.011601045,-0.020381119,0.031001753,0.962050703,0.303542831,0.179666955,0.031452013,-0.176758267,0.157823663,0.14345918,0.03423564,-0.0860767,-0.307637992,-0.251824045,-0.076447817,0.376623158,0.120719032,0.37819352,-1.001449904,0.300045904,0.455733302,0.238821989,0.697041281,-0.066542452,0.345433403,-0.049679851,0.176267232,-0.164753717,-0.113902365,0.13484882,0.010029369,-0.111306348,1.189284563,1.241689795,0.912066917,0.886805184,0.324356439,0.029195711,-0.090290629,9.11E-05,0.069820557,0.488759111 +JHOC5,-0.13365777,-0.824194424,0.288902459,-0.119113275,0.30219575,0.263928469,0.26610231,0.734094735,0.473310478,-0.040126937,-0.249796566,0,-0.048878482,-0.26575374,-0.077732672,-0.143142513,-0.337497118,-0.477792525,,-0.375376108,-0.66426799,-1.060661306,-1.911526553,0.463402527,-0.088959475,-0.207438342,-0.430912568,0.123425774,0.570554565,0.875058155,-0.884509014,0.30812854,-0.766750674,-0.662701933,-0.86234679,-1.909114496,-0.854911495,0.137005779,,0.375426982,-0.410440538,-1.33517971 +ACCMESO1,-0.355191456,0.338163989,0.280563191,-0.52496547,0.005930574,0.145460615,-0.033511746,0.185359519,0.024378819,-0.489316292,-0.242835216,-0.230090587,-0.864755474,0.046092253,-0.255857821,-0.333988879,-0.262086682,-0.683400009,-2.921778153,-0.583373038,-0.916937711,0.234300014,0.982778055,-0.02920995,-0.541084358,-0.039564596,0.185941004,0.201575601,0.044773303,-0.220804354,-0.277884307,0.046028916,-1.567009391,-1.231698079,0.376678099,0.973223831,-0.936484301,-0.102875519,-0.276063662,-0.145557007,0.294802192,1.11350563 +BL41,0.423497888,-0.853864774,-3.129988294,0.389393907,0.871326194,0.611218848,0.529478394,0.002502105,-0.812843218,0.122376536,0.105201678,0.137437545,-0.143130809,-1.08389919,0.633302266,0.105344901,0.084712693,-0.184656187,2.356845592,0.278537388,0.629674054,0.318131075,0.452617519,0.478691741,0.220124432,-0.443093166,0.324795408,1.151801837,-0.214288013,-0.135681884,0.92678684,0.332549546,1.32407581,0.255595303,0.38579459,0.975393661,0.028870547,0.16925694,-0.394603691,0.757019237,-0.107200938,-0.31823888 +SNU1214,0.407071494,0.082280609,0.185163948,0.153669804,0.86429869,0.334329972,-0.125704195,0.071405444,0.64114141,0.421741577,0.203582097,-0.269896179,-0.528441296,0.443865816,0.1395764,0.801409452,-0.043210955,0.373168488,,0.430041431,-0.215064478,-0.634030973,0.008586096,0.530148094,0.02732088,-0.271496042,0.257521466,0.712563398,0.33413605,-0.455904563,0.281967528,0.161710443,0.675551852,0.14774296,0.075697752,0.431134229,0.589207449,0.039509677,,0.19004484,-0.098743226,-0.245964627 +CORL105,-0.152704882,-0.444929612,-0.151154403,-2.833685809,-1.172916164,-0.650422323,0.42664105,1.057651152,-1.941244793,-1.779638641,-1.233859495,-0.273805387,0.512767245,-1.750831272,0.245501801,-0.419860292,-0.605896909,-0.950933226,-0.175814481,-0.72323689,-0.788528021,-0.983405766,-0.622408054,-0.69187742,-0.506776025,-0.336983412,-0.042944977,-0.254909215,0.122196038,0.377550614,-0.656014318,0.358334479,-1.018998795,-1.004626997,-1.505272387,-0.735373138,-0.730912184,-0.041055296,,0.038028512,0.394981106,0.724492127 +LMSU,0.04332136,-0.027171596,0.416918505,,0.451762404,-0.183540267,-0.470974833,0.01620003,0.572422889,0.714855201,-0.015812666,-0.404257011,-0.897831671,0.550573332,-0.155494842,0.024922761,0.365548718,0.281536527,3.052518278,1.273673172,1.360978296,1.230012463,0.565985182,0.475315539,0.755756171,0.118193861,-0.098918369,-0.48464003,-0.371100733,-0.170703938,-0.750524048,-0.934455082,0.770268059,1.495822002,1.266639847,0.581419638,-0.101568839,0.10418881,0.010902235,-0.009663087,0.019993187,0.354869169 +COLO668,-0.060884794,-0.414830283,-0.021133189,-0.095332855,-0.554073632,-0.325673347,0.294901795,-0.258162292,-0.191877807,0.234360581,0.081833204,0.29960223,0,-0.054508283,-0.057202017,0.483284653,0.258130563,0.69245962,-2.725456023,-0.119392231,0.314001393,0.504371718,0.402140215,0.021915625,0.217469929,0.790438702,0.494589403,0.041747832,0.083821895,0.128082742,-0.162597412,-0.19329833,0.713452353,0.574601821,1.165465537,1.190744171,-0.192412896,-0.258303331,0.387576176,-0.06971898,0.122851071,0.509784128 +OSRC2,-0.045802778,0.781003585,0.798106561,-0.165475304,-0.214322003,0.088004898,-0.157307209,-0.146044307,-0.399662918,0.189658732,0.213574095,0.192155777,0.335999437,0.254777734,0.132056132,0.550811201,-0.32674445,0.465520562,-5.549065636,0.089392809,-0.027825549,-0.539616177,-0.15770612,-0.276555704,-0.261403907,-0.078493194,-0.175877338,0.292683847,-0.236043793,-0.337024154,0.463072384,-0.040854134,0.417503653,0.702099365,0.107919262,0.522098274,0.328689934,-0.090809903,-0.273397726,-0.07696115,0.314645886,0.743057884 +HUH6,-0.062719477,0.457873654,0.542721552,1.036807375,-0.120284247,0.14502532,-0.279502471,-0.169257616,0.2971396,0.077962422,0.223534378,-0.036328782,-0.132255851,0.412673029,0.236057081,0.330399177,0.000512653,0.72512627,-0.29344352,0.241439948,0.364987214,3.028746284,0.981045274,0.260578653,-0.406078501,-0.435973463,0.051813339,0.562920399,-0.689491346,-1.490061091,0.791237372,-0.530162644,1.915820373,1.094345002,0.104655923,2.190718113,0.912566055,0.075694531,-0.100570806,-0.043020469,0.020311243,0.637949226 +PANC0203,0.081695086,0.13295668,-0.066394933,-2.8191647,0.233022056,0.308136016,-0.04466684,0.230948705,-0.462677425,-0.486363475,-0.882009472,-0.794924669,-1.058647692,-1.110752816,0.155852778,-0.549703654,-0.832074224,-1.288784945,3.406716743,0.155488473,0.284675241,-0.206294519,-0.194235658,0.252220111,-0.048188864,0.069128462,-0.236945108,-0.487110523,-0.300875349,-0.02418283,-0.681583046,0.243552213,-0.98135589,-0.564325919,-1.188865353,-0.583766491,0.446629308,-0.179563273,-0.031489197,-0.238114276,-0.261953526,-0.099677358 +CJM,-0.017044674,0.431586761,0.625888379,-1.192891777,-0.002605513,0.122348806,0.239771974,0.722741435,0.03126975,-0.392888242,-0.172022896,-0.08666795,0.028144505,-0.12849489,0.166477273,-0.245106336,-0.122931665,-0.620658742,-1.975741846,-0.299596639,-0.719446517,-0.475848197,0.275660982,0.546407367,-0.175332245,-0.272701495,0.510412738,0.634221708,-0.220893167,-0.457372689,0.416037031,0.484296833,-0.608683427,-1.215073978,-0.692334561,-0.065272014,-0.026405491,0.011719782,0.145679472,0.061444405,-0.060106421,0.070408971 +BICR22,-0.579154097,-0.325834792,,-1.303095109,0.093424437,0.333537003,-0.044124334,-0.174427821,-0.120980137,-0.395067436,0.067908328,-0.201180431,-0.22703258,-0.538663594,0.135288089,-0.573109707,-0.343046153,-0.568666857,,0.181730847,-0.446084419,-0.543023291,-0.73539942,0.396967289,-0.150392664,-1.231606485,-0.10273989,0.584224636,-0.1694661,-0.658724336,0.216831298,0.326912661,-0.40916391,,,-0.0098648,0.88157896,0.105142912,-0.02545503,0.002924158,-0.024296742,0.10938887 +TM31,0.309503165,0.495138371,0.559577888,0.336797346,0.445743855,0.36931493,0.522642609,0.888102174,0.858957422,0.415286214,0.343359109,0.231587855,0.118077914,0.469854296,0.284629397,0.310451021,0.858257784,0.168280597,,1.197480454,0.809202538,0.293553643,0.716760839,1.243121727,0.522298957,0.370593306,0.552466658,0.39633177,0.160204441,0.086794976,0.078738246,-0.113473902,0.040869616,1.367763319,0.437922746,1.030755365,-0.469121743,0.466810856,,0.543872082,-0.13013454,-0.524852061 +SNU1272,-0.043485853,0.367518136,0.151416853,-0.582813648,0.003127016,0.220627854,0.269233559,0.017334197,-0.747954052,-0.399518118,-0.136518092,-0.104305717,-0.199144228,-0.375557509,0.168424125,-0.025756176,-0.702599973,-0.371768596,-1.650406578,-0.723923886,-0.345180964,-0.88690729,-0.428954839,-0.729944164,-0.135960606,0.150550435,-0.352851503,-0.567695857,-0.008124311,0.644924331,-0.395628668,0.433183242,-1.070326363,-0.64734061,-0.416529057,-0.339953872,0.001465838,-0.026191313,-0.209703314,-0.122763436,0.055973979,0.214910247 +KPNRTBM1,0.104009696,0.225650276,-0.185851213,0.699272113,-0.292884069,0.196989872,0.224798986,-0.675050738,0.1053653,0.01115853,0.527897723,0.954030725,0.587808054,0.073589981,0.038823796,1.066010991,0.816269994,1.218891983,,0.194852102,0.819236909,0.990128698,0.774357151,-0.559915569,0.805451869,0.877019757,0.293271751,-0.627807737,0.415092639,0.656875901,-1.135688845,-0.373308676,0.656487714,1.335539722,1.191307571,1.096661651,0.532134169,0.035099725,,-0.003554933,0.434983259,0.61938348 +BICR18,0.049019849,-0.33857212,-0.379552102,,0.033314144,-6.41E-05,0.150844268,-0.376703601,0.068465237,-0.0812491,0.019938522,0.27182941,-0.023664202,-0.018150472,-0.018217205,0.142292923,-0.159172391,-0.192129087,1.049890793,-0.596084368,0.206483144,-0.188104619,-0.862467819,-0.930985129,0.426687925,-0.097139505,-0.463477062,-1.262868405,0.415020232,1.111729922,-1.830454171,-0.402528262,-0.237914366,0.007326383,0.059417065,-0.678830558,0.025063039,0.061089732,-0.061707051,0.179519671,-0.516421368,-0.952072089 +TE4,-0.110149389,0.30124274,0.073747399,0.011664495,-0.1415667,0.215912924,-0.110307758,0.055017261,-0.301144787,-0.159318467,0.214369965,0.168280607,0.067006148,-0.141276904,-0.017336185,0.455163921,-0.41837262,0.145708372,,0.18515077,0.005659292,-0.171957526,-0.809793512,0.285155304,0.412463816,0.082145203,0.080149345,-0.601108862,0.154304507,0.308754679,-1.508307629,-0.765897672,0.604186415,0.903014656,0.228428005,-0.715875211,0.757548591,0.008990034,,0.127453509,-4.247101692, +ECC10,-0.460745586,-0.319961302,-0.841440229,-3.84201725,-1.088587356,-0.874119103,-0.271698932,-1.366775841,-1.042155422,-0.333475453,0.331503938,0.129882964,-0.251809494,-0.317687084,-1.030420988,-0.718007411,-0.00940678,0.259055714,-3.542563635,-1.960623,-1.530232532,-2.140351978,-0.896209579,-1.648601961,-0.965408081,-1.393707695,-0.400277963,-0.911399056,-0.72075411,-0.426395551,0.00925793,0.223190502,-0.16536047,-1.099208748,-1.547360437,-2.175822937,0.137029556,-0.639974561,-5.534008911,-0.532692287,-0.520092791,-0.995203208 +TUHR14TKB,-0.093999309,0.529678654,0.230529084,-0.085428683,-0.174880779,0.232100073,0.452381401,0.445024664,0.027492346,-0.750149822,-0.223619372,0.08283647,0.050644355,-0.249483732,0.291049192,0.315325175,-0.691928004,-0.077580215,0.177593511,-1.176311393,-0.363803592,0.326899012,0.115607477,-1.274961662,-0.217072578,-0.498912307,0.030070635,-1.293134789,0.331205552,1.491796225,-1.015923406,0.204424333,-0.890822206,-0.515787075,-0.34807083,0.788351401,0.292793183,0.11831632,-0.651070379,-0.063971719,0.315408192,0.724295643 +YD15,-0.028270754,-0.401591761,0.016544429,-0.122954287,0.271693374,0.103171669,-0.387223684,0.151534302,-0.007983313,-0.300217474,-0.450847575,-0.90469799,-0.955576388,-0.452999581,-0.140078991,-0.429739377,-0.404810881,-0.923476154,,1.061652831,0.373330468,-0.039888001,0.102606495,0.787600281,-0.006529967,-0.358369026,-0.361094133,0.128395534,-0.284229312,-0.701278968,-0.39777958,-0.861550036,0.091014363,0.006880319,-0.06268202,-0.176709798,0.692113143,-0.010280582,,0.081277441,-0.583118715,-0.55247313 +ECGI10,-0.122407128,-0.000679956,-0.400771119,0.178867012,-0.828443811,-0.090236526,0.337113329,0.768098616,-0.162588735,-1.175076838,-0.268716905,0.475652095,0.945523383,-0.101174076,0.39107449,0.304483632,0.195057984,0.270487939,-4.72965919,-2.174442686,-2.425610729,-1.367694596,-0.895418517,-1.021917928,-1.086266851,-0.200869942,0.131531059,-0.065653568,0.412816008,0.595123764,0.292888005,0.206581863,-2.507230194,-3.836325939,-2.007034427,-2.162298952,-0.548074326,-0.027718792,-6.384913175,0.075849182,-0.074867294,-1.877867904 +CW2,0.020962215,-0.531522348,-0.558350355,-6.766932254,0.277788646,0.260047481,-0.050063346,0.107365159,0.868168609,-0.207967497,-0.276846328,-0.366170752,-0.59499989,0.192472155,-0.031155822,0.281260523,0.265732671,0.284829709,0.10315658,0.641693216,-0.41975234,-0.865437349,-0.23844941,0.756527985,-0.577013879,-0.732920861,-0.298330982,0.512198982,-0.339250468,-1.229041163,0.602599408,-0.353031091,1.082898774,-0.108358673,-0.521485832,-0.240025624,-0.284409125,-0.138344632,-3.749828265,-0.08981941,-0.116522062,0.538902355 +SNU761,-0.550002207,-0.62155603,-0.276100363,-0.211508441,0.456177686,0.184487553,0.533544085,0.695541041,0.724093084,-0.125133271,-0.224101416,0.492325521,0.68794285,-0.029901032,0.44143075,0.488806365,-0.149057314,0.091214245,0.751886237,1.26221149,1.330058122,1.881085607,1.158743019,1.026790001,0.787174306,0.46031784,0.423818913,0.52186512,0.061151061,-0.42447818,0.058750232,-0.238487546,1.135494456,1.026534949,1.185294684,2.300917315,0.931631094,0.398354515,0.337298872,0.372317224,0.464047295,0.562266795 +SNU61,0.1866444,0.03123015,-0.089146624,-1.318326101,-0.127771457,0.140923082,0.182918821,0.434190353,-0.932190368,-0.287223057,-0.072547123,0.025716084,0.119459997,-1.105548353,0.099434596,0.083678601,-0.241934874,-0.235154449,-1.572143106,0.408657496,-0.251499621,-1.14812992,-0.703107732,0.699318776,-0.118721719,-0.282423082,0.084103006,0.722198875,-0.007878781,-0.202276556,-0.127731596,0.400581538,0.310969677,-0.955794217,-1.003265747,-1.463861059,1.109676016,0.054854522,,0.042873104,0.025415437,-0.236882084 +NCIH1915,0.129584805,-0.435206601,0.260536348,-0.140795396,-0.203162971,-0.054681633,0.163075705,0.327172016,-0.078485408,0.072175017,-0.474115052,-0.5167504,-0.256098398,-0.147845709,0.172671106,0.029700674,-0.132843972,-0.077909742,,1.108657979,0.031595174,-0.132327913,-0.501683877,0.938321294,-0.237294192,-0.586935551,-0.360877773,0.332205634,-0.159409139,-1.294304753,-0.550445827,-0.591068216,0.713602395,0.13134165,-0.003461982,-0.231888206,1.328504787,0.081001841,,-0.031001415,0.208297553,0.241373999 +SNU324,0.158971355,-1.249791848,-0.881852406,0.463981977,-0.013132977,0.157389501,-0.036563132,-0.23523396,-0.049648376,0.458066782,0.497383028,0.483825627,0.356947317,0.029301347,0.055751556,0.389687187,0.624961732,0.325146045,2.162211193,-0.564474935,0.069906412,-0.163755668,-0.155164606,-0.66553315,0.222372753,0.296427087,0.05389565,-0.511851711,0.313461682,0.779013162,-0.146919044,0.61561876,0.142601075,0.440868638,-0.066389488,-0.197829116,0.035644527,0.048519557,0.125829043,0.085023356,0.261472224,0.397032221 +YD10B,-0.222173918,-0.247352261,-0.719130951,-0.242585864,0.36740989,0.135390959,-0.749811531,-0.993410266,0.618559656,-0.072648592,-0.264628471,-0.713481795,-1.02127408,0.312452877,-0.2993069,-0.227188407,-0.095833485,-0.399222102,0.803086605,0.214662724,0.425134813,0.316395844,-0.311853318,0.022171056,0.226161449,-0.116902593,-0.589022118,0.050534481,-0.008088459,-0.476743761,-0.56642895,-0.342011035,-0.199002616,-0.536716724,-0.188279979,-0.720304647,-0.073947205,-0.334690715,-0.182893788,-0.289541447,-0.551869399,-1.112862893 +HCC2279,0.066444943,0.108872637,0.800731576,-1.734022574,-0.231082991,-0.147401337,0.419833239,-0.002241891,-0.100541531,-0.841158212,-0.328032286,-0.053361807,0.372597382,-0.168466662,0.265810657,0.441653932,-0.36419593,0.227766487,-3.255285116,-1.429183591,-0.269981834,0.644038184,-0.144647544,-1.306469512,-0.061780956,0.711948958,-0.196012704,-0.105808259,0.199374608,0.400899364,0.279225923,-0.018372137,-0.259438463,-0.568177467,-0.425526482,-0.207305467,-0.028867053,0.035957571,,-0.220450144,,-1.31099308 +TUHR10TKB,0.168681178,-0.081066728,0.535396422,-0.164825461,-0.611085678,0.043894171,0.463002733,0.66088175,-0.649012008,-0.988891862,-0.684009952,-0.046878799,0.155079552,-0.60919853,0.153767561,0.064695546,-1.095555776,-0.496619904,-1.701194359,-0.444395976,-0.176739562,-0.678616887,-0.597068988,-0.602316421,0.171543711,0.301362289,-0.648638918,-0.107060224,0.373393364,0.205606029,-0.351144867,0.132709604,-0.671143519,0.493806067,-0.37154344,0.587047636,0.101315363,-0.24646426,-0.374629084,0.028997391,-0.055429812,0.0953649 +HEC1B,-0.149212433,-0.116319473,-0.707125582,-0.984166126,0.315632366,0.277015606,-0.025992332,0.045538196,0.165598937,-0.139533804,-0.191345851,-0.282962123,-0.377015071,-0.075624964,0.009917469,0.584461418,-0.509323418,0.030167946,-1.722906576,-0.067344564,0.756483916,0.913232981,0.506543236,-0.610837176,0.3138546,0.819613304,0.068334795,-0.597417078,-0.176209636,0.199261055,-0.041023538,-0.333914872,0.190223974,1.054786983,1.438338252,1.629623119,0.104519715,-0.053281793,-0.047679682,-0.05567356,-0.478422737,-1.097046069 +TGBC11TKB,0.02563854,-0.809465626,-0.512642313,-2.189636906,0.252988243,0.05619764,-0.068601514,-0.305168825,-0.449846835,0.244291572,0.214346656,0.150183916,0.283484674,-0.27552224,-0.080691499,0.525349825,-0.004164848,0.491049125,1.113492929,-1.001065074,-0.416048781,-0.035354623,-0.126288226,-0.71431492,0.067475312,0.249581135,-0.018652615,-0.419637115,0.547444438,0.424976648,-0.522382762,0.313848607,-0.215860476,0.100693104,0.199133888,0.615103707,0.325275314,0.027524135,-0.19817408,-0.18962032,0.27809404,0.901829948 +OVK18,0.223711274,0.351462703,-0.0867833,-1.476255813,0.360110288,0.03699503,0.153198624,0.41428822,-0.076420885,0.159533816,-0.09026451,-0.307924336,-0.037559298,0.261496201,0.121803167,0.626014142,-0.008852911,0.335748603,2.413428874,0.711683032,0.2087192,0.147314246,0.283781689,0.609439432,-0.090780667,-0.056865639,0.140580377,0.669085664,-0.125554614,-0.224587453,0.371702328,0.363787704,0.977203564,0.797192694,0.675195436,1.078963471,-0.115131609,0.144639322,0.127608421,0.051043155,0.373440362,0.507553993 +SNU1077,-0.151592241,-0.711077176,-0.170698556,-0.117636447,-0.035697232,0.213725585,0.378623279,0.097196485,-0.046900746,-0.42473178,-0.387177637,-0.462633753,-0.23472216,-0.41166868,0.1302631,-0.324992452,0.094302102,-0.234425183,,-0.190049222,-0.18708932,-0.260665384,-0.375570607,-0.138604057,0.032993759,0.149642515,-0.157729707,0.028412256,0.019230474,0.108829815,0.429949865,0.234382775,-0.272800102,-0.224042209,-0.260233931,-0.648179695,0.374470409,0.015992515,,0.088983066,-0.124003446,-0.444101844 +HCC1588,0.085119822,-0.468733159,-0.902786006,-2.70834767,0.080610891,0.192890451,-0.269813913,-0.40139329,-0.163408582,-0.152770745,0.32386743,-0.036402428,-0.195747541,-0.346220874,0.276407478,0.292601063,-0.216548959,-0.280853257,-1.590203822,-0.28075677,0.232170764,-0.112093915,0.050937187,-0.021181662,0.183582792,-0.285576602,-0.005013056,-0.436798648,0.015780648,0.106490393,0.337038782,0.002742194,-0.235889026,,-0.459748987,-0.266936208,0.608757733,-0.123535248,,-0.28912234,,-0.790002498 +SNU213,-0.298828054,-0.3476177,-0.332832829,-0.179281823,-0.063549654,-0.358411842,-0.555386405,0.129609242,-0.006068265,-0.390997496,-0.523426826,-0.552236166,-0.451535136,-0.015426713,-0.327501943,-0.532006939,-0.303372867,-0.499527621,-0.278824493,-0.265909338,-0.616613055,-0.427236909,-0.620995319,-0.11772021,-0.090495213,-0.127027705,-0.640140992,-0.436087636,-0.343420734,0.076308787,-0.890148579,-0.109772936,-1.149419022,-0.869033425,-0.407865115,-0.871894969,0.053794973,-0.412273387,-0.420920407,-0.245770282,-0.154708048,-0.182883472 +HT115,0.236134128,0.155696783,0.395685386,,-0.526257484,-0.176932502,-0.049995404,0.141665135,0.072410894,-0.11599672,0.395223416,0.587116224,0.742628719,0.537576742,,0.223626243,0.108499514,0.230699041,-2.356366363,0.107287314,-0.562235745,-1.304233519,-0.49733216,0.104687697,-0.440425814,-0.464942607,0.07777398,0.216841601,0.148975424,-0.007296403,0.488874273,0.768158548,-1.024875776,-0.448873612,-0.902951729,-0.722375897,0.01854761,-0.121194806,,-0.013878363,0.056617986,-0.01205834 +TE14,0.080123682,-0.061394267,-0.030486218,1.079392618,-0.07610355,-0.003635888,0.00240827,-0.003932714,-0.124753216,0.203479475,0.25458983,0.202861898,0.246800881,-0.094737132,0.013611013,-0.523245481,0.197265126,-0.555443302,-1.363343681,0.995041624,1.867723191,1.43100101,1.221459737,0.73380159,0.996379723,0.013346523,-0.150538299,-0.034232231,-0.254502535,-1.003443439,-1.027592168,-1.452920419,0.540872461,0.36343661,0.30666408,0.237283675,0.651497374,0.143881062,-0.085130752,0.228677886,-0.081831874,-0.168390415 +TE8,0.02448807,0.86446306,0.402481451,0.254652303,-0.29091961,0.255656773,0.336113758,0.066455612,-1.032581591,0.021871646,0.553408599,0.572191773,0.253018302,-0.312364316,-0.258219366,2.156162983,-0.825015951,2.510249067,,-0.037467638,0.706245741,0.825454766,0.241498336,-0.581394327,0.54216662,0.922950857,0.190048143,-1.598814195,-0.1591901,0.988584119,-1.920526847,-1.08247124,2.805984915,,3.646986294,2.923536092,-0.165742306,0.245697787,,0.011822992,0.192936366,0.28911332 +SNU520,-0.116414114,-0.313861209,0.352720202,0.095599555,0.150017909,0.022654218,-0.416777282,-0.170734709,0.235819645,0.48383681,0.267431001,-0.517506272,-0.129669126,0.289784922,-0.120509582,-0.360371607,-0.098124901,-0.258097283,,-0.026020333,-1.265681271,-1.584016162,-1.210356345,0.535951576,-1.022525312,-1.152260044,-0.338685415,0.610315559,-0.991929281,-1.675628014,1.162381224,-0.776188523,0.328671206,-1.447790638,-2.120519402,-1.703619856,0.033659554,-0.145050674,,-0.119326166,0.030652712,0.514094901 +JHUEM3,0.10317572,0.001502874,0.003254915,0.053654326,-0.242405913,0.276017195,0.435366537,0.196532395,-0.534524905,-0.400504548,-0.136589597,-0.036547112,-0.173402843,-0.586962489,0.156524061,-0.067511717,-0.161796024,-0.56663831,,-0.624061747,0.232936521,-0.343422608,-0.035138976,-0.485489508,0.218618531,-0.465489255,0.863340012,-0.37126589,0.037789768,0.413183387,-0.433674519,-0.235278283,-0.599385161,-0.181761231,0.171814631,-1.164433488,-0.007435458,0.026829755,-0.000273042,0.010943856,0.176232801,0.2508644 +LI7,0.10160467,0.15914455,0.623462197,1.097343639,0.38517264,-0.147423982,-0.062240404,-0.118643896,0.118321999,0.149610394,-0.048646805,0.036108625,0.000339161,0.246738272,-0.24187392,0.288372532,0.047174462,0.444050692,-1.614366066,0.005524599,-0.109853683,1.14916133,-0.001995382,0.09498959,-0.265025209,-0.272271872,0.440188114,0.432879498,-0.183946423,-0.365455137,0.493422714,-0.153778669,0.959349778,0.563711496,0.458244738,1.371158578,-0.236600751,-0.01793753,-0.078785996,-0.037896027,-0.171814593,-0.222029731 +NCIH838,0.160396573,0.047327748,-0.226231852,-0.316295161,0.853315747,0.455466707,-0.995166668,0.23325348,1.046844779,0.129737866,-0.45117343,-1.392471442,-0.950591591,-0.160549714,-0.307446676,-0.304733593,0.211505112,0.357138869,0.161819217,0.256709918,0.072781091,-0.270405605,0.821230547,0.353579317,-0.172749146,0.285606195,0.169958048,0.188434882,-0.203525409,-0.716543862,0.871599834,-0.082013057,0.699856252,0.613330423,0.901908177,0.45911181,-0.099541252,0.086151012,-0.073827048,-0.197971322,0.043319451,1.216201053 +SNU119,0.063680112,-0.345865504,-0.416492543,-0.341535729,0.122278771,-0.022262563,0.175514562,1.02904425,-1.146691868,-0.533757806,-0.835050129,-0.488837476,0.119068634,-0.9435863,0.132321842,-0.812371049,-0.792941367,-1.219518784,,-0.886224519,0.683330977,1.044121763,0.245313035,-1.37785718,0.660893987,1.712896204,0.744339415,-2.597650452,-0.644615047,0.720085998,-3.21663145,-2.3189872,-1.654852765,-0.692468113,-0.585634219,-0.349014708,-0.307485217,-0.053018297,,-0.107279865,0.245352288,0.515774958 +SNU1033,-0.09851213,0.052473024,0.154245111,-0.180825582,-0.087360418,-0.029265789,-0.020583032,0.170323463,-0.44660214,-0.31279103,-0.403463417,-0.244364732,0.116266041,-0.186751026,-0.204859798,-0.31590653,-0.036031389,0.042125297,,-0.200310676,-0.386544286,-0.124290916,-0.228862044,0.069501003,-0.348020828,-0.734001809,-0.30907451,0.307881236,-0.194288105,-0.937148467,0.091926002,-0.367045732,0.227111536,-0.274171393,-0.114994409,-0.423440112,0.51229979,-0.037069831,,-0.179268319,-0.191280816,0.089552939 +SNUC5,-0.013364439,-0.715710127,-0.359908855,0.003731255,0.415194192,-0.019778279,-0.538947249,-0.504139587,0.418103211,0.704947042,-0.103296923,-0.236403722,-0.700666191,0.635366088,-0.044877817,-0.491924446,0.092600843,-0.604248365,,0.808198105,0.693072482,0.309253833,0.007384887,0.324954493,0.544133203,0.283027444,-0.451049034,-0.227227714,0.122992363,0.058380448,-0.644130427,-0.296563101,0.233618663,0.104358562,-0.539058033,-0.619602292,-0.989739984,-0.104769075,,-0.162182579,0.016653781,0.827902754 +GSS,0.276958486,0.557645058,1.69258978,0.687353507,0.14894941,0.697391695,0.215153529,0.269137034,-0.550939909,0.027488622,0.650691077,0.628780444,0.838635659,-0.024068004,0.393533063,0.231726527,0.266257696,0.418053611,-4.095496027,-1.896060523,-0.772924065,-0.528872936,-0.989845685,-1.570796442,0.330567507,0.501490887,-0.185146416,-1.514527792,0.658071273,1.831509127,-1.901532304,0.127022162,-1.489199072,-2.59088199,-0.854844789,,-1.319363221,0.234567656,,0.157976993,-0.092025367,-0.705346094 +TALL1,0.080633147,-0.060148872,-0.489416543,1.921577847,-0.540809006,-0.35034889,-0.207691941,0.015817785,-0.720372058,0.609976523,0.725463885,0.358861181,1.300778149,0.433256871,0.045424733,0.468303751,0.275067656,0.820460385,1.904219112,1.295333715,1.439599746,2.633853323,0.637402903,0.628677251,0.954318228,0.49368731,-0.558907254,0.029505916,0.104671314,-0.186826718,-1.375111416,-1.381504711,2.259247843,1.983419646,2.105519219,0.632055081,0.663915538,0.088586353,0.003017598,-0.009430147,0.067200328,0.730723839 +HCC1171,0.091919395,-0.305145531,-0.413212888,-0.47967242,-0.664878863,0.068470907,0.700873652,0.947111624,-1.657978729,-0.95825154,-0.862196673,-0.595493025,0.411097501,-1.792378668,0.161132828,-0.696017466,-1.140376692,-1.01284,-2.35260451,-0.944675701,0.025631938,-0.52384354,-1.195461082,-1.012738849,0.144636586,0.062168783,-0.032097479,-1.445146623,0.325927906,1.10345006,-1.910190108,-0.440871844,,-2.308229474,,-1.809667421,0.14765484,0.068682842,,0.295548958,-0.248657971,-0.372472633 +SNUC4,-0.075211135,-0.453959299,-0.542020807,-0.009657848,0.114053384,-0.085070237,-0.299640448,-0.510167887,-1.040667502,0.656951394,0.525489195,0.186208871,-0.546840756,-0.739811764,0.084633665,0.333878314,-0.055779734,-0.010489312,1.163237085,0.78651167,0.171143209,-0.005204287,0.026609335,0.732341456,-0.04914024,-0.296233482,0.102211384,0.771015214,-0.320995631,-0.843706028,0.075755719,-0.705276181,0.765677891,0.334338117,0.046382811,0.395301782,-0.327776913,-0.015812166,-0.079905168,-0.089100692,-0.001742914,0.240995096 +SNU620,-0.005731903,-0.00780355,0.126740361,0.545432074,-0.121681659,0.112829287,0.502627075,-0.20229743,0.130629434,0.483866504,0.904129376,0.903982961,0.527125084,0.212478238,-0.124388793,0.231960716,0.792213567,0.790407059,,-0.631273532,-1.216649491,-0.794064273,-0.324440351,-0.345664814,-0.560908298,-0.629444964,0.192874789,0.298433044,0.04349983,-0.395270036,0.834266691,0.44806961,-0.649434307,-1.087078969,-0.853354222,-0.36263516,-0.093154392,0.028986458,,0.064372317,-0.112157845,-0.152317955 +ECC12,0.286410675,0.73951083,0.782750525,-2.060614816,0.580487877,0.297132023,-0.451810759,0.367213958,0.505820837,0.804584526,0.518092826,0.09839221,-0.198108157,1.448690724,0.124845891,0.652447308,0.97721615,1.192582533,0.876389948,1.29519213,1.382556689,0.575139268,0.952287916,0.249958668,0.781847594,0.361649627,0.456085233,0.133613492,-0.185474459,-0.041347108,-0.112134207,-0.058340595,0.514437361,0.673935258,0.859431555,0.541920494,0.984091087,0.292238615,0.392362516,0.169307006,0.339020545,0.78504027 +GSU,-0.032543294,-0.205183301,0.994161379,-0.955809325,-0.113813916,-0.076473939,-0.595150762,0.268963103,-0.493240935,0.705171235,0.515394702,0.276132597,0.616325575,0.247154111,-0.145093854,-0.519407946,0.178700447,0.294663233,-5.300862502,-0.256933569,-1.433430884,-1.993468321,-0.899640441,0.309085066,-0.980602188,-2.192362441,0.006214427,-0.088096033,-0.178259571,-1.267699109,0.789295703,0.26994564,-1.023955301,,-2.438761425,,-0.336777863,-0.10644402,,-0.005257707,-0.79618834,-1.218445372 +JHOM2B,0.071287901,0.629397421,0.254785756,-0.130024763,0.145845233,0.673001956,0.924474993,0.305784456,0.059442789,-0.900420252,-0.222539868,-0.363159457,-0.628627483,-0.410465243,0.445730916,-0.33313561,-0.230570775,-0.544502522,,-1.419322437,-0.949371524,-0.451931195,-1.330962204,-1.253766807,-0.314511497,0.276677469,-0.707405529,-0.842866078,0.174311353,0.994122431,-0.441529937,0.665626822,-2.400325445,-1.450279578,-0.704734417,-1.19650664,0.085225171,0.619262836,,0.262654951,0.885394209,0.748273254 +MDAMB231,0.725518883,0.094619559,0.79563617,-0.705999684,0.257401466,0.239452244,0.595928637,1.287368901,0.258283961,0.487383402,0.183611337,0.296541514,0.630351215,0.203084398,0.328927648,0.731860759,0.410926449,0.586846035,1.872609752,0.486991224,0.006088602,0.775845443,0.31033723,0.838020665,0.303566965,0.754525061,0.482869609,0.817743363,0.40088212,0.525147142,0.553624402,0.907885578,0.793743948,0.387814816,0.665116658,0.168875449,-0.089970656,0.824957213,0.772207424,-0.05767253,-1.786637253,-0.63586333 +OV90,0.543217776,0.939134842,0.816768344,0.345552055,0.409795049,0.600121027,0.338260804,0.253959014,0.877632327,1.078765519,0.700484839,0.393071348,0.479275339,0.942284447,0.32512712,0.621764186,-0.077717585,1.138062072,,0.878356873,0.315945336,0.190863949,-0.005109585,1.040865949,0.066282234,-0.384617934,0.261178525,1.091290578,0.233091776,-0.162034131,0.654744498,0.153955433,1.164049154,0.705823132,0.846097469,0.738712132,1.02948621,0.489248496,,0.40044865,0.226568776,-0.117858718 +RS411,-0.25690461,-0.52364142,0.11570067,-0.712019558,-0.614087127,-0.447775251,-0.250120201,-0.532981638,-0.403488074,0.037057568,0.427374065,0.174588781,0.289637192,-0.499967919,-0.182511961,0.12754497,-0.286574896,-0.12934571,1.213290022,-0.104330833,0.556486484,1.26176126,0.092822861,-0.547926909,0.663190561,0.556864923,-0.257541563,-1.126254135,0.270717237,0.929682259,-1.487324511,-0.279595568,-0.096233568,0.626077864,0.512963358,0.083421456,-0.330510562,0.030649354,0.025722332,0.031885147,-0.169608618,-0.14478243 +OVTOKO,-0.336786858,-0.215684185,-0.160413725,-3.382222144,0.218179049,-0.067470102,-0.033727488,0.248683225,0.366360273,-0.442285437,-0.69828083,-0.537864806,-0.32989546,0.200260281,0.065275353,-0.004011443,-0.593751319,-0.192773818,-2.171449417,0.848852077,0.408930272,0.171518187,0.026566091,0.459853473,0.155881152,0.192906169,-0.018575164,0.325268987,-0.260039515,-0.448087387,-0.320245106,-0.462458612,0.612655228,0.101817533,0.845535181,0.769570079,0.200867558,-0.109748151,-0.171792024,-0.137840429,0.012087733,0.038158988 +OVCAR4,0.134795558,0.221660831,-0.048808199,-0.41028269,0.220721955,0.095429465,-0.225640856,0.390049408,-0.392042914,0.023391082,-0.430521772,-1.189216164,-0.558469886,-0.866160737,-0.064429702,-0.490597379,-0.546348175,-0.338316219,0.315030426,-0.146469072,-0.638248375,-1.663723674,-0.987377439,0.056338247,-0.655456513,-0.348588843,0.122605355,0.163915875,-0.097530132,-0.055845532,0.615003753,0.703470915,-0.08467997,-0.667293463,-0.953502832,-1.441895025,-0.567729824,-0.161503609,0.247232217,0.206990762,-0.679314393,-1.672076584 +HLF,0.12281103,0.009012611,0.445671039,1.134718171,-0.192880729,-0.27838482,0.181032988,0.650711443,0.35094438,-0.593546108,-0.617318605,-0.154508715,0.745018153,0.045361279,0.15648041,-0.084991162,-0.024381723,-0.04328042,-2.314862731,-0.492685212,-0.005099312,1.500500017,0.145474946,-0.476003361,0.052080338,0.271182473,0.136348909,-0.002824049,0.000288848,0.437207607,-0.09452039,-0.003471713,-0.192911925,0.303864244,0.750378501,1.482719252,-0.738819654,0.048254052,0.015544924,0.014078384,0.407967384,1.035203237 +HCT15,0.012922574,-0.246561734,-0.006484209,0.330924057,-0.335203952,-0.076719092,-0.013278551,-0.375622102,0.541747943,0.23110735,0.299357206,0.606596792,0.47015312,1.020616083,-0.165606814,-1.380896616,0.680113503,-0.886233231,-0.847396321,-0.754198747,-0.783378542,-0.841500144,-0.838909413,-0.538140723,-0.423173093,-0.379608693,-0.253029008,0.267769173,0.44241994,-0.139801607,0.643152745,0.878666108,-1.36294788,-1.820002148,-1.497597868,-1.414224218,-1.015907805,-0.051286827,0.048139705,-0.265268307,0.194218193,0.656701651 +SW1463,-0.094155959,-0.230128371,-0.116194221,0,0.364097478,0.056924679,-0.004122841,-0.325237779,0.335640051,0.133296627,-0.167196566,-0.309034652,-0.469029722,0.196908689,-0.027344828,0.11838069,-0.175578754,0.029673764,,-0.035105994,-0.776530528,-0.561037116,0.086610522,0.352856489,-0.575583299,-0.540536712,0.103566275,0.321270041,-0.142950105,-0.810193406,0.026195111,-0.012844861,0.015749136,-0.407309184,-0.304069999,-0.042004061,0.302607851,-0.076126906,,-0.071339723,-0.190082831,0.22092526 +SF295,0.044310345,0.177312142,0.562393828,-0.042825423,0.020638333,-0.229401129,-0.075153759,-0.424237596,0.007983313,0.30638711,0.455762034,0.121942022,-0.431621229,0.193686672,-0.07513812,0.891873754,0.072547252,0.602962036,,-0.551693023,-1.315489441,-0.441008718,0.368853457,-0.612041807,-0.928519801,-0.389526976,0.418653774,0.182586806,0.026486868,0.087385444,0.719666318,0.66904867,-0.547175388,-0.303090921,0.167673913,0.793199594,-0.855813436,-0.029523571,,-0.027056981,-0.071416911,-0.485018024 +WM115,-0.003791711,-0.041107623,-0.223492631,0.925839551,0.270897572,-0.071476635,-0.19280437,-0.181402708,-0.127023574,0.280690825,-0.199703385,-0.526557952,-0.588940185,-0.261032126,0.023208626,-0.14647427,-0.395655476,-0.312766535,2.052838488,-0.024579863,-0.093852719,-0.095853504,0.019735035,-0.650176459,-0.124855387,0.347294318,-0.105597643,-1.252294052,-0.000288848,0.700998207,-0.765363422,0.195159243,-0.88148409,-0.448531512,-0.386102135,-0.00425166,-0.785799492,-0.121644297,-0.022905738,-0.073853765,-0.02351939,-0.149806795 +JHH4,-0.339993513,-0.007597267,-0.040907407,-0.271080713,-0.734048995,-0.168101851,0.107623713,-0.35728206,0.350952878,-1.227399306,-0.613479877,-0.06938902,0.138324529,0.11208723,-0.272583782,-0.12134634,-0.661432026,-0.084861845,,-0.711739224,-0.499173219,-0.169722549,-0.101365671,-0.098009864,-0.411753467,-0.190614981,-0.274700148,0.015714206,0,-0.489047093,-0.540923398,-0.477139628,-1.00832395,-0.410494815,0.112464715,0.571514015,-0.222839356,-0.268867091,,-0.359440155,-0.04269387,0.263649434 +OE33,-0.055473656,-0.135984373,-0.087237763,0.065877599,0.457133928,-0.026333556,-0.338325288,0.3553909,0.468810679,0.392417272,-0.349486302,-0.545766589,0.284821021,0.347502335,-0.021815065,0.103089098,-0.389178818,0.327952633,,0.905751086,-0.071595551,-0.427082224,0.14192397,0.901604647,-0.168334929,-0.636763484,0.237247515,0.573282146,-0.20732933,-0.456664716,-0.227553576,0.008016933,0.651968537,0.563169374,0.596488132,0.382658578,0.1713512,-0.109854033,,-0.008085158,0.055326863,0.549166007 +CCK81,0.368242628,0.014471271,-0.270305047,1.262442283,0.085903831,0.677376086,0.230068881,0.042065902,-0.880323155,0.320614742,0.541405706,0.599942054,0.744135099,-0.154382335,0.095981317,-0.12851942,0.65670822,-0.24362831,-6.840873655,-0.582150768,-0.801360372,-1.044754962,-1.444827899,-0.565705958,-0.606701099,-0.728503886,0.061401283,0.132696855,-0.045852604,-0.010800805,0.383286582,0.581783004,0.005083183,-1.48329864,-1.273224992,-1.24846744,0.723972424,0.160449929,,0.073533702,0.039078358,-0.300073209 +JHH1,0.161494532,0.497417924,0.488746585,-0.012385398,-0.013469919,0.240607751,0.215463459,0.796617014,-1.083680574,0.033931985,-0.012442773,-0.006611409,0.486580421,-0.979443017,0.301443594,0.33992668,-0.065301191,0.226570037,,1.892709777,2.387326096,2.711069618,1.463657364,0.425744994,0.273173002,0.52246903,-0.859017571,-1.581745697,-1.899177351,-2.342727667,-2.968459654,-3.33448544,0.71347862,1.90772401,2.522296766,1.653922599,1.711157733,0.244764018,,0.381208076,0.072657643,-0.684666368 +SJSA1,-0.278986573,-0.449590955,-0.423101434,-0.069551458,0.007795827,-0.384512652,-0.687590579,-0.423542477,0.185355047,0.507062229,0.35465592,-0.196212736,-0.692427115,0.597990563,-0.493988316,0.211007081,0.164686907,0.572113114,,0.634928797,-0.005659292,0.296975049,-0.02614391,0.321207558,-0.233360836,-0.371001566,-0.228794692,-0.180162488,-0.196841101,-0.580669614,-0.346659119,-0.557313914,0.822492336,1.025671049,0.951799,0.736132909,-0.175278151,-0.323479124,,-0.295051933,-0.198471621,-0.346244644 +NCIH2228,0.180163925,0.14586567,-0.012185518,,0.013237697,-0.203667562,0.688285618,1.06676512,-0.044615126,-0.98772659,-0.475268271,-0.738071181,-0.283864032,-0.288257898,0.579114197,-0.267637408,0.022577752,0.033736418,,0.972898854,0.452647324,-0.809045381,0.587886953,0.929962339,0.277517774,0.435021591,0.264455216,0.363561902,-0.089050762,0.082200905,-0.779821001,-0.434102164,-0.390494616,0.004866687,0.150326852,-0.1483144,0.765478179,-0.145042404,-0.035712991,-0.040121222,-0.457408785,-0.526069111 +RERFLCAI,0.676371541,0.156841119,0.309787627,-0.101664135,0.548771688,0.101950289,0.561270755,0.979026208,-0.021022045,0.400211153,0.245626455,0.065413001,0.813845515,0.061058526,0.260386502,-0.111897339,0.438962529,0.335858974,,1.561682554,2.203025356,1.813533038,0.838889775,0.738609016,0.722748031,-0.428874348,-0.452731538,0.162875141,-0.034407913,0.01082673,-0.598068363,-0.481205016,0.564726669,0.719013505,0.788986226,0.013031561,1.119890826,0.242195987,,0.319450376,0.023002221,-0.082348668 +SKMES1,-0.219788344,-0.493252767,-0.194749918,-0.296000928,-0.341659922,-0.220550959,0.40814398,0.050536458,-0.522138691,-0.411817956,-0.422788193,-0.058728767,-0.210330257,-0.15585273,0.306926469,-0.298972485,-0.455713195,-0.530899428,,1.163771502,1.985149163,2.092470835,0.925725215,-0.964747079,-0.488408704,-0.152583945,-0.671447536,-1.482374216,-0.906159682,-0.622075272,-1.229884354,-1.091517001,0.523969247,1.366655273,1.395629383,0.039514546,1.239182037,-0.105103295,,-0.156725786,0.047009429,-0.194673868 +NCIH520,-0.246425308,-0.282100254,-0.104467997,0.53887743,0.088945727,0.003627973,-0.577081918,-1.142793646,1.170512977,1.068709284,1.186636013,0.376909347,-0.068369444,1.367635581,-0.018248525,0.351838589,0.778399777,1.00151811,,-0.192114812,0.575481785,0.091935736,-1.314386082,-0.154298928,0.337816664,0.022652375,-0.810374573,-0.802358923,0.828382849,0.948839205,-0.939184339,0.52608677,0.572028855,1.323864286,0.856638723,-0.599886064,0.056146398,0.08040317,,-0.012363049,0.244962774,0.20461044 +JHH5,-0.17990925,0.244892368,0.068855934,0.829536451,-0.991982555,-0.09557265,0.292545143,-0.000433107,-0.391311756,-0.714153973,0.007315658,0.445660065,0.816642627,-0.460994775,-0.418064088,-0.406710927,-0.547480531,-0.819213033,-0.992621404,-2.862535056,-1.996847338,0.609666011,0.001995382,-2.076579294,-0.807474198,0.294890943,0.281111916,-0.307955955,0.134082242,0.247729987,0.13552352,0.510247403,-2.586037258,-1.919921203,-1.142397362,-0.596818974,-0.133628446,-0.156741254,-0.153634767,-0.13217802,0.300221654,0.618209749 +FU97,-0.105064404,0.902892855,0.352593077,,-0.295538904,0.238058608,0.468704523,0.392122188,-0.638193103,-0.386465371,-0.085673529,-0.074074078,0.182060942,-0.596470258,0.646826761,-0.014089594,-0.451831671,0.048935563,-0.845723983,-0.369769231,-0.010471049,-0.659794146,0.502788701,-0.326337821,-0.462537159,0.122563489,1.094860558,0.570394867,-0.555832955,-0.824822083,0.81368563,0.112871825,-0.146659217,-0.004866687,-0.5991509,0.035808149,-0.380644157,-0.094472486,-0.076060291,0.065124154,0.156919968,0.809990132 +COLO800,0.031022299,0.074811296,0.135147343,0.577879011,0.210594746,0.056718948,-0.341562256,-1.031533566,0.716337917,0.419197213,-0.085315004,-0.104452811,-0.409503774,1.190288395,-0.006581728,0.042205359,0.382858664,0.488280746,1.468355933,-0.164791692,0.418528925,0.3734502,0.221668617,-0.280023946,-0.526648554,0.717909091,-0.147038163,-0.189230915,-0.461647918,0.169359741,0.415355845,-0.024425647,0.176127615,0.732782961,0.605576487,0.120184956,-0.338409014,-0.31129958,0.38248577,-0.064055542,-0.450500296,-0.42606875 +NCIH1963,0.021378302,0.307821423,0.017641722,0.266629355,-0.139021582,-0.551817165,-0.544403162,-0.73329606,0.068265356,0.789498236,0.454269219,0.431162394,0.385090181,0.61154216,-0.294893073,0.007576954,0.218419513,-0.055077555,,-0.779151212,-0.031990953,0.241792933,-0.787903635,-0.821663838,0.047520429,0.201377939,-0.626906279,-0.478138982,-0.067451636,0.018170354,-0.013677044,-0.457043959,-0.877547111,-0.054192208,-0.042299736,-0.783334388,0.325707898,-0.173740053,,-0.14437445,-0.432501941,-0.934367144 +RL952,0.110137208,-0.557244537,-0.641034107,0.24043907,0.214849392,0.351554173,0.246457487,0.270273724,-0.161744598,-0.198970752,-0.005417482,0.089391011,0.015640485,-0.457118719,0.038672594,-0.015750427,-0.147778852,-0.374323119,-1.842170906,0.363284998,1.210647993,0.908617448,0.66666047,0.000881718,0.896478754,0.831660659,0.246729546,-0.112341313,0.485289857,0.286600445,-0.777339072,-0.221460424,0.221619385,0.454488862,0.511767131,-0.147420129,-0.055994659,0.051919224,0.353360603,-0.018676606,0.032120908,0.044963671 +HCC15,0.194538292,-0.025472011,-0.001028761,-4.961805585,-0.405226406,-0.099291496,-0.670644426,0.932370249,-0.206974154,0.097433798,-0.087167722,0.063897155,0.364013571,0.282479349,-0.529607111,-0.153492302,0.195123355,0.269921527,-0.14016803,0.633021744,-0.95862087,-2.701528964,-0.128701752,0.721490273,-0.812079031,-1.056242509,0.524714539,0.202473046,-0.060767427,-0.406381552,0.464644603,0.418577415,0.191721529,-0.353939152,-0.595174614,-1.12838569,0.51919058,0.078060239,0.226949966,-0.354248396,0.049566518,0.204894651 +M059K,0.467063956,0.476090325,0.54726206,0.254300809,0.925264275,0.187431067,-0.147574454,0.732566026,0.637744641,0.592850237,-0.122260802,-0.545629528,-0.551610958,0.243596143,0.219934812,0.596102205,0.349680392,1.03259011,,1.223479811,0.778032495,0.793978902,0.834481228,0.852424084,0.66552099,0.545835947,0.263592951,-0.207493159,0.131211456,0.163724427,-0.438734033,0.177264318,0.811760191,1.29219965,1.465607686,1.216894486,0.855034663,0.174143821,,0.071847615,0.547946657,0.445406361 +CALU6,0.29883237,0.460625251,0.05171746,-0.021889287,-0.047378287,0.257625665,-0.081443353,0.874687783,-0.783961257,-0.095578567,0.068704055,0.316588035,0.48276357,-0.62514346,0.209587882,0.061186206,0.341745029,0.265175953,0.879483292,-0.578024348,-0.585671849,-0.882562694,0.515793864,-0.208559468,-0.434554728,0.685197321,0.768918757,-0.245492252,0.323782557,0.265079282,0.494258132,0.639315907,-0.731738281,-0.510166268,-0.701600476,-0.372722236,-0.041424206,-0.027124907,0.073126459,-0.199521349,0.266550105,0.637721445 +SKLU1,0.203082125,-0.148487721,0.385210684,-0.003796439,0.620249033,0.235844309,0.025839299,-0.13679648,0.622704503,0.006614699,-0.352137799,-0.73673132,-1.249939082,-0.005171802,0.208712759,-0.364302653,-0.641193838,-0.376788381,,-0.340561866,0.372862808,0.318784555,0.114557427,-0.583829226,0.507328496,0.678257227,-0.051574073,-1.079978102,0.357324777,0.766294827,-0.937994608,0.003380355,-0.879560056,0.001619868,-0.07891048,0.177292865,0.152171637,-0.044352679,,-0.012933125,0.1513775,0.111741337 +SW900,-0.373943073,-0.793450456,-0.356847685,0.384565857,-0.944163213,-0.482199371,-0.487333152,-0.615433844,-1.320329792,0.073102264,0.373138052,0.828185975,0.451601081,-0.582405469,-0.215771694,0.40879201,-0.342269929,-0.051627096,,-0.846664428,-0.500335564,-0.455578763,-0.968330342,-0.859183362,0.059652162,0.65432899,-0.223917894,-1.055332956,0.103399405,0.566804116,-1.630184449,-0.461338786,-1.17500552,-0.651093104,-0.418534575,-0.922102988,-0.170457682,-0.19964865,,-0.223885136,-0.050215483,-0.298678654 +UACC62,-0.153030469,0.153952282,-0.27638512,,-0.108589534,-1.056702268,-0.108698373,-0.179366512,-0.042803229,-0.160494736,-0.235462436,-0.122559038,-0.016674808,-0.241931722,-0.121307342,-0.425728221,-0.486059558,-0.577384936,1.416692726,-0.902493136,-0.703710883,-0.226342471,-0.686859325,-0.838859984,-0.713356054,-0.007960087,-0.10958736,-0.154870479,-0.013283921,0.367818665,0.592476598,0.856228409,-1.028069479,-0.642109079,-0.451974992,-0.197743807,-0.848245783,-0.011367356,0.012538264,-0.186790124,0.145341166,0.137108167 +MFE280,0.022647144,0.331806072,-0.603891161,0.132210979,-0.360323804,0.162026026,0.243772799,0.199627404,-0.018706471,-0.681841256,-0.29901276,-0.060795077,0.012035779,-0.369544717,0.179656046,-0.745979785,-0.095382571,-1.011489473,,-1.466200828,-0.90474124,-0.320491858,0.442651084,-1.20706588,-0.438245124,-0.199872709,-0.125097233,-1.416335024,-0.29048846,1.171058614,-1.216020498,-0.895788946,-2.596273522,-2.008990424,-1.164270716,-1.428319659,-0.116154369,0.004415464,,0.014498877,-0.293089982,-1.416570185 +MFE319,0.334756086,-1.618991263,-1.389965391,0.472367043,-0.25535042,0.212804753,0.684338683,0.141496787,-0.446427016,-0.599526538,-0.407733938,0.02507366,0.438703905,-0.739974048,-0.127185809,-0.042912176,0.515241365,-0.422954981,-0.425685031,-0.903219728,-0.608429298,-1.236770018,-0.736533481,-1.006854657,-0.025715523,-0.686215692,1.294438173,-0.955263393,0.399238714,0.999132122,0.095362074,0.443116869,-0.745815121,-0.650535411,-0.496931304,-1.910879458,-0.70743155,0.17593567,,-0.092209003,0.506006588,0.921179439 +MFE296,0.007749242,-1.372353507,-1.014837867,0.27896451,0.345299795,0.356009672,0.103885432,-0.479857611,0.333274093,0.169859072,0.140838765,-0.163854835,-0.639470737,-0.172561546,0.178627101,-0.267675844,-0.138835457,-0.581350002,,1.143466847,0.71397295,-0.042745591,0.244623545,0.988051287,0.227953787,-0.900107871,-0.081302745,0.460052232,-0.129732634,-0.856341347,-0.181516252,-0.324999136,1.695569971,1.15696737,0.869076188,0.159361628,0.498083974,0.03717021,-0.045481331,-0.029012016,0.192627395,0.815546901 +GOS3,0.194280728,0.336491276,0.436635948,,0.516813689,-0.01841992,0.413440785,0.20183825,0.94875482,-0.701826612,0.173559514,0.599196923,0.332573713,0.815913184,0,-0.061283463,0.407643661,0.758525546,2.938268682,-1.035461439,-0.204780302,-0.380063064,0.363124743,-0.442838435,-0.148839846,-0.472210393,0.307541573,-0.494315443,0.648587036,0.578779636,0.893797908,0.778770021,-0.688045643,-1.031689089,-0.534476728,-0.087183227,-0.390814995,0.219643692,0.576404629,-0.095869145,0.305685252,0.48265897 +GI1,-0.131992873,0.224617858,-0.105299159,1.219517282,0.068222192,-0.128108936,-0.738232217,-0.760459962,2.179395112,1.106266704,0.373547549,-0.17098203,-0.642453866,2.206248092,-0.233926585,-0.373609616,0.769385519,0.223089142,2.582876138,0.338430878,0.446949347,0.382837227,-0.231755339,-0.154682009,0.374951819,0.635510593,-0.434723476,-0.019089616,0.148096994,0.016509525,-0.244206336,-0.219729867,0.933353669,0.528384334,0.092694915,-0.297117932,-0.205339257,-0.122319321,0.096870193,-0.187441118,-0.217929732,0.094708758 +PC14,0.016964538,-0.276041364,-0.046909103,0.126382207,0.763794852,0.530862813,-0.000742748,-0.999770944,-0.079045949,0.383442612,0.442988051,0.29543065,-0.389031614,0.001790282,-0.025013039,1.12281523,0.018037362,1.034438323,,0.321551051,0.476210568,0.771366795,0.8770693,-0.142433921,0.114803421,-0.034150979,0.552049935,-0.003255226,0.303011649,-0.507563466,0.024357156,-0.517463075,1.609911863,1.437208832,1.293498379,1.717574443,-0.578776798,-0.061667675,,0.323645705,0.27165879,0.036365479 +KYSE410,0.083227302,-0.207436546,0.086896006,-4.995509993,0.11799175,0.230166045,0.193178689,-0.232678539,-0.148157686,-0.165160091,-0.160639895,-0.219868118,-0.395117778,-0.678199321,-0.137998589,-0.127907767,0.119120558,-0.085975456,1.990494949,0.049701156,0.506761891,-0.03447525,0.163991589,0.055584242,0.379517205,-0.411726911,0.071768579,0.057084442,0.31712774,0.201063346,-0.284621395,-0.06212376,0.964034519,0.788774223,0.341999039,0.20296684,-0.538009427,-0.042232914,-0.175122834,-0.054277602,-0.163641108,-0.188622278 +A204,0.200946279,-0.311432478,-0.487779098,-5.158972188,0.224976489,-0.61254866,-1.096364075,0.205691665,-0.06117523,0.468690844,0.302036885,0.71698112,0.339354837,0.045356602,0.496951439,0.119308336,0.670364,0.320984481,0.355747953,0.660208225,0.791770429,-0.197092807,1.286114956,0.385401703,-0.005580027,-0.915889095,0.509154737,0.517572799,0.215397268,-0.52708125,-0.143990649,0.104545468,0.881582967,0.790107762,0.744849006,0.515776696,-0.293751126,0.021062846,0.063200857,0.211393867,-0.154566027,0.249874728 +PATU8902,0.042475937,0.092704948,-0.00817149,,-0.196843888,0.088667221,0.035596335,-0.390506678,0.379935065,0.259710712,0.194890704,0.367965307,0.154741476,0.770990209,-0.03982214,0.01397039,0.617301025,0.633584543,-0.826464687,-1.294821092,-0.402171053,0.00122921,-0.299597281,-0.990942874,-0.092643837,0.631936606,0.037341264,-0.323565428,0.099972434,0.624378523,-0.066352001,0.358819378,-1.362485294,0.36349519,0.547230155,0.515226001,-1.241635398,-0.006250401,0.033299218,0.068049954,-0.129805738,-0.448572434 +NCIH810,-0.197987414,-0.20448553,-0.546474553,0.48303584,0.363874708,-0.698960786,-0.657203313,-0.827307767,2.197952073,0.819938717,0.420236075,0.073458969,0.1574731,1.849573225,-0.427946123,0.251746952,0.587404499,1.073694919,,0.134431888,0.771241274,0.712205499,-0.592569808,0.013257523,0.488409105,0.492226176,-0.770631334,-0.360490922,-0.090753445,-0.192864629,-0.735210004,-1.265608546,2.042746373,2.200186381,1.760351793,0.270109355,-0.026127212,-0.213319479,,-0.187931511,-0.349671512,-0.688451675 +RERFLCMS,-1.25080497,-0.963189241,-1.243696584,-3.677527069,-0.758525107,-0.842579256,-0.872436123,-0.325124012,-1.303448276,-1.413413616,-1.835378589,-1.940191492,-1.439632827,-1.798505354,-0.815144134,-1.096110255,-1.653685337,-1.368126498,-0.099462083,-0.125842667,-0.461182757,-0.089029044,-0.042147493,0.029895852,-0.534646987,-0.341334571,-0.088912471,-0.069158953,-0.524882148,-0.304551244,-0.317699351,0.034010835,-0.474336295,-0.522512663,-0.178062066,0.17188564,-0.209378622,-0.234226816,0.031397175,-0.24483909,-0.032973027,0.278208367 +L1236,-0.272160991,0.175358967,0.825146832,0.25630595,0.56048686,0.351080964,0.228590858,0.472897177,-0.075792934,-0.131393145,-0.346951218,-1.086579783,-0.619009057,-0.305440959,0.16471588,-1.092898533,-0.618081082,-1.409103395,0.548603578,0.189658438,-0.901421794,0.186251241,-0.001001803,0.398116641,-0.814149422,-0.213988976,-0.472586584,-0.004511912,-0.396147562,0.033784332,0.905848679,0.223721149,-2.306727062,-2.047021046,-0.73479014,-0.000827485,0.623987401,-0.155095209,0.052836249,-0.026941658,-0.224951181,-0.361995781 +DANG,0.065548035,-0.305236394,-0.058976244,0.245434198,-0.311304374,0.032642286,0.486895423,-0.225042982,-1.251843604,-0.206712873,-0.355086596,0.039971099,-0.121169856,-0.968347734,0.336422455,-0.333440901,-0.891182129,-0.991152042,3.09915815,0.133297328,0.40415408,0.054350555,-0.342822362,0.002851996,0.470616439,0.066372007,-0.026235275,0.232831659,0.230633893,0.136698723,-0.909697692,-0.337401055,0.571742506,0.155333289,-0.388566034,-0.490102225,-0.21864654,-0.068840054,-0.028489419,-0.109684409,-0.036984081,-0.291748758 +NCIH460,-3.603264415,-3.809710319,-4.38417549,,-3.644726968,-3.753481262,-3.670030613,-3.703597843,-3.494458431,-3.227812293,-3.536108231,-3.610174697,-3.554413828,-3.011314703,-3.857591408,-4.330411174,-3.219292329,-3.790148437,,-0.420766717,-0.541512151,-0.376116948,-0.079386724,-0.165149412,-0.256997814,-0.018689166,-0.119736465,-0.028727272,0.187660773,0.072398457,-0.324663878,0.276926494,-1.687813671,-1.365206081,-1.051006885,-0.811340239,-0.953060547,0.054976646,,0.065125083,0.197320517,0.199882992 +KYSE140,-0.048049503,-0.199551717,-0.415667797,0.093205141,0.198816387,0.27288445,-0.15751402,-0.138235722,0.129006837,-0.219908632,-0.055520455,-0.298462283,-0.509729452,-0.387031185,-0.220986035,0.466578115,0,0.191846064,,0.574979211,0.277759933,-0.123761292,-0.045900174,0.208300489,-0.032480874,-0.245406493,0.137515833,-0.075997618,-0.095852668,-0.157632657,0.491621837,0.133847128,0.859319982,0.184826931,0.146209985,0.268551707,-0.733347716,-0.035763662,,-0.165184983,0.027401896,0.02342766 +KYSE180,-0.058815563,-0.460419694,-0.249813418,-4.17710046,-0.23457973,-0.04455128,0.076502898,-0.285875055,0.050686594,-0.065034384,0.001098075,0.325175007,-0.026588564,0.056039977,-0.245358935,0.151288132,-0.109560151,0.095094609,-0.07086509,0.633861764,0.502432065,0.209616999,0.42240981,0.328569188,0.321259196,-0.412181314,0.037402514,-0.133583968,0.189850183,-0.096590368,-0.432064266,-0.260749414,1.159362457,0.91712413,0.504646416,0.363047505,-0.001502875,0.028024973,-0.071584932,0.038171862,-0.465185598,-0.526137909 +HUPT3,0.633506858,-0.440624684,-0.350072599,,0.07625941,0.157931199,0.044645524,0.255509516,-0.245279214,-0.227320795,-0.265325571,-0.275964328,0.109882615,-0.301447422,-0.216745267,-0.857375813,0.128899282,-0.45749448,-1.811441705,0.019572882,0.701421001,-0.13501439,0.702587227,0.035789989,0.534124809,0.843420873,0.959772545,-0.16613006,0.00563418,-0.044161571,-0.014280201,-0.074546177,-0.48449411,-0.168859419,-0.781707445,-0.66391407,-0.625117994,-0.098979757,0.014543851,-0.091648429,-0.224643774,-0.404675398 +EFE184,0.104364249,0.441337032,-0.80284046,,-0.074238912,-0.069448154,0.489005213,0.97596264,-1.240631705,-0.499931985,-0.262170188,-0.062837831,0.516214712,-0.733380565,0.1188402,-0.967291385,-0.829078301,-0.297595729,,-1.348562245,-0.10368081,-0.436750028,0.019566922,-1.32477449,0.068555811,0.698651379,0.114584056,-0.322612086,-0.158875764,1.233530905,-1.025408568,-0.087941977,-1.15411554,,-0.141233721,-0.09010071,0.107386815,0.298188039,0.245337041,0.30127379,0.638391525,0.971972676 +GCIY,-0.265888906,0.195532244,0.172706104,0.47176846,1.265736511,-0.135548748,-0.567729229,0.44816747,0.723754047,0.361390531,-0.269619197,-0.572793949,-0.137906527,0.648575132,-0.05196922,0.107499479,-0.188846876,0.768874039,0.182575002,0.49655969,0.756272665,1.010818901,-0.608103254,0.363337508,0.648741846,0.69116195,-0.453035036,-0.708824899,0.337643047,-0.001150156,-0.766711076,-0.486028196,2.108371262,1.638226424,1.44353918,0.316576105,0.23376473,0.106773216,1.398899357,0.113434731,0.376423551,1.557737061 +SH10TC,0.373671775,0.6015743,0.456246988,-0.19945072,0.134524814,0.358501457,0.380338358,0.4367724,-0.673250733,0.061228009,0.093720936,-0.306148976,0.076370407,-0.595015457,0.424582386,0.134143723,-0.096492977,-0.070386744,1.545686344,-1.106656406,-0.498220243,0.680195563,0.790818278,-0.659760404,-0.285227698,-0.633721881,0.527534258,-0.089949673,0.015884787,0.243931146,0.611536888,0.78751589,-0.919778882,-1.055638221,-0.0184897,2.330390094,-0.323348212,0.293308562,-0.309960964,-0.102367254,0.35240522,0.999325146 +HCC2218,-0.381898927,0.328464609,-0.169163088,-0.135827021,0.335268359,-0.147539221,-0.619556961,-0.214508445,-1.412860961,0.534896497,-0.083174319,-0.553394264,-0.23134373,-0.717616235,-0.032159544,-0.69776808,-0.960329067,-0.900306896,1.784611997,-1.089706399,-0.955716018,-1.454462731,-0.485303765,-1.046358325,-0.770831984,-0.015730481,-0.493163274,-1.198576423,-0.163942144,0.360401688,-1.544837785,0.108183975,-1.062871776,-1.246023737,-1.359748186,-0.806857432,0.185356476,-0.379412806,-0.021708801,0.38029102,-1.122794836,0.060775271 +KMS21BM,-0.100361383,0,0.701962769,-1.066057091,0.490510529,0.267159992,0.198285798,0.324228105,-0.133030612,-0.397113633,-0.48762552,-0.497684607,-0.720368773,-0.719414047,0.341362149,-0.373050954,-0.307795801,-0.913207918,,-0.195910971,-0.025548286,0,0.259102159,-0.10148351,0.043239603,-0.26624907,0.239752105,0.047456298,0.009165737,-0.025843631,0.29478794,0.510220715,-0.569463527,-1.424359291,-1.230912414,-0.593414387,0.400618031,0.028210411,,-0.003449954,0.205044005,0.605040929 +KMS26,0.407669433,-0.511696448,0.001088399,0.338573662,-0.026236497,-0.161621993,-0.056230304,-0.390003179,-1.112078946,-0.063409483,0.125110346,0.146118287,0.115503865,-1.145619427,-0.015719303,-0.039868785,0.113110007,-0.247984739,-0.087599807,-1.024498497,0.140298312,0.623051449,-0.577306016,-1.633653648,0.290957607,0.78615773,-0.2876504,-2.244381951,0.357636138,1.541487583,-2.264507064,0.114213127,-0.821447265,-1.602184402,-1.273223636,-0.093133495,-0.943234133,0.013484838,0.20197135,0.043040664,0.187694523,0.283690228 +KMS27,-0.037123038,-0.129158485,0.655344928,-0.206674651,-0.272321996,0.069252211,0.299473825,0.086493296,0.021942469,-0.336388508,-0.040189399,0.40677687,0.195014917,0.032233346,-0.019930066,-0.698223048,0.063539273,-0.637295524,-0.114668541,-0.12017833,-0.72393856,0.864543194,0.224528416,0.271034474,-0.30159377,-0.540946748,-0.436890898,0.893090256,-0.026948012,-0.248350398,1.151576888,0.74329761,-1.027478058,-1.573878037,-0.983234136,0.348809562,-0.023583051,0.046488305,0.045533323,0.120358662,-0.163375881,-0.472765267 +KO52,0.50144459,0.304679825,0.196662753,0.665410486,0.205793343,-0.171193608,0.601899585,-0.361685882,0.513774934,0.443172374,0.363072766,1.110032221,-0.09541805,0.864488518,0.058426653,0.050434271,0.793381262,1.058148061,-3.469438761,1.09096074,1.15394657,2.497318293,1.123180274,0.664677784,1.056281889,0.248200239,0.325604158,0.142038285,-0.032512529,0.327485482,-0.658350885,-1.822221885,1.110676782,2.252069277,1.339864528,0.09266115,0.742006057,0.17401363,-0.026890086,0.041016681,0.317383604,0.857316176 +KMS28BM,0.186173101,-0.372893132,0.231724539,0,0.012562079,0.113455488,-0.127226364,-0.114087269,-0.367858622,-0.096405036,-0.049949446,-0.3279669,-0.183959817,-0.738966822,0.03222484,-0.01783022,-0.50055165,-0.668797904,-0.347604162,-0.958043159,1.066810872,1.790146702,-1.027991979,-1.715618891,0.842104261,1.491102123,-0.892425754,-2.494892763,-0.351869139,1.288533429,-2.964722099,-1.13262636,-0.575549791,-0.886995967,-0.271172836,-0.946168854,-0.587747942,-0.036901194,-0.021902418,0.162036234,-0.254250127,-0.377395529 +KNS60,-0.037927959,0.15768689,0.385658708,-0.062776212,0.414048727,-0.22361171,-0.110608156,0.348934498,0.846299519,-0.126871147,-0.594286414,-0.632465617,-0.160695451,0.795310617,-0.056754766,0.104701662,0.346909011,0.226352049,1.517114077,2.170223912,1.628748803,1.396264672,0.927904402,1.20467778,0.509619752,0.066790627,-0.478361923,-0.071788649,-0.975843228,-1.67514616,-1.576020725,-2.169529396,1.363568373,1.33201302,1.400275461,0.981819339,1.121950999,-0.037829603,0.072054555,-0.410332999,0.107817305,0.228206183 +KNS81,0.218139649,0.851066058,0.723364107,-0.062829334,-0.00677628,0.414509964,0.543483283,0.319886072,1.094428772,-0.605018933,-0.272146751,-0.234546098,-0.19965448,0.750278185,0.160212822,-0.425324039,-0.013978113,-0.336235032,2.289422896,-0.951262388,-0.530553198,-0.260473432,-0.070671385,-1.00905565,-0.763773861,-0.089482278,0.427517411,-0.025883508,-0.132664828,0.149690427,0.893508656,0.701092488,-0.943120443,-0.482004595,0.007917998,0.002774585,0.229472299,0.084033175,0.10816262,0.106544702,0.452495943,0.41231642 +KPNSI9S,0.176097606,0.279393767,0.329379664,-0.106015819,-0.408358404,0.055415994,-0.054674467,0.361922326,-1.262121534,-0.191805062,-0.162815624,-0.137424544,0.135379698,-1.176130147,0.074248561,0.015548769,-0.363035437,-0.157254569,,1.808089802,2.166591678,2.634177741,1.371933544,0.166099573,0.141067576,0.197510571,-0.865061237,-1.790605976,-2.127365283,-2.495385948,-3.087253343,-3.502840293,1.06503352,1.595771644,2.158498615,1.432218848,1.324064368,0.055108989,,0.048617472,-0.10459902,-0.714216534 +LU99,0.170730115,-0.070525496,0.614965426,0.381509922,0.361140487,0.078725419,-0.071200039,0.436789871,0.207112825,0.399075374,0.338540357,0.308730289,0.123813952,0.356372043,0.207940274,-1.034517777,0.714879831,-0.530357998,,0.678479407,1.645855131,1.687284453,0.970305421,-0.131424309,0.998928754,1.355491953,0.49852551,-1.650301042,0.045434057,0.231200477,-2.528156381,-1.513727421,-0.130511217,0.130338107,0.286295418,0.231541065,0.842563586,0.113735389,,0.052479831,0.039685036,-0.089589767 +KMS34,0.173833962,-0.18609473,0.344039644,0.317510872,-0.010678018,-0.180460298,0.298351363,0.196529909,-0.427725981,-0.130819857,-0.140096208,0.50902494,0.920546416,-0.466503399,0.208868465,0.103245652,-0.076538345,-0.468343801,-1.338710628,-1.487130247,0.338710137,1.74746921,-0.521059926,-2.072884955,0.265445928,1.327729207,-0.134976559,-2.747543935,-0.576055854,1.53430356,-2.066722546,-0.78289009,-1.239922674,-0.295615312,0.380380717,-0.868237637,-0.728541398,0.105777749,0.07225418,0.251056186,0.021362939,-0.453745977 +MKN1,0.167536552,0.529678537,0.752867477,-0.16000042,0.049071449,0.256383179,0.467855844,0.61048434,0.059440079,-0.615808095,-0.52911342,-0.585452646,-0.660947247,-0.250340077,0.045875029,-0.989387002,-0.922037836,-1.535878903,1.179853516,0.828884649,1.33577247,1.346472128,1.20682292,0.269242735,0.697106862,0.596809137,0.435351014,-0.75346747,-0.134729836,-0.44671744,-1.023422779,-0.462350777,-0.662388262,-0.062834028,0.004969325,0.177359984,0.434263396,0.028977168,0.183655328,0.243330053,0.189531771,0.051102582 +MKN74,0.034329492,0.261486044,0.263616675,0.146742369,-1.799844851,-0.565139531,0.203210183,0.743445446,-0.940610026,-1.3425412,-0.306192893,0.884200172,1.64111753,0.013119365,-0.002964996,-0.495584858,0.77188283,-0.373301163,-2.320132757,-1.206011813,-0.430428026,0.36595433,0.291649751,-0.434306962,0.194529931,0.342423316,0.397919903,0.001937374,0.64924394,0.00738813,0.49415874,0.561694644,-1.558395926,-0.83892541,-0.281134633,0.079291838,0.162699103,0.082328399,0.117466478,-3.62E-05,0.015938788,0.077033055 +KP3,-0.295931992,-0.005618976,0.022082616,-0.435970632,-0.703376549,-0.179267824,0.101550534,-0.243066127,0.328605611,-1.009441275,-0.595596366,-0.042371159,-0.166707377,0.207237666,-0.361030172,0.021583096,-0.686500975,-0.143918451,,-0.779818704,-0.538218006,-0.109885323,-0.248167697,-0.168389256,-0.365288468,0.00513433,-0.194723297,-0.130205542,-0.122090024,-0.150596971,-0.558321945,-0.470991726,-0.32392018,-0.365081707,0.346477097,0.584034508,-0.363429174,-0.420299888,,-0.481816486,-0.124136475,0.272191099 +NCO2,0.272238543,0.311401559,0.158874361,0.319796696,0.649693148,0.028826056,-0.003676688,0.093602607,0.395436976,1.393657116,0.653758016,0.197106385,0.411885298,0.935374578,0.118389,0.085980097,1.735252346,0.731069532,,0.039350566,-0.082838423,0.070267364,0.817342229,0.511361712,-0.147241126,0.160330983,0.157818994,1.216413414,0.138680938,-0.55154912,1.136819167,0.324070098,0.658032417,0.145336697,0.1103331,0.562586089,-0.835160971,0.320779123,,0.245514282,0.395804234,0.836618249 +KHM1B,-0.24236101,-0.283271734,-0.037112227,0.526016047,0.377670078,0.095016579,-0.875697686,0.056394586,0.169757881,0.649494035,0.115182422,-0.802677355,-0.624367584,0.089552353,-0.300784928,-0.50687253,0.120277712,-0.465747373,1.261244509,0.364978642,-0.140105973,-0.181754677,-0.374549754,0.343516084,-0.514824946,-1.415487587,-0.623559241,0.730017839,-0.161649046,-0.70212979,0.504716383,0.149080585,0.0908373,-0.255303512,-1.282264675,-0.611025304,0.232724922,-0.186530006,-0.409745546,0.022253182,-0.221163562,-0.324209788 +HSC2,0.039201912,0.072212012,0.157989995,0.111661776,0.167286296,0.35296076,0.208101553,-0.326107723,0.726508187,-0.19254036,-0.191827321,-0.234720764,-0.698929047,0.485123593,-0.097725999,0.004011443,-0.118425152,-0.598562083,-0.58639303,0.429776508,0.207451686,0.188101449,0.297633082,0.043586691,0.357927629,0.125674561,0.167823121,0.880351453,0.647966584,-0.242133345,-0.255981234,-0.359456754,-1.031422385,-0.683721915,-0.176211696,-0.529236537,-0.383363119,0.09347861,0.037496213,-0.035555943,-0.264941274,-0.687792515 +KG1C,0.21103356,0.466197132,0.119742527,-0.284450971,-0.162118537,0.500996789,0.655702243,0.003485325,0.024476523,-0.930293714,-0.516199195,-0.569956866,-0.97013202,-0.630918286,0.343927218,-0.465912932,-0.259933747,-0.596203705,,-1.605647156,-1.008415538,-0.561278352,-1.320807301,-1.395054002,-0.500537935,0.14931045,-0.715043416,-0.988238707,0.081771139,1.018736665,-0.638485601,0.453738642,-1.984507989,-1.85143646,-0.824945237,-1.207090208,-0.252692134,0.116858006,,0.000245985,0.47837502,0.717698894 +HUH7,-0.114237931,0.555209369,0.329579208,,-0.993802943,-0.489622961,-0.049393984,0.254129626,0.124098703,-0.535404148,0.065701925,0.635642389,1.234998601,0.447270079,-0.352790789,-0.408357926,0.700893275,0.310627292,0.710043711,-0.809632007,-0.669174265,-0.227351705,0.454978165,-0.314755023,-0.040994414,0.254166435,0.433758156,0.039229783,0.349326854,0.194234748,0.011369719,0.032796512,-0.576852445,-0.522756785,0.007156925,0.296007912,-0.976992163,0.023120208,-0.040404174,0.078234034,0.30999293,0.285113136 +KMRC20,0.019405249,0.537412716,0.807454695,0.016332761,-0.475781131,-0.18693978,0.043731403,0.41370674,-0.481287722,-0.222629823,0.0168063,0.277581182,0.713829917,0.29543056,0.079682323,0.271635844,-0.095770764,0.308463458,-2.7818893,-0.106618733,0.276508574,-0.282072356,0.272124079,-0.553500221,0.358771058,0.647381994,1.168320448,-0.419184035,0.39011517,0.324690376,-0.4514102,-0.036342807,0.294563841,1.045129281,0.527052606,0.605225033,-0.301358999,-0.103883985,-0.231841966,-0.026431944,-0.260736823,-0.298363963 +HUCCT1,-0.120406742,-0.256458012,0.083740671,-0.277379561,0.431786682,0.138763977,-0.168575799,0.301846466,0.473385572,0.068944853,-0.120144961,-0.64785628,-0.446815476,0.560153584,0.177173365,-0.679174922,-0.404650597,-0.527315252,,0.165676996,0.66437126,0.069409787,0.160208445,0.577222558,0.15094794,0.14535902,0.053453381,-0.313283868,-0.005490494,0.294305196,-0.86642924,-0.053848049,-0.652597645,-0.277290474,-0.334457518,-0.362958806,0.235382715,0.123724924,,-0.061554579,-0.148435438,-0.672122845 +KIJK,0.090451456,-0.820806046,0.226299102,-0.116202995,0.084763763,0.138700801,-0.031479173,0.225915407,0.440009778,-0.197352376,-0.180676954,0.090901727,-0.047930031,-0.148293908,0.154995559,-0.073429354,-0.06011125,-0.35896736,,-0.382742781,-0.636843733,-1.049922278,-1.882524937,0.357913162,0.056084792,-0.244143274,-0.526779413,0.249626332,0.498465938,1.026923039,-0.786931044,0.305704876,-0.362655532,-0.84487213,-0.852791597,-1.66875234,-1.209949779,0.141556334,,0.209154488,-0.345801904,-0.923043163 +A4FUK,-0.111777325,0.238732416,0.815467859,0.674503375,0.412203338,-0.13355305,-0.674490016,0.45284035,0.53796402,0.305455792,-0.564413598,-0.704570295,-0.354397908,0.591094156,-0.095958067,0.876458861,0.142113288,1.04908024,3.652478283,2.077795088,0.751501925,0.15360779,-0.116716355,0.925928178,0.069262933,-0.350747556,-0.14616092,-0.148146177,0.175065633,-0.418399268,-0.173170223,0.491057485,1.904718138,1.055002214,1.292028217,1.052485077,0.010423317,-0.124715014,0.52384881,0.035747988,-0.286768839,-0.54500792 +KALS1,0.136586159,0.074206859,-0.061962991,-0.385781589,0.009090702,0.220681174,0.871911595,0.660126608,-0.364107836,-1.05592705,-0.769098545,-0.223077121,-0.551703736,-1.02446469,0.272221258,-0.054168113,-0.498923758,-0.781035572,,-0.009349913,0.12070824,0.008036147,0.176274935,0.044736614,-0.018343633,0,0.255049132,0.407687647,-0.413337777,0.079933941,0.33896549,-0.032232604,-0.811678237,-0.858268411,-0.679289704,-0.526674886,0.351643938,0.206860753,,0.04182463,0.089771601,-0.356001033 +HEC108,-0.072146925,-0.331571687,-0.659979871,-0.100186653,0.41217405,0.336257891,0.312393923,0.463076194,0.500508149,-0.294917459,0.063379439,0.311498267,0.180479062,-0.276488841,0.338026576,0.465863215,-0.088676961,-0.234133333,-1.066621816,-0.620245108,-0.330271152,-0.559043076,-0.14640455,-0.003861297,0.063225788,0.360739875,-0.123732104,0.568043845,0.778264811,0.620437561,0.395603929,1.201410048,-0.604755749,-0.722956347,-0.485510101,-0.427154331,-0.249247442,0.43887381,0.912749395,0.21002373,0.620366427,1.271104608 +HEL9217,-0.289620828,0.636314075,0.70062861,-0.200333442,0.427141018,0.175451251,-0.18975624,-0.03685771,-0.193311503,0.170904474,-0.006677289,-0.30525242,-0.650656546,-0.058482589,-0.140036843,-0.304498473,0.217394256,-0.147188573,-3.214810939,-0.488602545,0.39007841,1.71539675,0.287915897,-0.166264604,0.266034082,1.002293696,-0.099674915,0.133162609,-0.174732558,-0.32274429,0.678387413,-0.317627716,-0.442983178,0.148156737,0.509579602,1.617494168,0.053241524,0.109267299,0.736732574,-0.146263861,-0.093738809,-0.055293717 +HUH28,-0.066337189,-0.28859878,-0.114110792,-0.073908686,-0.325037549,-0.169144746,-0.378528133,-0.181925479,0.016137239,0.090320428,0,-0.014576266,0.143545429,0.09788857,-0.097794512,-0.5640379,0.078562509,0.039056965,,0.839209102,0.365365956,0.12614381,0.102549213,0.740887615,0.273604188,0.416212672,0.130967117,-0.287535264,-0.082089223,0.043490138,-0.957097918,-0.251942661,-0.008273483,-0.023471269,0.009603706,0.115761859,-0.247325759,-0.0555939,,0.062914466,-0.32720349,-0.796029856 +HEC265,0.407351743,0.074216536,-0.599253315,0.690606559,0.892205036,0.468181337,0.059713572,0.190734489,1.078408921,0.321725075,-0.026834837,-0.479848143,-0.594763361,0.158758649,0.461319122,-0.179854316,0.169303073,-1.104083349,,0.872511667,0.573600013,-0.283808383,0.541507817,0.8913026,0.41260413,-0.64645799,0.884766048,0.828585589,0.364907998,-0.070612689,0.767679417,0.791741733,0.470859115,0.413310832,-0.074790931,-1.278633792,0.019764325,0.358990158,,0.156906262,0.427451964,0.727192191 +CAL12T,-0.139471618,-0.856118756,-2.721085914,-1.36511932,-0.038299461,0.482148914,0.152567372,0.09414921,-1.360854815,-0.616730344,-0.673226047,-0.630482319,-0.710818081,-1.46415332,0.624203472,-0.282330823,-0.68271978,-0.777398435,5.476584424,0.89742208,0.834530604,0.707778996,0.07803397,0.762057574,0.509328855,0.524337234,0.128729919,0.467754173,0.786076391,0.875153702,0.235060651,0.656328882,-0.120729564,,,0.181295986,0.047164558,0.291264865,0.059648315,0.327278997,0.038281444,-0.222355018 +THP1,0.583203948,0.091007601,0.070754983,0.034083942,-0.001082103,0.069928404,-0.101615935,-0.490173856,-0.013440557,0.283000342,0.367926681,0.452646129,-0.039386431,0.050834874,-0.057518118,-0.169373356,0.26435971,0.032039861,2.874279991,-0.609864471,0.4123198,-0.033943981,-0.131790821,-0.925054057,0.169046576,1.231389553,-0.054653793,-0.76841023,-0.221406169,0.63362564,0.35131496,0.291690223,-0.357096941,-0.27247811,0.2926845,0.835158248,0.195249671,-0.001646078,0.810762905,-0.116007649,-0.222343509,-0.703240271 +A3KAW,0.259069739,0.120520809,-0.009469788,0.766037537,0.947273124,0.65558008,0.524404221,0.636224731,0.713217381,0.372708553,0.078840805,0.135190901,-0.114929095,0.641658387,0.621737819,0.213296998,-0.044427985,-0.076481174,0.177539559,0.865144431,0.117749378,0.300767049,0.09155458,0.903908379,0.377492177,-0.533691554,0.392522834,0.560013175,0.131586149,0.75898496,0.632745136,0.728098563,-0.329862094,-0.395408388,0.066036422,0.101233474,0.018538356,0.331958442,0.498105962,0.309143129,0.490987226,0.912074803 +SKNSH,0.00873956,0.148889569,-0.035031158,,-0.089365929,-0.005754407,0.117675188,-0.023881975,-0.32811107,0.222681951,0.156173702,0.10000664,-0.24624172,0.008515235,0.224043954,-0.06234359,0.002763511,-0.02126041,-1.833856244,0.908242869,0.733670071,0.552628338,0.455765139,0.470991582,0.137136196,0.423219755,0.15168599,0.226741924,-0.18223104,-0.266713071,0.159332189,-0.204541162,-0.264207415,0.410149691,0.34806662,0.025122091,1.200970201,0.054605267,,-0.026695237,-0.015113954,-0.378005487 +HCC1954,-0.058609186,-0.526088263,-0.020993839,-0.293820013,0.265990292,0.115649152,-0.078108446,0.259262815,0.161488573,-0.309731099,-0.728911888,-0.603220211,-0.623346792,-0.617558445,0.335641004,1.08602906,-0.0903601,-0.399015831,0.119962485,0.466410821,0.699345055,2.051048707,0.050308901,0.391505122,0.346823615,0.13159154,-0.061853471,0.349147809,0.106492733,0.066126676,-0.112957811,0.106911697,0.883919089,0.719685283,0.198719419,-0.13825839,0.011985436,0.209187311,-0.053485124,0.959159596,-1.028116272,-0.721799925 +CAMA1,0.036371354,0.368795846,-0.102497928,0.206088966,0.195921721,0.092485704,-0.165822829,-0.162846016,-0.562945185,0.048503458,0.296969673,0.291990948,0.047575031,-0.476891008,0.043106984,-0.138154148,0.385497735,0.344501356,-0.559820196,-1.51316408,-0.055317133,0.038634193,-0.690182557,-1.447167907,0.289707175,0.96328727,0.357835708,-1.92956173,-0.201721488,0.976211217,-1.705016432,-0.316173145,-1.046635548,-0.562173547,-0.161071249,-0.729308264,-0.593330102,-0.144313563,-0.195475381,0.992280292,0.072330827,0.40888299 +HEC6,0.067332027,-1.502731184,-1.623181987,0.786493046,0.006747548,0.072023306,-0.117822775,-0.267776995,0.308043979,0.219253775,0.182211043,0.195416815,-0.220301345,0.317250794,-0.124874099,0.103112538,-0.183811074,-0.13743646,0.001640886,0.001092236,-0.166487597,-0.471342602,0.403308981,-0.283873731,-0.136041472,-0.972841384,-0.228941563,0.143338433,0.146864334,-0.126024975,0.224656688,0.248495889,0.36095071,0.631090444,0.434886074,0.061231981,0.059523131,-0.0648575,,-0.205869631,0.245065882,0.756498731 +AM38,0.179936098,0.843490887,0.584005964,,0.814550999,-0.029760575,-0.519011414,0.539126477,0.848503376,0.41310359,-0.415749232,-1.035095803,-0.755912859,0.584443109,-0.513428031,-0.609646462,0.396650057,0.269775093,-1.207051949,0.054182027,0.326244546,-0.002301996,0.492040334,0.15467312,0.095909121,0.669123513,1.040155994,-0.158744437,0.206439061,-0.176659806,0.505212893,0.25190296,-0.200961589,0.31889801,-0.131694632,-1.022662795,0.124592607,-0.033590591,-0.05111197,-0.202641155,0.290017253,0.637337655 +HEC50B,0.305697446,0.071369114,-0.071648158,0.083566029,0.312160765,0.102921768,-0.234552182,-0.898939459,-0.414133809,0.656420327,0.372916592,0.1702915,-0.479834589,-0.12305043,-0.051853951,0.153047826,0.423423549,0.214732148,,-0.529777796,-0.116989907,-0.852620979,-0.013663053,-0.310793164,-0.364504505,-1.158418488,0.696430347,0.009427788,0.032688567,-0.153053636,0.666843917,0.681915493,0.847399322,0.915187507,0.543921246,-0.335905703,-0.208341173,-0.019310518,-0.031115838,-0.038966065,-0.209336421,-0.41920563 +HSC3,0.274635171,-0.013198837,-0.194818315,,0.227590846,0.153609635,-0.223912921,0.218290787,0.589086783,-0.223704015,-0.270838961,-0.658216997,-0.522638148,-0.012313082,0.578032641,-0.150862534,-0.282070463,-0.673538298,-1.85608689,0.862249592,-0.12033394,-0.67590419,0.229286114,0.845792744,0.041259423,0.280751991,0.955311131,0.585940208,-0.06234657,-0.858749362,-0.139520592,-0.313407954,-1.123046172,-0.906288829,-0.429742489,-0.952435254,-0.250925959,0.090593563,0.125102932,0.006628121,0.035431852,0.15004319 +HSC4,-0.154367211,0.563625208,0.323536145,0.188411262,0.279818948,0.237798837,0.043446409,0.301645121,0.503324307,-0.02957845,-0.073862287,0.070394148,-0.194309793,0.507177074,0.315971737,0.600262021,0.07069023,0.474244057,1.985568565,0.232079669,0.478042352,0.102143705,0.431515208,0.416265299,0.404215256,0.245635512,0.187551195,0.294282124,0.079092877,-0.015544055,-0.371222118,-0.159653036,1.296961028,0.891319867,0.812055144,0.560108028,0.199425792,-0.035081024,-0.271551583,0.024824116,0.134874079,-0.014979435 +KMS11,0.046803288,-0.144379631,0.436694328,-0.588157456,-0.594927281,-0.066089753,0.421499206,0.372660589,-0.201158715,-0.91442157,-0.763238896,-0.001679196,0.566574065,-1.063054226,0.205456372,-0.237615786,-0.462320861,-0.880397542,0.203821222,-0.543485831,1.470226517,1.93175859,-0.225034219,-1.088908519,1.160295525,1.931861752,-0.31888231,-1.736507689,-0.073532054,1.131902,-1.783231469,-1.107848152,-0.350672336,1.068982016,0.523779914,0.365970446,-0.185215981,0.125667129,0.309067188,0.134604506,-0.106519601,-0.085674347 +KP4,-0.460209557,-0.159354451,-0.208789254,-0.578504895,-0.184857605,-0.234126165,0.23529256,0.411888815,-0.560998572,-0.356132553,-0.522734316,-0.466332279,-0.156049038,-0.7975114,-0.095459551,-0.635493243,-0.198500451,-0.568002178,2.504227713,0.095612121,-0.255647503,-0.586891789,-0.780687542,0.248239517,-0.150037286,-0.03730085,-0.785761131,0.228941579,-0.078169732,-0.315139414,0.119263765,0.228163209,0.070832498,-0.194389575,-0.348345589,0.287057249,0.127612608,-0.001654463,0.595037905,-0.024202497,-0.417346665,-0.631215177 +KE39,0.076686632,-0.164631212,-0.152516545,0.106169973,0.244341735,0.426136357,0.20564458,0.018125303,-0.53829393,0.290805073,0.404093382,0.28227569,-0.109332552,-0.543175608,0.125189488,-0.095088352,0.185049396,0.043034188,,-1.108812908,-1.413957012,-1.64107982,-1.585858562,-0.851047188,-0.999889565,-0.896482025,-0.526719948,0.446562704,-0.025227592,0.279072203,1.471501725,1.319390312,-0.4456947,-1.340789201,-1.554896831,-1.475043706,-0.574021239,0.092545499,,0.204269099,-0.098071399,-0.391267607 +KE97,0.072977658,0.203737349,0.846750187,0.255980665,-0.035787172,0.142379039,-0.148874172,-0.471373725,-0.055525288,0.550768011,0.733859166,0.543158921,0.3891087,0.120090818,-0.398803007,0.012343614,0.537553026,0.344000544,,-0.616131062,-0.434373354,0.40843978,0.557889211,-0.362454842,-0.487041391,-0.163665692,0.140437784,0.727410205,0.077988471,-0.53984506,0.958478943,0.618670382,0.070488663,-0.62951172,0.115868086,0.611655897,-1.360839319,0.081412747,,0.048393549,0.07712508,0.432190932 +VMRCRCW,0.0063731,0.399173288,0.406775495,0.142751917,0.195790938,0.20244481,0.153215617,-0.244240418,-0.010840034,0.231789708,0.214853411,0.181626179,-0.259854926,0.39270766,0.041385476,0.472066193,-0.49857252,-0.011739692,-2.540779396,1.222972736,-0.754875414,-1.532494059,-2.449431371,0.989631077,-0.664610349,-1.173603672,-2.266013351,0.930824512,-0.149937505,-1.056133856,0.056493644,-0.608777619,1.105619789,-0.093818516,-0.8471723,-1.067240836,0.73325887,-0.050929284,-0.395788855,-0.076341624,-0.336264046,-0.461266505 +HGC27,0.117353306,0.794832035,0.878369651,0.456771457,0.033236574,0.051710112,0.03926341,0.002241891,0.250495057,0.075195999,0.56038852,0.295297914,0.048357198,-0.03688295,0.219095978,0.61004298,0.473157122,1.238599075,,0.79157431,0.90223633,0.103141583,0.465868814,0.331895125,0.045234712,-0.220829368,0.356269348,0.159093271,0.142308563,-0.245627334,0.179455257,0.336971652,2.822923756,2.121868453,1.260294195,0.857065579,0.31122555,0.097869139,,0.19752768,0.08727635,0.46895581 +LUDLU1,0.075063468,0.248574634,0.403461295,-0.0753187,0.520543415,0.561089994,-0.160310521,0.299855517,0.007380853,-0.355623945,-0.470466047,-0.924151544,-0.511987243,-0.505577822,0.262726973,-0.182861234,-0.410095033,-0.617047261,0.002145521,-0.020858898,0.442912346,0.085842596,-0.158516701,0.423166596,0.424448072,-0.244136262,-0.075277846,0.377763148,0.377197257,-0.360649093,-0.112318363,-0.109628171,0.317464438,0.175818542,-0.021076072,-0.186860673,0.700558225,0.020102631,0.07436568,0.089165662,-0.401754065,-0.937833032 +HUG1N,-0.172763897,-0.356848371,0.042226989,-2.176549902,-0.048151225,0.074864145,-0.057204311,-0.724986697,-0.192582707,0.131479739,0.244882833,-0.038671995,-0.648980856,0.018755984,0.039485815,-0.302457132,0.262277704,-0.047860619,0.022181891,-0.987759234,-0.979252854,-1.583932374,-1.115608146,-0.306109828,-0.676728078,-0.847516861,-0.554546986,0.337003062,-0.256095852,-0.293291213,0.988300591,0.787211155,0.826783783,-0.490858279,-0.708686502,-0.99191596,0.606392646,-0.077569797,0.023070067,0.092965748,-0.280556521,-0.553328553 +U266B1,0.271571823,0.19481462,0.622988257,0.213964834,0.16009592,0.498897854,0.35687078,0.714655511,0.063569249,-0.392371571,-0.319376491,-0.112905455,-0.37474188,0.138813654,0.172158692,0.027306817,0.333666591,-0.060237977,,-0.200577936,-1.316740417,-1.046762526,-0.846890835,0.404214902,-0.749214891,-0.335745167,-0.212201761,0.373763853,-0.240543533,-0.204402859,1.25295508,0.731410136,-2.447553532,,-1.160825575,-0.773781326,0.129522929,0.332642607,,0.206379486,0.241553784,0.211214662 +NUGC4,-0.305489032,-0.46040019,-0.357758075,-0.414686357,-0.25321948,-0.129059762,-0.387666364,-0.457630346,-0.15110413,-0.209117449,-0.12278705,-0.149957224,-0.023042954,-0.386625509,-0.176702152,-0.265367214,-0.476786841,-0.432855143,,0.285218068,0.146307503,0.040416235,0.379053811,0.148929222,-0.270377264,-0.892227504,-0.199545613,0.115436549,-0.295245873,-0.614571442,-0.877141399,-0.102533366,0.238572583,-0.147150937,-0.478019571,0.371917574,-0.632117482,-0.337085786,,-0.421428414,-0.473378928,-0.467681463 +HMC18,-1.767621385,-2.972069013,-2.910525723,-2.579031207,-0.219373881,-0.501307351,-0.112047007,-1.114350973,-1.540687789,-1.390730503,-1.461493133,-1.917378904,-1.619336932,-2.292650352,-0.807464348,-0.991342509,-2.220446312,-2.132142444,7.583010428,0.107093716,1.073568451,1.121766176,0.446873984,-0.150879667,0.323777079,-0.437453655,-0.260907909,-0.201745763,0.181768374,-0.50988455,-0.768238193,0.036387092,0.220747833,0.93569387,0.282068777,0.7001486,0.378147698,0.294253874,-0.002358722,0.115068991,0.217866129,0.392998114 +KMM1,0.109161182,0.168272451,0.3187646,0.384282226,0.201325991,0.53972949,-0.677914607,-0.131667202,-0.41621233,0.986536806,0.593719559,0.136647354,0.517279608,0.615641255,-0.024578512,0.21980691,0.754396055,0.845880667,0.33452015,0.993691948,0.369206405,0.022631426,0.228524739,0.782259458,-0.121911503,-0.253065798,0.133466925,0.773771609,-0.658007326,-0.571120741,0.586685535,-0.355907974,1.32779031,0.96536295,0.484384468,0.68658577,0.901004957,-0.057500959,0.084107929,-0.150345661,-0.156797374,-0.530474096 +CORL23,-0.186548061,-0.170051739,0.019630974,,0.353165251,0.025792849,0.081217427,0.002124853,-0.176516704,-0.000296454,-0.335227022,-0.396218244,-0.172975592,-0.396388236,0.000905927,-0.199685935,-0.000512653,-0.151208303,1.075619732,0.312952023,-0.318982616,-0.287624509,0.009304031,0.27329953,0.129760987,0.115147826,-0.008224441,0.334414869,0.200716679,-0.429707229,-0.306764336,-0.013829188,-0.1431646,0.429086746,-0.646809406,-0.08484488,0.534690725,-0.021308545,-0.118590139,-0.122312088,-0.25931698,-0.388728882 +MORCPR,-0.015838862,0.48014278,0.336913535,0.099639536,-0.847740444,0.258288377,0.307989026,0,-0.401069117,-0.619603399,0.271250417,0.552560855,0.545610582,-0.247646034,-0.113535407,2.164353312,-0.324305834,1.585465329,,-0.685021866,0.480572551,0.672662867,-0.206390761,-0.642885119,0.428310683,1.017637482,0.106677375,-0.720116338,0.377767645,0.610037684,-0.461710035,-0.194238028,1.354013463,1.789427024,1.862573207,1.78854101,-0.813571062,-0.076783721,,-0.090961558,0.186411225,0.679839171 +HARA,0.188458095,-1.019514856,-0.598358519,0.390851312,-0.142925943,0.069401881,0.010914715,0.503625817,-0.038338572,-0.594691198,-0.625505538,-0.311471834,0.103896937,-0.626552236,0.073228232,-0.264140125,-0.060354278,-0.54032614,-5.20334227,0.368125715,-0.633480947,-0.565479672,0.044999895,0.109174822,-0.219891931,-0.681856907,0.409815276,-0.182185742,0.416165835,-0.244504762,-0.802996355,-0.025717456,-1.351616806,,-1.422173172,-0.566514487,0.513114679,-0.225201908,,-0.194362504,-0.274755509,-0.34254259 +SKOV3,-0.008690433,-0.17815507,-0.156343612,-0.092945452,0.588644084,0.015510713,-0.67367629,-0.408925981,0.069398893,0.452177826,-0.189636221,-0.777144232,-1.252336449,0.195480482,-0.137365526,0.017807546,-0.080123965,0.171025391,,0.932195152,1.067009165,1.015360502,0.634594746,0.489997382,0.655901186,0.070314051,-0.072982792,-0.440634099,-0.023056546,-0.200627644,-0.975268329,-0.622895973,0.073268909,0.915831939,0.740311651,0.353840602,0.045916092,-0.09432888,,-0.096716702,0.041463309,0.539428439 +HPAFII,0.125521909,-0.397259062,-0.198583149,0.244709734,-0.087650127,0.257229511,0.07607862,-1.361597946,-0.102335491,-0.050136855,0.163399586,0.462419383,-0.32475285,-0.366788653,0.305111927,-0.130023891,0.272747555,0,,-0.509747398,-0.637648302,-0.53192764,-0.090198677,-0.212162921,-0.541443146,-0.250869811,0.109382796,0.750400236,0.356535152,-0.295193919,0.793490494,0.368840282,0.124088774,-0.534391007,-0.529166562,-0.327177116,-0.626522714,-0.144186993,,-0.171824717,0.236570608,0.312159158 +MC116,0.046997259,-1.178214578,-0.274780103,0.186534218,0.053695135,-0.050811294,-0.174631569,-0.269452675,-0.242063129,0.49184222,0.370491485,0.386657592,0.088955576,-0.269645798,0.043533228,0.071219636,0.171127956,-0.244496576,,0.921129839,0.480357424,0.128375661,0.242947039,0.934237403,-0.185640842,-0.701945928,-0.43575051,0.889130339,-0.303626667,-1.529971209,0.48546952,-0.102625244,0.820194303,0.121003383,-0.009603706,-0.052971061,0.580255689,0.036866286,,0.032353399,-0.390946574,-0.542334448 +NCIH1568,-0.468077344,-0.369031748,-0.317145515,-0.575719055,-0.212397936,-0.059849924,-0.445295034,0.181037182,0.277047058,-0.924072659,-0.697438136,-0.243970742,0.012833339,-0.486652035,-0.351250379,-0.911253674,-0.423126171,-1.159797448,1.265655731,0.38369208,0.213591603,-0.053484024,-0.619710425,-0.295426078,-0.197485539,-0.714177302,-0.882247923,-0.219667484,-0.602820185,-0.084405448,-0.219360594,-0.433025384,-0.170845514,0.55591974,0.358330981,-0.27703276,-0.651071775,-0.476366782,-0.522485851,-0.502345535,-0.426533489,-1.792607186 +CA46,0.150452873,-0.446898007,-0.963698741,0.129511864,-0.158371601,0.064495703,0.577491378,-0.004206932,-1.290721519,-0.104856291,-0.307330596,0.114621806,-0.425808897,-1.434553218,0.122084761,0.423663301,-0.490783754,-0.267780991,-2.959186903,0.4843273,-0.374106849,-0.284324154,-0.210499846,0.675565243,-0.700619105,-0.166947319,0,0.579305234,0.010605905,-0.015363041,0.4065867,0.709986855,0.361124646,0.40914097,-0.165545863,0.001461507,0.025439824,-0.049112439,-0.160233739,0.047502773,-0.094152148,-0.242024473 +A498,-0.09784503,0.346783685,-0.031653034,,-0.333217804,-0.120707271,0.621793976,-0.666697095,-0.029696852,-0.155056062,0.002760844,0.525168022,0.055856826,0.058111178,-0.355237127,0.691641956,-0.279586826,0.745125436,-0.625417954,-0.124579192,0.848554511,0.330309613,-0.689236461,-0.637766528,0.781263539,1.334702289,0.963079234,-0.839662663,0.542145586,0.520458599,-0.019912769,-0.262885222,0.27014812,0.808729433,0.873668865,-1.549462322,-0.298913342,0.099118042,-0.151930649,-0.101101316,0.108410568,-0.234113237 +BCP1,0.011427876,-0.183218061,-1.332927604,0.509476156,-0.366905113,-0.780623416,-0.650729917,0.474727413,-1.190478995,-0.611648969,-0.38595398,-0.432340654,0.451527505,-0.660718179,0.099719791,-0.012236602,-0.214797856,-0.421207195,3.136136354,0.079687596,0.600152987,0.5156973,0.539806881,0.511390101,0.637783092,-0.260596424,0.075623392,-0.266782249,-0.35419334,-0.522858165,-0.394325297,-0.427323616,0.293949173,0.570700848,0.492449023,0.76797521,-0.439183895,-0.199216558,-0.546196425,-0.119661646,0.198769309,0.514192866 +A673,-0.022032041,0.451412311,0.365745598,-3.131790521,-0.195582397,-0.089371373,-0.368818904,0.032527721,0.189830962,0.571781903,0.614288033,0.396008932,0.625327951,0.517641775,-0.196802418,0.240102227,0.701886284,1.036569041,0.205718081,0.881552335,0.422454251,0.334529686,-0.058590199,0.225431569,0.314252311,0.424496696,-0.740802938,-0.179019604,0.191721104,0.057036675,-0.799615249,-0.088585745,1.416122535,0.918071558,0.931565043,0.484486029,-0.653037091,-0.166573942,0.097667239,-0.094073069,-0.232659855,-0.021348333 +AU565,-0.001600629,0.804088094,0.719529138,0.490972923,0.317822857,-0.009457091,0.034063151,0.040766294,0.366110708,0.132956408,0.148230206,0.005821503,0.141822156,0.070893885,0.229430013,-0.531728126,-0.206601041,-0.039515879,-0.103717889,0.216884162,0.089078865,0.825932536,0.706697454,0.673271248,0.336997463,-0.359219239,0.84296127,0.164472815,0.251920331,0.173136414,-0.389317916,-0.00911454,0.072649756,-0.021565713,0.289428991,0.623525184,0.383115461,0.270195736,-0.801455073,0.444868211,-0.008756142,0.344823988 +COLO201,0.2080045,0.18090738,0.174059762,0.527367211,-0.120107614,0.035230988,0.246351044,-0.516182987,0.025633192,0.334052771,0.569061496,0.684476771,0.482351526,0.319966073,0.110415227,0.410004441,0.11325019,0.059096198,1.9232198,-1.153910977,-0.892392511,-0.839570052,-0.391377274,-0.848372779,-0.700741493,-0.502162039,-0.142269726,0.275928627,0.117587426,-0.061452208,1.195730509,1.08411271,0.505152758,-0.466714523,-0.598322565,-0.529352918,0.82687181,0.064303715,0.158314337,0.161553873,-0.028495283,0.017617262 +CAPAN1,-0.05844889,0.284198411,0.562810223,-4.886518946,0.013272589,0.222975366,-0.188017923,0.216183248,0.153749406,-0.189755112,-0.043105796,-0.085688279,-0.215926939,0.534667128,0.044549192,-0.504126261,0.225414313,-0.484252907,1.100979727,-1.296592829,-0.781799959,-1.050287771,-0.290091035,-0.842323777,-0.383674226,0.091942258,0.303622191,-0.14511619,0.457380118,0.588944801,0.361391806,0.77801947,-1.048312401,-0.558033972,-1.029875271,-0.499050411,0.589375938,0.043285916,-0.102237882,0,0.179706351,0.78067644 +NCIH1563,-0.254188106,0.54434989,0.104804803,-2.986214982,0.325888426,0.296215703,0.723306755,0.527418501,0.271464075,0.312603357,-0.179257463,0.275280278,-0.097832393,0.0391066,0.3238914,-0.128443151,0.233423719,0.131661376,1.440408768,0.808712396,0.420595706,-0.113490348,1.095053849,0.317979949,0.172156739,0.628172422,2.008354669,-0.20835258,0.164890025,0.784750595,-0.021856772,0.260144366,-0.62258466,-0.302754638,-0.298510804,0.019030484,0.355490893,0.368234086,0.352219899,-0.069856257,0.25881004,0.803955778 +NCIH358,0.159296394,-0.123649019,-0.088065625,-0.209857645,-0.198010165,0.260703631,0.592688821,0.342145962,-0.010884313,-0.728659252,-0.346086265,-0.275991552,-0.693191111,-0.559481459,0.247882938,-0.100901727,-0.245170836,-0.43425769,,0.4665644,0.50323473,0.217689431,-0.068755093,0.285344862,0.633904088,0.645212754,0.236289913,-0.070687099,-0.10158793,0.217756753,-0.471104402,-0.536120442,0.237436135,0.846655406,0.549162125,0.139790373,0.688137991,0.163926287,,0.102216538,-0.458069118,-1.973638983 +CFPAC1,-0.160315905,-0.165771639,-0.019121998,-2.031974006,0.232253194,0.026908266,-0.473955524,0.014931706,0.316518734,0.159734543,-0.26618908,-0.478210064,-0.486381794,0.26618176,-0.003955157,-0.06366879,-0.368925833,-0.164801969,-0.111766532,0.311237184,0.188454716,-0.116034901,-0.085801775,0.095949601,-0.010301026,0.191362742,0.16329788,-0.559381184,-0.263674029,0.193374934,-0.813523763,-0.147675546,-0.605268712,0.20391798,-0.116153123,0.184825903,-0.043001713,-0.042952336,-0.09916801,-0.027149676,-0.276161234,-0.561340022 +NIHOVCAR3,0.242068762,0.578041299,-0.067169084,0.145655378,0.096187648,0.353947904,0.473202975,0.175457073,0.264930734,-0.457826609,-0.343454203,-0.157734207,-0.08687302,-0.423144389,0.095828362,-0.109616473,0.12615398,-0.966154177,,-0.001092236,0.959336176,0.190117491,0.366948645,-0.200142044,0.743453985,0.157367986,1.395998465,-0.734118597,0.137306324,0.649575985,-0.944062613,-0.987398585,0.038759059,0.509774197,0.257251346,-0.663317501,0.591059003,0.13033424,0.063219981,0.159420139,-0.085901072,-0.842426776 +NCIH1650,0.094126899,0.210287054,0.295627257,0.705272641,0.314479887,0.410591314,0.31729275,0.014401394,-0.138190448,-0.56250237,-0.792500598,-0.641312524,-0.719179026,-0.801814434,0.206817372,-0.132776545,-0.639143363,-0.669132615,0.661142654,-0.171521332,0.127773605,2.382535062,0.942879494,-0.250467457,0.010301026,-0.140071699,0.240861488,-0.10451837,0.006936514,-0.163563983,0.317476317,0.282101852,-0.005083183,-0.007326383,0.007484561,1.73976572,0.549003962,0.056710838,-0.037299581,0.197673356,0.128760687,0.381868803 +NCIH1793,0.052841571,0.041580913,0.157691386,-0.240218264,-0.079211286,-0.07040159,0.170100818,-0.118606372,-0.142137891,-0.80759313,-0.941511905,-0.547046612,-0.450478193,-0.505069317,-0.178691424,-0.580730202,-0.219277482,-0.571108631,-2.13223011,-0.133456161,0.037888072,-0.629863348,0.141178178,0.067684141,-0.391473042,0.174100267,0.217896914,-0.106787453,-0.196524508,-0.459891308,0.45550061,0.258472834,-0.699261834,-0.958758435,-0.720711574,-1.703604403,-0.351948872,-0.255349434,-0.184126794,-0.363446753,0.088493644,0.605150946 +NCIH1437,-0.402783148,-0.597687543,-0.18962869,0.449385385,-0.123053844,-0.283100406,-0.321061523,-0.31027852,-0.629685776,-0.657268241,-0.549330016,-0.566904174,-0.83562788,-1.059274468,-0.950041525,-0.705216858,-0.990107814,-0.72360876,-0.642458759,0.628307181,0.574382262,1.024352334,0.27537975,0.379838579,0.229908935,0.040410136,0.103755818,0.280425328,-0.087080987,-0.389657173,0.051175289,-0.07725147,1.794213166,1.181038039,0.571911427,1.16349428,-0.838225284,0.058978242,-0.054858343,0.043286239,0.007006807,0.403753535 +KNS62,0.228521752,-0.019605741,-0.21364975,-0.36869106,0.947222008,-0.034745559,-0.209738376,-0.107303073,0.378446838,0.510793395,-0.178702703,-0.350859073,-0.257883143,-0.112251226,0.142608783,-0.122351811,0.34714084,-0.099163393,0.96986458,1.245348132,0.402136608,-0.165060072,-0.34460861,0.485736013,0.329562473,-0.089076109,-0.714541388,0.527391652,0.196455399,-0.446880062,-0.032844409,-0.22638087,2.022456325,-0.067472796,-1.065033524,-1.128071925,2.329084019,0.134023787,0.191212462,-0.025319755,0.245217389,0.478402591 +HS578T,-0.010322382,-0.111187699,0.176269052,0.224745676,0.344883409,-0.016925664,-0.073271898,-0.406341557,0.055117967,-0.019255991,-0.239491681,-0.354195298,-0.622834304,-0.484049386,0.119776312,0.057563056,1.044612915,0.146738546,-0.019885864,0.264445407,0.632650927,1.217638599,1.405058213,0.301286245,0.147718433,0.315043102,0.316770819,0.277298107,0.098217658,-0.27954261,-0.044492291,0.132674945,0.86888674,0.803142063,1.019649219,0.986494011,-0.468547683,0.40508076,0.930149651,-0.265113178,-0.779024688,-0.113431835 +BT20,0.300330143,0.012461444,-0.186191147,0.464564907,0.354225011,0.431540962,0.16635371,0.379859614,0.007799706,0.159487683,-0.004142707,-0.044540201,0.165629147,-0.766392552,0.398288367,0.635810316,0.10137791,-0.343785757,-1.511893302,-0.712382804,-0.214121789,-0.463860955,0.576468199,-0.228324076,0.033535764,-0.102595863,0.283354885,0.362530156,0.20175553,0.44551586,0.305707955,0.601712135,-1.326462473,-1.062255311,-0.464056174,-0.42561535,-0.331230261,0.300274075,0.374859219,0.558229908,-0.15141493,0.527042695 +SKNMC,-0.294015254,0.230887679,-0.273417237,,0.186200744,-0.35226546,-0.302912924,-0.469556732,-0.710676364,0.468739444,0.234901113,-0.039905619,-0.160290075,-0.485400868,-0.171899052,-0.176841883,0.222631056,0.346919769,-0.85733992,-0.094679236,0.600367974,0.338377023,-0.4987491,-0.553351124,0.211668836,0.591905994,-0.34619677,-0.577028139,-0.429953217,0.023321898,-0.233801157,-0.150561452,0.54358724,1.004735795,0.406802328,-0.235023746,-1.062214533,-0.273562242,0.577809175,-0.212789012,-0.48699676,-1.128686991 +HH,-0.007953258,-0.677499637,-0.534257487,0.556702772,-0.105066264,-0.054950568,-0.202257726,-0.592456558,0.359833882,0.740911746,0.6438225,0.482958374,0.190540236,0.655203135,-0.142423166,-0.625357874,0.564253204,-0.179119263,,-0.925806717,-0.99433128,-0.862110032,-0.847691134,-0.861279396,-0.37105931,-0.221152156,-0.270177051,0.408908617,0.253465181,-0.130475823,0.582977891,0.707102098,-1.471920793,-0.642170735,-1.044064768,-0.963040403,-0.592432973,0.099118564,,-0.015835185,-0.289946874,-1.377216753 +FADU,0.078068561,-0.670800893,-0.619695739,-5.671785267,-0.444742398,-0.003691717,0.120406562,-0.338191398,-1.038844226,-0.148269811,0.451985529,0.759931411,0.429238901,-0.911382081,-0.064705223,0.090983051,0.130025089,-0.075336868,2.744293255,-0.397469496,0.425535131,0.124733248,-0.047130559,-0.899462123,0.487942471,0.030663596,0.044581203,-1.183180626,0.331545628,0.992600145,-1.011557689,-0.155185037,0.109375936,0.635797077,0.150596575,-0.071485252,-0.409894631,-0.035191775,-0.114349483,-0.204153246,-0.359984986,-0.56301868 +MDAMB361,0.756363342,0.961660697,0.829158777,1.291065872,0.139642336,0.500907832,0.885943181,1.613577316,0.876047252,0.502379671,0.938931625,1.618905747,1.480340871,1.13937,0.447691662,0.978878706,0.6976433,1.63139864,0.600954573,-0.148147328,0.538902378,1.122996188,0.44012033,-0.497626741,0.573752133,-0.08975377,0.193509488,-0.093909114,1.020651211,1.176835205,-0.017078635,0.686054764,0.513586644,1.169862384,1.007876768,1.299223498,0.834200164,0.579361781,0.417917391,0.600792853,0.296078262,-1.048413984 +MDAMB436,-0.110571406,-0.381784442,-0.184344796,-2.463895905,-1.007108634,-0.628010717,0.069485341,-0.010920184,-1.096120145,-0.501891633,0.021460083,0.467197372,0.449331275,-1.076173197,0.258987585,0.426458719,0.220012952,0.097343306,0.821129899,0.229782348,0.84179517,2.899676172,0.797286955,0.099396751,0.309825418,0.211405693,-0.29899879,-0.835946379,-0.233095589,0.277527794,-1.051404529,-1.067195769,0.41952953,0.776149604,1.145754638,0.259960512,-0.723406635,-0.271464823,-0.041272131,0.05767253,-0.514088347,0.505588882 +PANC0213,-1.059648921,-1.002383894,-0.781638806,-1.298046619,0.585624189,0.400548489,0.074929417,-0.127348625,-0.458595154,-1.218920506,-1.161926779,-1.285771526,-1.44557803,-1.253314597,-0.096572094,-1.348473884,-1.259813834,-1.661687967,,0.016536626,-0.122020295,-0.247535234,-0.219891457,0.084413387,0.044798646,0.189464603,-0.143613488,-0.65973534,0.061865071,0.359472202,-0.979479394,-0.125874957,-1.322553119,,-1.559074408,-0.833018186,0.26188963,0.055978237,,-0.062338358,0.349522586,0.422698656 +DB,-0.07203581,-0.640837955,-0.53551443,-0.357778852,0.121449283,-0.143341262,-0.551760764,0.758032956,-0.293173429,0.010434283,-0.168908615,-0.375868928,0.087995901,-0.454676992,0.022739391,0.427221975,-0.406420559,0.317070195,-2.369110582,1.87827424,0.80584408,1.469071324,0.933461171,0.130360012,-1.502297384,-1.105598875,-1.497437823,-1.00190416,-1.924666847,-2.381396402,1.208347513,1.037575045,1.318751201,0.49147327,1.584760415,1.034689886,0.528850998,-0.105600962,0.229242231,-0.016967775,-0.331226691,-0.119706233 +RDES,-0.008184121,0.735192899,-0.215944964,0.327011058,-0.510061224,0.355991763,0.663886908,-0.23328312,-0.223326055,0.138565627,0.516965778,1.017053239,0.305510946,-0.009842989,0.169540784,0.978945934,-0.087575194,0.862785661,,-0.15944504,0.494829376,0.45660536,-0.082291293,-0.2702061,0.406802971,0.280070118,0.09572129,0.266422849,0.239212319,0.512934808,0.226621162,0.185271121,1.479794432,1.424415005,1.107634648,0.47934299,0.128916244,0.003186216,,0.156646817,-0.197541561,-0.384045141 +CAL27,-0.490537915,0,-2.876012773,-1.906384655,0.217352075,0.288930275,0.044099793,0.841871315,0.320063857,-1.126643403,-0.547086634,-0.099853725,-0.196508059,-0.451417798,0.040047317,-0.764993436,-0.323855721,-0.583544613,-1.651986157,-0.163491287,-1.290133861,-1.65369528,-0.845788736,0.107961023,-1.12130516,-0.506739721,-0.1779564,0.624918293,0.532011505,-0.275557983,0.495606469,0.015463825,-1.071791794,,,-0.554760262,0.272405726,0.004501532,-0.090413803,0.148853259,-1.135445518,-2.501337167 +MESSA,-0.270017518,-0.542806311,-0.617478787,-0.125143857,-0.620241711,0,0.017967622,0.093250408,0.00312666,-0.4797094,-0.057921247,0.153804093,-0.137693387,-0.35958269,-0.272057768,-0.307157315,-0.073722204,-0.264696015,,-0.830124868,-0.303143772,0.296098341,0.023065663,-0.403545693,-0.209102377,0.165175051,-0.198015424,0.120931168,-0.317255018,-0.42179866,0.313838784,-0.055069721,0.338690424,-0.283309667,0.1444689,0.623904132,-0.708957428,-0.256670489,,-0.196945244,-0.231110616,0.242295348 +SW1271,0.12659446,0.177115082,0.016782587,-1.544218178,0.807407827,0.427117041,-0.237229736,-0.661635684,0.569530502,-0.006504013,-0.299758275,-0.806272724,-1.489644883,0.309700932,0.19247108,0.3268331,-0.226172743,0.091098375,2.50722419,0.687164476,0.74086141,0.437862076,0.037028325,0.488802647,0.649832203,0.17738914,-0.271810423,0.16517923,0.314718962,0.063563541,-0.603310192,-0.23103962,1.853026351,1.195025442,1.111823567,0.708686208,0.877833067,0.08485089,0.14298778,0.128632528,0.413622435,0.677430306 +NCIH1792,-0.135463123,-0.115810809,0.299647977,-0.42464434,-0.295554545,-0.018090774,0.133222583,0.265813842,-1.118647045,-0.287247989,-0.207478497,-0.077880114,-0.086665658,-0.99375458,-0.112747295,-0.363625292,-0.3549095,-0.684907854,1.873012675,1.084479048,1.141490546,0.810708688,0.710965609,0.456966755,0.205080098,-0.424817508,0.04999891,0.002824049,-0.404497858,-0.358051907,-0.489688482,-0.444999117,0.764009656,0.649575648,0.348250911,0.394711711,0.436117902,0.164194932,-0.060937172,-0.027295967,0.337112453,1.237753973 +GCT,0.131312151,0.327458029,0.840585994,-0.137144803,0.794488411,-0.16853512,-0.646386057,-0.017570696,-0.037801457,0.447432207,-0.543466755,-1.636603671,-1.427187061,-0.171040212,-0.18424797,-0.090640251,-0.007387401,0.045907868,-0.994465233,1.122365953,0.768572188,0.826042095,0.835461789,0.797182747,0.249885936,-0.113002047,0.104152914,0.317457248,-0.11550531,-0.6482819,-0.530585665,-0.505057754,1.113139545,0.551633023,0.976281295,0.88762868,0.269916257,-0.101085266,-1.556254864,0.054798889,0.039319441,0.340723353 +SKBR3,-0.107047739,0.776830064,0.719032012,-0.565140339,-0.09479065,-0.153085573,-0.458319386,0.269816741,-0.326358949,0.216996026,0.365043493,0.255592009,0.54285194,-0.31252876,-0.763323908,-0.092521571,-0.166856443,-0.222648941,-0.568768913,0.489006188,0.910752232,3.179553402,0.421390466,-0.182938347,-0.119918439,0.486659095,0.002131819,0.209361957,-0.063686674,-0.32091101,-0.81025451,-0.401802269,0.391014601,0.733705303,0.371275961,0.133284064,0.32884179,-0.141443072,-0.095954794,0.077305545,-1.830139358,-0.094108513 +SNU16,0.045015661,-0.057738001,0.208715585,0.289554402,-0.056409373,0.212505364,-0.241122924,-0.391591041,-0.576316279,0.366269772,0.637156171,0.241063779,-0.029755588,0.018464293,-0.116070898,0.495534284,0.530081602,0.534239157,,0.018406801,-0.541233523,-0.370091744,0.265962428,0.393159314,-0.515940932,-0.539982311,0.100553229,0.413298138,-0.137638245,-0.684164641,0.705355901,-0.060788956,0.426124722,0.073050517,0.040768845,0.024663738,-0.603913316,-0.029961975,,-0.157672267,-0.017229628,0.302198255 +NCIH82,-0.179403588,0.164637951,0.155888736,-0.073411488,-0.399558336,-0.015770926,0.024750917,-0.169674721,-0.2556537,0.233018112,0.14833292,0.262393783,0.060550572,-0.020385036,-0.453938201,0.614394429,-0.33418893,1.389618409,,0.517401757,0.726391138,0.821022147,-0.049257599,0.055644467,0.217797331,0.355934124,-0.445608644,-0.152991184,-0.297684178,-0.610155582,-0.794943787,-0.861635504,1.571357026,1.756370755,1.400566985,0.521595848,0.939897225,-0.194772632,,-0.205235212,-0.664327256,-1.327681116 +NCIN87,-0.023330629,0.60243644,0.308441171,0.386168592,-0.327012472,0.299660496,0.098272143,0.634602488,0.52351964,-0.050534545,0.398186631,0.150477372,0.894493374,0.199578681,0.020527645,0.847252283,-0.059868908,0.696422872,,-0.733972319,-0.154734421,-0.089480516,0.124334086,-0.540416923,-0.0239582,0.37774809,0.423479395,-0.346632331,0.383767922,0.714015299,-0.591332378,0.318364994,0.101693843,0.064961615,0.139631356,0.366415854,-0.505669598,0.105005884,,0.05152368,0.380390954,0.984542136 +U2OS,0.005731903,0.326497004,0.464150321,0.491210379,-0.04168433,-0.259274844,-0.087332765,-0.286761861,-0.644585713,0.501626953,0.306571676,0.854195338,0.966665714,-0.046570387,-0.347531762,0.519663237,1.311591945,1.553400259,,1.274280183,2.907588589,3.03899835,1.77469491,-0.627327274,1.03717759,0.706097454,-0.544602086,-2.552410897,-1.965356481,-1.855166914,-3.567251414,-4.115710309,3.592128884,3.909392191,3.167628292,2.111322779,1.125610571,0.347444019,,0.241327643,-0.391584705,-2.633615256 +H4,-0.719438034,-0.574303448,-0.724618636,-0.72858683,-0.094578966,-0.646407157,-0.638808237,-0.205105743,-1.227341812,-1.082890714,-0.989691642,-0.677678568,-0.649584464,-1.81922013,-0.187778182,0.189466542,-0.306548043,-0.351864306,-7.148612636,1.598633765,2.014214941,2.118966495,1.101615566,-0.545200478,0.419752038,0.826148242,-1.139256708,-1.294680371,-1.768073843,-1.843470165,-2.940036731,-2.93111917,0.690365708,0.642045952,1.563935879,0.468386014,0.479866314,-0.31721414,-10.25374232,-0.148749334,-0.606213804,-1.577555253 +GDM1,0.160120249,0.073125106,-0.372576597,0.451857158,-0.305679923,0.181892318,0.031826088,-1.452676247,-0.35950021,0.079855429,-0.135839618,0.575329475,-0.302173207,-0.213555682,-0.094920706,-0.478025444,0.075132618,0.779270973,-1.034449158,0.866143642,1.294025004,0.684468038,0.654094497,1.008331263,0.552779586,0,-1.081875073,0.352889047,-1.005986007,-2.251297668,-2.159324787,-2.903322599,1.198719022,0.330717771,0.449016645,-0.586664002,0.903299386,-0.057386041,0.249933084,0.089348202,-0.23754301,-0.51842127 +HCC1143,-0.137808558,-0.325661281,-0.296640216,0.40175187,-0.006918611,0.079001727,-0.134750371,-0.00923966,-0.593272903,-0.56728586,-0.353923267,-0.431646041,-0.356852823,-1.108425689,0.727267388,0.538651775,-0.184419801,0.395228315,0.594740145,0.920134323,-0.462171101,0.164170696,-0.356879805,-0.354803871,-0.544750833,-0.000476274,-0.408234179,-0.670543993,-0.903616717,0.239011844,-0.7602926,-0.122628215,0.316189378,0.734276547,0.462655698,0.333637256,0.132961012,-0.369929776,-0.360904205,0.238588414,0.410473624,1.019730326 +G401,0.219736334,-0.189342207,-0.883734436,-0.217148338,0.200641946,-0.246845273,-0.23550488,-0.060576714,-0.60820511,0.145620033,0.357377526,0.001257569,0.0364755,-0.040119572,0.258801261,0.19797345,-0.803833845,0.150345489,,1.002940179,-0.049995715,-0.681513369,0.37023757,0.472636106,-0.354429105,0.680215604,0.771823527,0.453564051,-0.112572508,-0.300021243,-0.086936458,-0.360907574,0.687833638,0.007149539,0.496036385,0.281963824,0.595925691,-0.037698605,-0.006884544,0.110973927,-0.179213011,0.175240751 +HCC1937,-0.093912165,-0.38006745,-0.129066935,-0.527965289,-0.298673177,-0.059930643,0.102472421,0.397260987,-0.107693054,-0.538177178,-0.81072756,-0.833484397,-0.566114475,-0.86898238,-0.066826429,-0.137011311,-0.48709685,-0.878863162,-1.571014655,0.034769329,-0.255287726,-0.207871578,0.081802014,0.335164357,-0.403764499,-0.961333913,-0.538369028,0.212695334,-0.185834902,-0.866190471,-0.00191145,-0.252050768,-0.240136804,-0.704335591,-0.28610567,-0.950680043,0.231225984,-0.530980436,-0.089124763,3.056517183,0.38062901,-0.310349977 +HCC1569,-0.340256722,-0.104282112,0.442690368,-0.311784785,-0.659283369,-0.129655599,0.13466187,-0.13515962,-0.972632033,-0.305147799,-0.288714619,0.089742597,-0.05308387,-0.956715009,-0.124008458,-0.497099597,-0.512390467,-0.724066961,-3.475991823,-0.472610115,-0.096921303,0.284101723,-0.050308901,-0.218185451,-0.102757478,-0.548602522,-0.623935864,-0.095439371,-0.43846181,-0.493957853,0.173236665,-0.459949303,-1.338325268,-0.38565544,-1.250293448,-1.860786024,0.207364542,0.10105375,-0.180428549,1.711381009,0.005475143,-0.290032919 +OCUM1,0.598466315,-0.321338484,-0.141560466,0.314047122,0.661148455,0.2133153,-0.014746905,0.201055075,-0.161534302,0.906076698,0.390317055,0.029417182,0.023573443,-0.24253522,0.319602384,0.12318159,0.604528034,0.433266304,,0.895315665,-0.07981405,-0.194993606,0.788194234,0.709422035,-0.525590953,-0.570004242,0.244392478,0.647438877,0.456108893,-0.299168052,0.651682678,0.661176694,0.503014804,-0.259112603,-0.311242903,0.419716941,0.702664828,0.304332571,,0.167761159,0.307844287,0.878779847 +SAOS2,0.301906796,0.174383701,0.169475862,0.287649956,-0.155450024,-0.121018569,0.236082025,0.89774014,0.462269665,-0.490715437,-0.329813894,0.233549688,0.785133538,0.003427962,0.02715108,-0.20345101,0.244501506,-0.008595122,,-0.018010854,0.061941029,0.066491395,-0.348499004,-0.154448449,0.103161622,0.341604054,0.32803741,0.112537764,-0.267957391,0.630879114,0.417852019,0.41866737,-0.400096456,-0.001619868,-0.092490595,-0.675980909,-0.443783494,0.14914219,,0.166529669,0.486778954,0.86467821 +D283MED,0.019069079,0.623006614,0.60532997,0.393687727,-0.529133024,-0.168919396,0.011168319,-0.450426378,-0.351162822,0.103769128,0.638886063,0.833706924,0.292123626,-0.083596403,-0.298178124,0.685138785,0.368114899,0.985478221,-1.367182461,-0.574714958,0.060424127,0.219031728,-0.469066364,-0.944768681,-0.327900797,0.714185158,-0.092413327,-1.270767648,-0.752675529,0.906421908,-1.560284815,-0.648480255,0.042016924,0.733131131,0.645811109,-0.677203366,-0.103519424,-0.290162691,-0.126106556,-0.008286608,0.002228213,0.109099862 +SCC9,-1.170969533,-1.34506697,-1.101167825,-1.015592875,0.070519868,-0.579476312,-0.585121053,0.308657783,0.75848765,0.074150711,-0.438011434,-0.656789915,-0.353839524,0.953431625,-0.341980347,-0.508930801,-0.022733627,-0.237065385,-5.441694737,1.00324755,0.495286622,0.342158542,-0.239830757,0.667514001,0.342480065,0.301172471,-0.732291658,-0.295545769,-0.415744738,-0.565702491,-1.228026745,-1.377453156,-1.340107903,-2.336311009,-1.363495162,-2.731635814,-0.002964172,-0.059362765,-7.833914317,-0.158967648,-0.461502555,-2.583086581 +HCC1395,0.307728973,-0.588271392,-0.073067567,1.147476046,-0.598404388,-0.252604583,0.139273203,-0.418821034,-1.460523587,-0.115251153,0.352486008,0.628573576,0.211150916,-0.888334029,-0.212047633,1.098830968,0.001955581,0.114768003,0.743636773,0.393906255,0.066286378,-0.269975354,0.235893397,0.492107241,0.018545829,-0.375058742,0.086764252,0.552851111,0.229539758,-0.736311804,0.502027305,0.23457016,1.363278193,0.710800655,0.377796027,0.215415161,0.090001046,0.027115022,0.337149766,0.532435572,0.532098218,-0.355287924 +NMCG1,0.030867284,0.042540071,0.304991403,-0.219666504,-0.049930909,0.112323042,0.039941054,0.500616503,0.391625963,-0.162585405,-0.363577126,-0.378881524,-0.583590045,0.227552632,0.043053499,-0.240172855,-0.347222156,-0.252585868,,0.326774687,-0.258199429,-0.536552904,-0.388173832,0.310690657,-0.402410654,-0.597383161,-0.120765552,0.057329225,-0.214157344,0.211744596,-0.074156993,0.248307824,-0.695012048,,-0.247658455,-0.054807941,0.108000203,-0.037756844,,-0.023016229,-0.116532951,-0.346058462 +TEN,0.085456712,0.452137938,0.506738572,-0.068477405,0.071976839,0.20852942,0.152800949,0.013984916,-0.277577201,0.23997849,-0.020113257,-0.153654332,-0.287555868,-0.358676402,0.087051721,0.002090942,-0.244728242,-0.818690056,,0.827331422,0.568148049,0.084424497,0.842473312,1.064381895,0.175213866,-1.3220018,0.391142438,0.723786447,-0.325319708,-1.407305507,0.029653444,-0.651449219,0.238655428,-0.098423342,0.236413204,-0.252401651,0.795573582,0.102221158,0.112707292,0.021978734,0.169055081,0.471388111 +TE9,0.251142516,-0.085792972,-0.049644922,-0.068129776,0.299947278,0.102404809,0.426461954,0.134952321,-0.045710101,-0.218991035,0.061583913,0.185258962,0.090411961,-0.261953082,0.397212183,0.637633963,-0.045948991,0.265771212,-0.022181891,1.652045495,1.516391403,1.130686872,0.6209736,1.033782573,0.852884046,0.556107929,-0.019488239,-0.140011688,-0.12220399,-0.496078044,-1.806724111,-1.59583694,1.434485289,2.013596136,1.450025251,0.901134247,1.242268693,0.139526722,0.203596115,0.113749289,0.03289034,-0.150213746 +KNS42,0.164033913,0.323602396,0.196479553,,-0.074641915,0.370335966,0.769294973,-0.10516976,0.720511622,-0.48074521,-0.053045691,-0.072749839,-0.427862331,0.20878778,0.13184252,-0.505004885,-0.316976372,-0.461987723,-0.625587236,-0.649452315,0.349039868,-0.539438682,-0.135746822,-0.611980986,0.255087049,0.580926967,0.245790333,-0.743090834,0.02240995,0.517974037,1.05556441,0.170109739,-0.190334141,-0.127428851,-0.657127907,-1.607994984,-1.147977724,-0.017361206,-0.018755181,-0.138599789,0.437296525,0.336172454 +KYSE520,-0.263525194,-0.119154143,-0.025552084,-0.91470612,0.495116196,0.309329586,-0.087497679,-0.075982308,0.476136768,-0.7733833,-0.842914106,-1.113247969,-1.170269357,-0.391163877,-0.073116862,-0.646012612,-0.116741169,-1.16545705,-1.87910005,0.437557244,0.499312483,0.074452121,-0.038134234,0.133893374,0.40541838,-0.003665026,-0.026421301,-0.265461424,-0.016761277,-0.3661146,-0.527048573,-0.251647436,-0.074335935,-0.437330174,-0.570602855,-0.162315263,-0.175180194,-0.135135726,-0.103065381,-0.157361911,-0.578842516,-1.084165639 +KYSE270,-0.261036835,-1.170852577,-0.390263007,-0.580507781,-0.378638308,0.164423028,0.415436055,0.582720171,-0.9419645,-1.553295017,-1.309357614,-0.759286019,-0.525380734,-1.853927056,0.035478372,-0.612659495,-1.118917662,-1.357841179,,2.061950909,2.448355731,2.197713441,1.067130776,0.083339793,0.406939059,-0.426502563,-1.722734709,-2.820798093,-2.596733131,-3.187638563,-4.501294445,-4.47220043,0.442895978,1.291003035,0.98895301,0.334722459,2.209593056,-0.225486908,,-0.386180717,0.192327637,0.596235073 +YH13,0.243635766,0.027685349,0.429147293,0.297422702,-0.151025208,0.0919512,0.593171193,0.565338919,-0.049456856,-0.282482786,-0.012075674,-0.109681574,0.22704895,-0.095435798,-0.114871428,0.128889691,-0.040866247,-0.094581671,,0.558558862,0.10154387,-0.282321951,0.104288584,0.436429655,-0.060873828,-0.122465659,0.357085011,0.026958364,0.008610735,0.222501749,0.188114895,0.411263612,0.020446503,,0.067295912,0.150297602,-0.308982707,0.392013719,,0.233384233,0.005819725,-0.432360621 +IALM,-0.370106027,-1.359722952,-0.467758291,-0.419042262,-0.697766133,-0.063073386,0.104962877,0.323907842,-1.085385877,-1.631651359,-1.587260367,-0.980563973,-0.743842543,-1.886011602,0.005416292,-0.460580436,-1.25887635,-1.552633705,,1.768845144,2.565092939,1.94163017,0.919464885,0.001408298,0.360482392,-0.565324845,-1.867342823,-3.04061508,-2.535065504,-3.232234334,-4.675995047,-4.615123908,0.479548903,1.065194481,0.913183824,0.063213641,2.00234074,-0.551232976,,-0.479766724,0.230671411,0.22935669 +NCIH2052,0.066746668,0.378797975,0.746589136,0.760653074,0.250724623,0.293415878,0.157295511,-0.049604483,0.20191337,-0.57971483,-0.587799296,-0.690919855,-0.904922036,-0.539006307,0.030889848,-0.121021769,-0.482339058,-0.663110894,-4.00213473,0.101196916,0.596867747,1.058903237,0.775367396,0.096945156,0.442365222,0.566843453,0.378876837,-0.201980245,0.260607423,0.287445592,-0.80827699,-0.41620807,-0.341740232,0.372437749,0.400328607,1.417738446,0.31777336,0.243600555,0.152165562,0.291804264,-0.053904092,-0.145810357 +SKNFI,0.033992396,0.470865282,0.423393074,0.650219892,0.205009804,-0.174182438,-0.472793641,-0.149067351,0.948673578,0.948585996,0.786675143,0.276081609,0.147509636,1.647259512,-0.13739475,0.644853655,0.505184331,1.276190481,0.442279842,0.330209397,0.078653125,0.250111917,0.344549328,0.158069322,-0.096098284,-0.026001118,0.246879727,0.434822342,-0.093955464,-0.56817444,0.799603943,0.022961543,1.028019447,1.264427676,1.521480864,1.514922369,0.311834125,-0.019137282,0.131067955,-0.10587105,0.514203753,0.574139006 +GA10,0.263829592,-0.699014437,-0.263984966,0.021449841,-0.282367903,-0.20276221,0.194571478,-0.063257015,-0.497763646,-0.077049624,-0.227057503,0.457404577,0.038673249,-0.996239459,-0.077754681,-0.176809368,0.237435553,-0.354480865,2.21269941,0.746811193,0.090893654,0.564482135,0.249760442,1.021694185,-0.217179577,-0.580379217,-0.126611373,0.974119424,-0.291643196,-0.774970564,-0.17811518,-0.69743226,0.734705461,-0.093734254,-0.592680581,0.609969352,0.121120902,-0.107063143,-0.058928398,-0.163963905,-0.32732275,-0.560883495 +SNU398,0.198734418,-0.177139375,-0.519697394,,0.6136491,0.521117056,0.493297575,0.589319962,0.449812998,0.054820611,0.337766435,-0.078968431,-0.206579185,0.697204076,0.122439048,0.11916625,-0.133917636,0.6546239,-0.588389316,-0.928801064,-1.208174992,-1.538835136,-0.524415989,-0.426525012,-0.640572345,-0.270268239,0.510753517,-0.487889993,-0.013689919,0.624624572,0.567136969,1.266676436,-0.604476751,-0.528115114,-0.736058407,-1.096748051,-0.195246723,0.078429623,0.140575967,-0.414063172,0.013838455,0.335710514 +SNU423,-0.210624831,-0.41622386,-0.462864162,-2.837248044,-0.318574598,-0.582171695,-0.479993007,0.567623377,0.76775962,-0.40837939,-0.765714662,-0.63797872,-0.55593288,0.168219885,-0.168818703,-0.454772288,-0.589021018,-0.248587052,-0.152015828,0.429282924,-0.846053948,-1.339997568,-0.522773191,0.418897919,-0.622919057,-0.221841671,0.279279047,0.539313749,-0.019949461,-0.207609992,-0.007806308,-0.054490145,-0.608550109,-0.919649025,-0.776012114,-1.211218531,-0.051015128,-0.39720832,-0.334126806,0.030721358,-0.210218595,-0.367275363 +SCC4,0.067277908,0.004332881,0.480326951,0.360748757,0.471937679,-0.251278945,-0.43609402,-0.431806742,0.324559178,0.463261052,0.518251768,0.393091459,-0.041528243,0.895308257,-0.025870485,0.628042475,0.365504426,0.887446407,,0.956623795,0.628525837,0.492659177,0.775522623,1.147593515,0.386597796,-0.541435582,-0.051041035,0.476631177,-0.331777239,-1.786041267,-0.618652956,-1.573552472,1.353805645,0.767660206,0.367976858,0.451410554,1.003567564,0.155611255,,0.056242146,-0.226822838,-0.550900428 +EB1,-0.409807503,0.098789334,0.316949286,-0.427188853,0.072013048,0.088999635,-0.3536138,-0.155857549,0.478809235,-0.23976641,-0.325180113,-0.366087505,-0.03371429,0.221988703,-0.199450258,0.010788067,0.060503001,0.089343327,1.154197941,-0.091353194,-1.083806113,0.185849281,0.273063349,-0.011891173,-0.91048354,-0.432379388,-0.230007255,0.521602461,-0.365219056,-0.451357401,1.297472241,0.764747821,-0.710442417,-1.951270886,-0.393739455,0.572688123,-0.708272829,-0.056496892,0.00669973,-0.267197021,0.10009027,0.237832916 +HCC1187,0.068121902,-0.185766459,-0.569441954,0.077226386,-0.640276818,0.021482419,0.147368892,0.22853367,-0.225704678,-0.69175515,-0.169056242,-0.035322582,0.706752988,-0.680489279,0.173942372,0.187683946,-0.106847882,-0.404040737,1.0164179,-0.603666885,0.573419213,0.092505348,0.101279638,-1.118824249,0.346598708,0.663764817,0.221855233,-0.871984292,-0.037694753,0.619448891,-0.792569802,-0.742403987,-0.336014899,0.021565713,-0.097626329,0.045165941,0.172818679,0.486350675,0.43969673,-0.488681428,1.901461896,-0.292407331 +SNU387,0.225938447,-0.220832724,0.168020578,-0.014937686,0.184951738,-0.235627181,0.073312545,0.517155169,0.522943806,-0.047959893,-0.082640394,-0.078839945,0.324056406,0.107913924,0.141447534,0.276198836,-0.141003769,0.455679524,,2.008982691,0.54781351,0.752030716,0.839763025,1.503191484,0.368683419,0.233304343,-0.435105471,0.277950655,-0.154430825,-0.590375553,-0.264618633,-0.71030779,0.493506929,0.558230636,1.165610349,0.844288336,1.164518798,0.324934746,,0.317665623,0.436911385,0.504829009 +DAUDI,0.134168483,-0.420576185,0.103085757,0.661545717,0.275605401,0.162566433,0.59788399,0.017762861,0.27025997,-0.24969506,-0.310246684,-0.064165488,-0.057179665,-0.049507318,0.367115642,-0.563069346,-0.241956474,-0.165379642,0.904446076,0.880731706,-0.237852101,-0.722921317,-0.957511634,0.931437712,-2.243287588,-0.709211818,0.208937757,0.79169913,-0.525413267,-0.830830916,0.96433816,0.651243524,-0.114348927,-0.293800933,-0.007714382,-0.753055323,-1.074059995,0.157427688,0.456156736,0.523423873,0.082288936,-0.412716274 +HT,0.12595974,-1.063821095,-0.307865286,0.279064683,0.229030927,-0.339507832,-0.209998689,-0.00673505,-0.584670452,0.681969701,0.276129726,0.079909078,-0.074466268,-0.156812927,0.078310738,-0.945028045,0.708937875,-0.692370369,1.001898834,0.621206139,-0.198001953,-0.441829273,0.170926397,0.830787889,-0.697765169,-1.285204689,-0.383708955,1.04909903,-0.3781332,-1.637627322,0.990647866,-0.246474682,0.486181953,-0.665218017,-0.895789886,-0.370546147,0.285451232,-0.086677863,0.175284384,0.159167773,-0.231612326,-0.006258596 +MJ,-0.106392975,-0.309017666,0.371177996,-0.01822306,0.150603274,0.011101794,-0.476106921,-0.305594297,0.17956815,0.269740884,0.126666789,-0.005013672,-0.361078155,0.427076116,-0.179247627,-0.224752553,-0.274093089,-0.351500813,,0.557999271,0.564580966,0.433983399,0.350075101,0.190358126,-0.184985548,-0.426794591,-0.920203395,0.247500881,-0.145039263,-0.629605749,0.406917003,0.07129082,0.077555682,0.314008132,0.703507782,0.457521923,0.552563829,-0.131828072,,-0.031092315,-0.455607125,0.428012068 +JM1,-0.217816558,-0.576779147,-0.317167824,0.125860313,-0.07604114,-0.003381528,-0.348329112,-0.856259973,-0.409233227,0.518868729,0.24856663,0.317167005,-0.420351834,0.150427415,-0.308824094,-0.279782937,1.001410183,0.480927698,-1.557747542,0.258831873,-0.219744464,-0.918087783,-0.704855858,0.089062434,-0.279277256,-0.705366303,-0.527349222,0.7187054,-0.339070022,-1.001733291,0.289375474,-0.288777745,0.842195231,-0.359186794,-0.590073286,-1.598585017,0.698883665,-0.124043898,-0.6693525,-0.054315449,-1.2693048,-2.944751816 +C2BBE1,-0.033202442,0.658851709,0.269386416,0.723996088,-0.178213915,-0.133079323,-0.064404638,0.16289306,0.381070912,0.212723676,0.50283898,0.717777793,1.066951453,1.144684887,-0.129591099,0.593177573,0.955256246,1.46324969,0.209771469,-0.100221426,-0.533801889,-1.193424691,-0.546682399,0.036191207,-0.256520282,-0.645621995,0.169347073,0.75714624,0.320322993,-0.740038702,1.032767365,0.999214757,1.358656232,1.061787281,0.975708041,0.825511274,-0.267463531,0.060132722,0.312271297,0.207377094,0.377716764,0.760310742 +SKES1,-0.01716583,0.467212319,-0.09370583,-2.172115097,-0.026827511,-0.310446675,-0.248477648,0.052207461,0.833993338,0.47692319,0.529807817,0.542989548,0.325783884,1.32989422,-0.210004758,0.27313354,0.347475671,0.608711494,-1.199191457,-0.208354026,-0.042256361,0.334195602,0.00562714,-0.123787652,0.08869019,0.74621063,-0.179071129,0.004656576,0.037318431,0.184551416,0.152600708,-0.024507636,-0.452477765,0.079559152,0.399472164,-0.044389618,-0.858215926,-0.110476165,0.058868601,-0.040631651,0.041062323,-0.274394997 +EPLC272H,0.092888701,-0.334779052,-0.299962762,-0.004917032,-0.005396573,0.128558242,0.406830805,0.356498063,-0.453663614,0.127472381,-0.137709024,-0.03773495,-0.007507705,-0.064234519,0.234708008,-0.226608916,0.437711222,-0.377217063,-2.213250261,0.793155633,0.49513581,0.275714735,0.056138998,0.856744965,0.459777134,0.457693832,0.306150807,0.776408958,0.451251361,0.421465574,0.004529718,0.021207217,0.110465753,0.138006303,0.130957036,-0.405671792,0.139164305,0.234369862,-0.005386052,0.734104535,0.576816436,-0.056606944 +BXPC3,0.507521458,0.398018222,-5.968429022,0.661954959,0.655451093,0.377199151,0.400306847,0.372339477,1.098127586,0.972260837,0.425603353,0.631557181,0.922323935,1.181688063,0.297332969,0.925652868,1.552239175,1.360143477,7.658593271,1.359254687,0.614312655,0.174319299,0.512891127,0.889021641,0.619015702,-0.292723141,0.934757525,0.837900969,0.742252859,-0.324896009,0.975429311,0.587565343,0.97913451,,,1.489528024,1.474629984,0.514561991,,0.365047392,0.403142136,-0.060826602 +NCIH1355,0.184453752,0.354180788,0.008883011,,-0.504619184,-0.557943144,0.424213915,0.638521334,-0.146466489,-0.911807823,-0.55670881,-0.036671247,0.142639489,-0.297411645,0.09706123,-0.300383022,-0.197338998,-0.261274821,,0.049358794,-0.244065465,-1.660520271,0.437523138,0.149248123,-0.433022846,-0.083239314,0.743781203,0.053576481,-0.172683463,-0.207198052,0.787902763,0.328528539,0.008978201,-0.401727112,-0.745956685,-0.186372373,0.536234339,-0.038028625,-0.001974401,-0.046139896,0.169476819,0.692847256 +SNU5,0.195532818,-0.00430917,0.332583945,0.151400744,-0.679659845,0.062721416,0.569933569,0.146498841,-0.514924735,-0.206745398,0.49783087,0.607984983,0.886413822,0.129113806,0.358315385,-0.35069827,-0.008254082,-0.582493309,,-1.091533423,-0.973232231,-0.196458833,0.369510331,-0.67113948,-0.416621778,0.109289611,0.706597104,0.206996395,0.246239072,0.216324998,1.131780174,0.840849018,-0.79105199,-0.961632437,-0.488883335,0.130960874,-0.971104168,0.132933848,,0.095004926,0.429546412,1.360067725 +SNU475,0.149520398,0.261031775,0.077980692,-0.037391171,0.39637889,0.212806968,-0.096093274,1.029443611,-0.032986816,-0.398945087,-0.747440941,-0.900769836,-0.426432512,-0.123781114,0.218643119,-0.224357186,-0.236487428,-0.255197995,,0.786458105,0.396831126,0.741014407,-0.045344487,0.267239483,-0.50075433,0.098983157,-0.018711867,-0.095127156,-0.312312791,0.07067421,-0.090326768,-0.008106447,-0.545884637,0.379253996,0.915883127,0.180062151,0.172267006,0.079751264,,0.028820012,0.563717969,0.988223617 +HEC251,0.056374184,0.019343758,-0.297866617,0.008301729,-0.08310836,0.30046419,0.424291787,0.576152404,0.342144541,-0.464911534,-0.3377396,-0.284424344,-0.319553341,-0.472014637,0.147023235,0.118279357,-0.436120923,-0.769396914,0.313045671,0.373679592,0.63372686,0.023691055,0.327095818,0.003861297,0.153097031,-0.541901014,0.838191713,-0.234213523,0.265811924,0.092450609,0.519471418,0.527061619,-0.337941688,0.122474364,0.397958914,-0.940175406,0.149628797,0.048487253,,0.014642561,-0.207800396,-0.146997743 +HCC95,0.098936448,-0.618965461,-0.506734791,1.629682309,-0.389016332,-0.040961576,-0.005437907,-0.566918051,-0.764027056,0.202676271,0.548903626,0.539129084,0.202706258,0.001547212,-0.198547171,0.192950738,-0.045794072,-0.234445277,-3.043405652,-0.091411511,0.047815676,-0.13881758,-0.384152816,-0.227072374,0.185674178,-0.21707121,-0.20420197,0.314933237,0.288404488,0.112377188,-0.010029369,0.200148359,0.183766511,-0.660626469,0.003925198,-0.796637016,0.290432474,0.049732423,-2.920693035,0.07388497,-0.61535419,-1.624110529 +HCC1438,-0.351356889,-0.753631279,0.910120184,-1.93861667,-0.188490817,0.013318111,0.026102309,0.68352117,-0.004528873,-0.774047564,-0.505367472,-0.586052493,-0.489107064,-0.31351184,-0.140829811,-0.670568787,-0.339879448,-0.768627,-2.517235234,0.958770545,0.733655722,0.606788383,0.638901993,0.358391345,0.404725122,0.350316738,0.178728198,0.495385525,-0.342425105,-0.34680116,-0.657264603,-0.68714589,,,-0.125131845,1.016616315,0.543914564,-0.049256328,,-0.164787976,-0.212998789,-0.1551693 +RPMI7951,-0.130804807,-0.173735951,0.29516475,-0.474919057,0.236210232,-0.220547101,-0.673042172,-0.020598374,0.478357492,0.098395579,-0.834197381,-0.770915719,-0.704644128,0.154438825,-0.392263397,-0.553266355,-0.207223888,-0.371111358,,0.793379378,0.135587725,0.473301863,0.678075384,0.63085866,-0.057619412,-0.241516018,0.141726074,-0.25768094,-0.405543748,-0.793838744,-0.5038919,-0.492680517,-0.516269975,-0.24302046,0.202637093,0.397071887,0.049297708,-0.180882172,,-0.270491292,0.062813694,0.687593317 +SNU1066,0.175862083,0.133362863,-0.300242714,-0.104426168,-0.358841386,-0.013360453,0.355675785,0.89712779,-0.948635135,-1.223203366,-0.753651734,-0.243553429,0.563396519,-1.297071503,0.239740321,-0.148023893,-0.812507165,-1.027800641,1.748878869,3.377030771,2.859767562,2.654726605,1.783532339,-0.519547776,-1.493109342,-1.93629645,-2.494563886,-3.299921827,-3.895923675,-3.76221073,-4.100266541,-4.41452473,1.082687137,1.729133597,2.072861339,1.34054738,2.271640877,0.020474442,0.06945121,0.055342293,0.262686446,0.460339769 +SNU1041,0.061788305,0.231972348,-0.147672124,-0.082281148,0.491705413,-0.050060742,-0.59003346,0.163776796,0.79924894,0.348816544,0.131992573,-0.525766612,-0.752825584,0.689397229,-0.080269319,0.324746752,0.176322072,0.5516842,,0.937597425,-0.283865839,-0.081498867,0.428120244,0.726110637,0.237029107,0.267240083,0.513913339,-0.127532891,0.31738625,-0.16610763,-0.704331938,-0.490499079,-0.183260107,-0.461269872,0.277940335,0.799081725,0.163413152,-0.070214205,,-0.073460954,0.276102512,0.558545535 +HCC2108,0.377823395,0.010625759,0.704623842,-2.465680153,-0.160620849,0.078194692,0.366177877,0.586992247,0.268407915,0.040809226,-0.016432668,-0.113557277,0.169010915,0.01474643,0.315536411,-0.831950601,0.129480348,0.450422237,-3.878624981,0.795324663,-0.146896685,0.325092894,0.106646991,0.823068457,-0.10502477,0.379010128,0.395134475,0.485873064,0.792484034,-0.374129041,0.22098058,0.35365359,-0.296098162,-1.585663945,-0.470736518,-0.616695687,0.29581088,0.121806316,,-0.093528644,,-2.490551711 +COLO783,-0.638210846,0.079933233,0.020266324,0.231607683,0.060621147,-0.077908081,-0.390952757,-0.196603091,-0.037976226,-0.196258162,-0.230913744,-0.788334721,-0.471568466,0.079221379,-0.340820989,-0.521536682,-0.512664046,-0.271107661,0.946775719,-1.152929551,-1.087082794,-1.2989235,-0.590313645,-0.592843721,-2.749686495,-0.689013479,0.289267813,-0.495795149,-0.420696253,0.349172958,0.244904984,0.334573066,-1.018116425,-1.102326271,-1.224224888,-1.172926197,-0.303800091,-0.17842798,-0.202287857,-0.810737261,0.554694391,1.403261518 +HCC1359,-0.06134491,0.043935024,-0.320190978,1.05996036,-0.231654901,-0.074755828,0.123159828,0.518788035,-0.396630415,0.14934491,-0.016382392,-0.152168848,0.05629235,-0.346730836,0.167170328,0.040131419,-0.067643786,0.026687305,2.436532712,0.925098042,0.568864094,0.701919714,0.232833022,0.441739088,0.127201842,0.462633775,-0.21559907,-0.147130211,0.128401692,0.19216937,-0.996519282,-0.146938967,-0.094890438,0.052352564,0.494463184,0.608487763,-0.431047108,0.018473341,0.025655486,-0.012639383,0.031284666,-0.11520117 +BICR31,-0.576427691,-0.369265265,-0.364666491,,-0.442273922,-0.300034324,-0.060163427,0.16967095,-1.423105858,-0.937855356,-0.985159662,-0.969609862,-0.562660224,-1.455710903,-0.314054903,-1.10890068,-0.321464204,-1.137473871,2.382692043,0.229977014,0.751154158,0.523512728,0.531428036,0.160934263,0.470845042,-0.148446907,0.263235685,-0.175883112,0.122323949,0.076987154,-0.859045346,-0.318593989,-0.395705951,-0.471506352,-0.504334386,-0.317640458,-0.195618021,0.168698279,-0.021235738,0.118996599,0.256929412,0.487551456 +COV362,0.145224795,0.162688929,0.027062288,0.093329836,-0.129520468,0.205164792,0.552750046,0.34590923,-0.132292811,-0.266636276,-0.165758431,0.092079258,-0.039513617,-0.129416319,0.167987421,0.068316004,-0.493762108,-0.420764401,,-0.112357024,1.020284191,0.169272881,0.715908988,-0.175910761,0.936425651,-0.173130399,0.78815713,-0.706533395,0.495458636,0.800565631,-1.513987168,-0.821425824,0.385484687,1.081940661,0.606496418,0.181221491,0.140786015,0.059451616,0.019581224,0.029060125,0.05935489,0.452684357 +COLO792,0.266458941,0.064270076,-0.335816879,,-1.078339684,-0.637631481,-0.084652347,0.478055171,-0.12314569,0.071593446,0.251033988,0.763304454,0.79185692,0.099391655,-0.083806511,0.047382377,-0.584899877,0.317141576,,-1.175518544,-0.906508629,-2.050094258,-0.207018034,-1.45061234,-0.775159229,0.014446857,0.328961861,-1.05667433,0.135832944,0.791039825,0.280424174,0.483185485,-0.130008461,-0.319922701,-0.407619934,-0.983065897,-0.578994695,0.127202344,0.180891613,-0.045483599,0.38993861,0.528554885 +COV434,0.053966896,-0.310644735,-0.12630168,0.074903928,0.084614505,0.259902788,0.650740379,-0.227479278,-0.076884343,0.193364809,0.300071639,0.109507405,0.054964978,-0.146206438,0.29033118,-0.641469241,-0.402059762,-0.434970154,2.940045292,1.259616088,0.330365666,-0.194607766,0.229352155,0.902970271,-0.020049041,-0.214327912,-0.200299631,0.520604438,-0.216535753,-0.721067772,0.293907933,-0.163612367,0.801984825,0.034604289,-0.294630661,0.525918681,-0.022200993,0.045069478,0.657439683,0.151123778,0.211076215,1.289553579 +WM983B,-0.174010993,0.281728339,-0.075225201,0.027957689,-0.262914633,-0.200369411,-0.58587905,-0.983334154,0.595454168,0.294732432,0.466198409,0.326028417,-0.004796488,1.291020283,-0.300139774,-0.064893702,0.355834359,0.251710264,,-0.169434343,0.474498979,0.736636381,0.137994132,-0.499247827,0.165585948,0.464610888,-0.41115037,-0.52679617,-0.146874186,0.187353815,-0.401392456,-0.85745266,-0.548285604,0.615854279,0.886328526,0.338220255,-0.506023689,-0.181924124,,-0.190102432,-0.002977393,0.42292149 +LS513,0.305964297,-0.128834597,-0.145601457,-2.730629925,0.348705269,0.540652246,-0.086952401,-0.106505309,0.018601917,0.905939014,0.856485733,0.420316954,0.184955341,0.377516238,0.42281545,0.52577467,0.037019109,-0.078777879,-0.338695226,0.468004992,0.4830931,0.283082486,0.622001593,0.414663827,0.355451362,0.249133977,0.507171256,0.690136828,0.192857535,-0.005872882,0.210493923,0.508111752,0.858166886,0.20985866,-0.105550437,-0.585668602,1.161888902,0.215838972,-5.946820816,0.184804937,0.000566043,-0.294007729 +NCIH2110,0.906138575,0.189996474,-0.476528977,,-0.681707535,0.091459847,0.478554777,0.729788502,-0.668300078,-0.501882504,-0.142099037,0.146291413,0.438491492,-0.74168639,-0.494572393,-0.573909741,-0.174179944,-0.64773333,-0.851846163,-0.116621146,-1.059030712,-0.904481028,0.512188834,0.614329115,-0.274165234,0.820620576,1.171466318,0.354554061,0.019414893,0.22770024,0.169301354,-0.340404518,-1.907334114,-1.961008814,-0.67135072,-0.802607115,-1.034341266,-0.047720936,0.007947014,-0.045836219,0.428200017,0.802605535 +CHAGOK1,0.225662315,0.635244871,0.18635536,0.354934459,-0.103134191,0.085584193,0.290555425,-0.112780745,0.090360922,0.270453077,0.496876484,0.57706491,0.685260619,0.46732822,-0.042306816,0.330111757,0.692226833,0.406250356,,-0.310756295,0.007491525,-0.435410495,-0.775954854,-0.521254797,0.335923756,-0.540769762,0.856662548,-0.409980318,0.578383759,0.641823115,-0.602673602,0.005846883,0.473799869,0.40617698,0.401911359,-1.290502026,0.529758191,0.175849894,0.187844376,0.201494296,0.15403157,-0.040183659 +DMS454,-0.164279059,0.504129553,0.754141297,-0.140622183,-0.908443807,-0.498978999,0.382514089,0.30586668,-0.651129866,-1.122714588,-0.894356308,0.25349689,0.399760736,-0.554767458,-0.075474925,0.014372432,-0.257956436,-0.352093934,-0.140193564,-0.258735997,0.814953129,0.668326646,-0.499204141,-0.300014936,0.52610839,0.522947112,-0.502203439,-0.024378345,-0.07273894,0.189146982,-0.466393839,-0.912678281,0.09608876,0.723341139,0.256084813,-0.791861656,0.002964172,-0.06394176,0.008040026,0.026471221,-0.423432252,-1.263171089 +CORL47,0.151643578,0.068740903,0.497987533,0.916467481,0.070016643,0.175434999,-0.058153068,-0.996873524,0.660778254,0.695392639,0.633072537,0.44855424,0.41321699,0.897710217,-0.08982542,1.027979424,0.21302824,1.367884299,3.259963918,-0.420435762,0.726772507,0.479316401,0.030286711,-0.597000521,0.769932341,0.999023282,-0.069566987,-0.325079822,0.228517508,0.39729213,-0.172837181,-0.406480203,0.702651522,2.028062151,1.732212425,0.596685968,-0.532791462,0.060770468,-0.601199717,0.032398509,-0.084821928,-0.477969266 +FTC238,-0.070900633,-0.363431974,-0.132325065,-0.364378608,0.541805328,-0.063290265,-0.562394844,-0.157687744,-0.07800251,-0.353394075,-0.319263737,-0.725656713,-1.017336733,-0.584826076,-0.505751176,0.365023527,0.060716494,0.776065803,-0.933277401,0.903905484,0.792723611,0.014366143,0.268738635,0.450860636,0.220939504,0.094742194,-0.146282207,-0.546154825,-0.008391715,-0.371826739,0.132315809,-0.692156738,1.88198977,1.48403419,1.148769979,0.305713916,0.111087563,-0.008301885,-0.448867545,-0.009709151,-0.13825618,0.056660585 +DMS273,0.27981872,0.145056478,-0.203167122,-0.118745366,0.013231537,-0.258498313,0.073498825,0.18418684,0.115035355,-0.351548086,-0.119887301,-0.195064751,0.008920044,0.134511255,0.141693061,-0.044828969,0.362314356,0.724350025,0.241123679,-0.273164313,0.055231322,-0.451217632,-0.161418054,-0.154341172,0.176687291,0.377388174,0.194642914,-0.117327837,-0.059618398,0.315182385,-0.20762983,-0.334177605,0.503478036,0.760618072,0.377129228,-0.709272851,0.477881107,0.090372259,0.195265138,0.217752575,0.086510731,-0.289233472 +FTC133,-0.502700262,-0.348672862,-0.057857489,0.236519054,0.191006634,-1.080976052,-0.150466759,0.074261059,-0.191262031,0.359167802,-0.561801649,-0.480591307,-0.890149532,-0.705870368,-0.346605709,0.034916253,-0.314196207,-0.146436617,-1.609139323,0.80952732,0.147475893,-0.458206117,0.056935293,0.456717666,-0.313684421,-0.990510025,-0.522019609,-0.02185653,-0.591546764,-0.651968652,-0.083104062,-0.115378531,0.164253664,0.850151269,0.361322989,1.529784761,-0.060324029,-0.204407205,0.021209696,-0.268021002,-0.187251856,0.110964313 +CORL311,0.319411921,0.427264356,-0.221405778,0.536808852,-0.30961387,-0.236500151,-0.157304706,-1.200021961,1.061259512,0.665112776,1.223447169,0.886283779,0.356215725,2.210121811,-0.450042629,0.913567668,0.672145825,1.653310889,0.052931003,-0.184860809,-0.038095054,0.109521865,-0.942160691,-0.696718666,0.692322063,0.653428681,0.317085174,0.035708525,0.452664821,0.388608921,-0.302835193,-0.481340929,0.99637934,1.502162242,0.794084154,0.884487313,0.592411316,-0.107762599,0.165048359,0.283862663,0.100699909,0.417914749 +NCIH2286,0.119792518,0.006352822,0.00652696,0.306058371,0.23097791,0.232835968,0.186508518,0.673638184,-0.774783933,-0.794376422,-0.742772914,-0.654312682,-0.208871863,-0.92090294,0.129320861,-0.386739156,-0.488757231,-0.931853876,2.85528461,0.244410369,-0.106708024,-0.326869658,-0.148129696,0.174244731,0.128957254,0.065985741,0.124014256,0.091870401,0.150699818,-0.147551306,-0.137671927,0.385336348,-0.912678171,-0.677253541,-1.083496965,-0.175448099,0.760016955,-0.115509093,0.087188894,-9.11E-05,0.29611519,0.802980773 +NCIH1339,-0.148719162,-0.120646593,0.45304228,-0.287939431,-0.048872091,-0.170596388,-0.264664238,-0.077670349,-0.127771775,0.327219489,0.354088571,-0.210952595,-0.022327026,0.04873911,-0.257569461,-0.45718808,0.387702611,-0.075464199,,0.628039086,-0.033948455,0.359442006,0.493778301,0.678878895,-0.348982959,-0.113441809,-0.291905655,0.868614397,-0.549096612,-1.661356285,0.821989037,-0.629880782,-0.516710703,-1.739974086,-0.181894074,-0.643002586,0.93431245,-0.014417038,,0.079797202,-0.236328295,-1.106643069 +WM793,0.0299948,-0.181766761,-0.137111561,,-0.041594188,-0.060144238,-0.099279051,-0.054439798,-0.475085801,-0.63718589,-0.446365481,-0.647247917,-0.353729856,-1.089183366,0.383169714,-0.277511404,-0.672583199,-0.918033267,3.268676476,-0.005524599,0.662566082,0.42045585,0.127193401,-0.351395256,0.171401995,0.648479489,0.026668181,-0.595143268,-0.12061085,0.469370836,-0.731137344,-0.083775351,0.613883684,-0.176573683,0.309910158,-0.468681217,-0.602704554,-0.038213577,0.721871087,0.21459622,0.331834399,0.146867386 +A704,0.205831088,0.718107314,0.836254711,0.20271548,0.043070633,0.461729981,0.359907895,0.156378916,0.251344222,0.313520942,0.50735195,0.590168427,0.252642675,0.698450845,0.40471884,0.774812682,-0.026025696,0.35067192,-0.313241381,0.004931842,0.542769814,0.537912528,-1.217742862,-0.354490226,0.601911732,1.113899254,-0.943109861,-0.040002385,0.516956215,0.903365486,-0.124527823,0.518593146,-0.431158728,0.624742747,1.009000987,-1.37245357,0.331148211,0.162264923,-0.115889443,0.108297432,0.498279326,0.752942022 +MDAMB435S,0.001600629,-0.175012958,0.387332938,0.254846393,0.326142667,-0.18352363,-0.135930783,0.45951354,-0.261208539,0.198502245,-0.47034735,-0.577779954,-0.454050814,-0.030901593,0.121260021,0.03247122,-0.118428497,-0.075198617,-1.905666324,1.230198354,0.641626335,0.024919853,0.434692114,0.874244809,-0.180325831,-0.714200497,-0.526533825,0.660210074,-0.437439148,-0.930572344,-0.188240791,-0.580223809,0.512783121,0.770904624,0.374615064,-0.642874024,-0.30428629,-0.021781063,-0.344602547,-0.581749301,0.029525584,0.853325402 +WM1799,-0.22947255,0.441187048,0.369280618,0.263380202,-0.209127528,-0.16573649,-0.414044368,-0.727395411,0.394925983,0.698124689,0.376706681,0.379502752,0.062347078,1.189773804,-0.380457368,-0.084083413,0.591340153,0.345021109,0.815001419,-0.043222791,-0.191473452,0.124950388,-0.048945394,-0.592795511,-0.339222441,0.149655796,0.136163928,-0.344044558,0.002304938,0.157759447,0.345872655,0.289932344,-0.299755297,0.096643045,0.521399593,0.749781136,-0.165251194,-0.094327817,-0.231939578,-0.194016786,0.264678885,0.475175841 +MEWO,0.085076277,0.33752209,-0.66659309,0.609824294,0.263754134,-0.105251249,-0.441673457,-0.302184277,1.156048592,0.880272654,0.179240748,-0.007253342,0.595042586,1.339194359,-0.256403059,-0.141143337,0.259802955,0.106725974,-2.252493461,-0.151017929,0.626070732,1.380286524,-0.253011714,-0.484390049,0.657135509,1.043918499,-0.444921411,-0.714696427,-0.046180528,0.452920057,-0.909533288,-0.40934529,-0.353333385,-1.176283116,-0.254044298,-1.833769455,0.507469176,0.038457578,-2.837907472,0.117743448,0.042557779,-0.191905009 +WM88,-0.04223199,0.400204284,-0.152020103,6.454629958,-0.319952386,-0.045925357,-0.052256642,0.356069104,0.778915607,-0.055782202,0.426377731,0.304401532,0.690606252,0.790081905,0.115430893,0.022153136,-0.064806481,0.02126041,0.304523327,-0.659802929,-1.249181418,-0.633021451,-0.527703966,-0.364828582,-0.808930789,0.211991405,0.056953108,-0.183154639,-0.177768871,0.551576528,0.087230579,0.316044638,-1.4278449,-1.378908762,-0.953043024,-0.462390281,0.778951148,-0.076708948,0.121561128,-0.060220814,0.277424282,0.734005068 +NCIH2081,-0.277616271,0.547426575,0.509901778,0.071347126,-0.419241918,-0.462827782,-0.070228526,0.044291045,0.988192711,-0.591874285,-0.364485833,-0.439096058,0.14838034,0.698132749,-0.339298107,-0.35078316,0.55504102,0.022238308,,-1.870873679,-1.276861946,-1.13897572,-1.474250053,-0.816948318,-0.372737839,-0.006739839,-0.508220331,-0.581990068,0.023136786,0.585508235,-0.2323988,-0.428293777,-1.737774396,-1.095748893,-0.493805612,-1.17830103,-0.248946596,-0.000165489,,0.008240602,0.300282333,-0.147764964 +NCIH1092,0.032560847,-0.050409858,-0.44473168,0.366690989,0.002605513,0.161357069,0.190857253,-0.160821803,0.806468771,-0.250476048,-0.143184963,0.018064056,-0.416752602,0.437384893,-0.195108505,0.422181403,0.509786825,0.788915744,-2.990908333,0.239349733,0.969474959,0.742487158,-0.014507973,-0.000881718,0.672271914,0.613358755,-0.277669474,-0.134305968,0.061005157,-0.066821799,-0.382215649,-0.443222688,0.572068857,0.689388051,0.806626942,-0.657375412,-0.177138923,-0.035951649,-3.579393306,-0.059655954,-0.369861143,-1.209856242 +SW837,-0.188053746,0.431694058,0.258144901,-0.216423947,-0.35823455,0.132899805,-0.25007353,0.56132563,-0.409120455,-0.740603488,-0.548033573,-0.112423504,0.638822223,-0.676065876,0.044785628,-0.137356599,-0.387726988,-0.643835585,,-2.570921716,-2.627356716,-2.042542199,-2.190087953,-1.688325051,-1.34420496,-0.374727294,-0.858319645,-0.680431073,0.355383733,0.84725792,-0.440519637,0.821063302,-2.599003212,,,-2.251869582,0.231901038,0.002896231,,-0.045659555,0.445080027,0.432878778 +JHH6,-0.175641169,0.120292421,0.753559239,-0.439556466,0.396118467,0.219078763,0.106330188,-0.207440849,-0.202203745,-0.412309769,-0.470042481,-0.758795088,-0.543751721,-0.640358349,0.23331007,-0.586977366,-0.370830342,-0.808160958,,-0.221470415,0.029962905,-0.138930136,0.253806703,-0.141650557,-0.163528194,-0.170760254,0.267105718,0.191742119,-0.187392907,-0.119177423,0.379759929,0.5029121,-1.171424933,-1.300890757,-1.407529402,-0.84759129,0.106540462,0.392663933,,0.077125359,0.216172038,0.315401278 +IGR1,-0.23700937,0.585255599,0.680490392,0.513974316,-0.086358344,-0.295281215,-0.125491558,0.029189043,0.712752267,0.390388628,0.25282051,0.409288923,0.199875924,0.874705317,-0.043409985,0.353015449,0.537910445,0.978870869,0.944260584,0.525271575,0.395247938,1.481013735,0.697504126,-0.139875946,-0.324843464,0.063970032,-0.112870744,-1.098280125,-1.229469345,-0.948380641,1.17516517,1.808361927,0.805246748,1.488167318,1.925147231,1.93520047,-0.205728643,-0.026366182,0.263265206,0.104776016,-0.164341087,-0.386187373 +NCIH1105,-0.128239334,-1.189195398,-1.233045504,0.522256783,-0.344726375,-0.059305841,0.019555489,-0.643563643,-0.473667344,0.390558495,0.519229916,0.607851304,0.661388111,-0.12796511,-0.158430903,-0.061610569,0.479550138,0.436506764,,-1.150568261,0.028265777,-0.204794833,-2.557186468,-1.498639433,0.413771305,0.584591457,-1.885022847,-1.745321704,0.476150468,1.245760931,-0.381867115,0.233983444,0.493908124,0.351261169,-0.574121801,-2.743888963,-1.211180898,-0.076470827,,-0.19005301,-0.296922977,-0.911403929 +NCIH1436,0.290620214,0.547668529,0.25697486,0.535256741,0.237254903,-0.038486065,0.019586065,-0.113153857,1.334343509,0.922270853,0.729427818,0.389751991,0.365723934,1.432816354,0.043826646,0.681355814,0.852432275,1.092515203,,0.594278596,0.480564694,0.05468628,0.412170706,0.37551412,0.354642626,0.380450476,0.159857957,0.323508623,0.438444492,0.496911317,0.488476764,0.164633862,1.273346711,1.046133979,0.760840636,1.068559252,-0.698846752,0.364501083,,0.368614345,0.287471397,-0.432234217 +NCIH1876,-0.068348574,-1.031301409,-0.705582054,-1.957051984,-0.718936148,-0.332003731,-0.309712669,-0.290761535,-0.626712384,0.12269983,0.302590646,0.503388172,0.745361156,-0.188420833,-0.352727523,-0.741222014,0.757239374,0.035634478,1.560616815,-0.394920877,1.145834737,0.87097784,-0.487453828,-0.328945215,0.986478462,0.685377547,-0.562103279,-0.423940166,0.194330159,0.173766175,-1.19636156,-1.042026484,0.015337059,0.426485427,-0.400708398,-1.162741394,0.192065652,-0.255358453,-0.145756603,-0.108599904,-0.333403621,-1.084713567 +CORL24,0.256025958,0.564635876,0.448906073,0.096118566,0.921272508,-0.443184039,-1.107440577,0.130763589,0.610929728,1.210029942,0.196917473,-0.525253542,0.229376528,1.374540256,-0.11617525,0.052431879,0.045462359,0.552232742,2.835738329,-0.659403942,-1.387517768,-1.896500272,-2.298104345,-0.944452039,-0.883747006,-0.302152084,-0.684610069,-0.263949102,0.020606854,0.487334799,0.843765072,1.040230866,-1.71224765,-1.097775189,-1.392350421,-2.394747078,-0.419888603,-0.001916991,0.388115269,-0.090630491,0.564439314,1.16215727 +COV644,0.073680552,0.443951282,0.788073953,0.555019067,-0.050936872,0.154609663,0.555139196,0.121164713,0.417984033,-0.131164025,0.011661978,0.490834488,0.933723795,0.211969099,0.169881303,0.39140981,-0.357040004,-0.088733838,0.29555572,-0.160337645,-0.701965163,-0.622036216,0.545670847,-0.286038319,-1.083600811,-0.514203635,1.077798221,0.516195144,0.099309434,-0.36491882,1.634802709,0.712753797,-0.57794661,-1.236642343,-0.706858686,-1.105358058,-0.455222876,0.277156453,0.291868211,-0.496849968,0.575097122,0.764100432 +GP2D,-0.070091968,-0.470851099,-0.22707973,,0.80075779,0.134547333,-0.299347408,0.305978588,-0.020007368,-0.097867524,0.005788638,-0.459146169,-0.590632885,-0.034863522,0.229748565,-0.000732219,-0.001978251,-0.063170244,-1.448383936,0.775069771,0.587766331,0.197959015,1.032178804,0.687797765,0.425611688,0.296509837,0.000542082,-0.160097267,-0.006025425,-0.009561212,-0.688317156,-0.436353886,0.88115246,0.275723837,0.647566106,0.575994843,-0.626582598,-0.101659351,0.087538981,-0.02683537,0.001895051,0.129161487 +PECAPJ15,-0.112369708,-0.187552733,-0.216191777,-0.182879777,0.127852789,0.07488242,-0.221616224,-0.188114165,0.211335416,-0.227159849,-0.439372416,-0.453792206,-0.20695553,-0.263083572,-0.297825091,0.640406888,0.047906875,0.447206517,,-0.117654648,-0.190132582,-0.143865219,-0.171825903,-0.294338346,-0.247466935,-0.461514185,-0.12700981,-0.029464074,-0.381121116,-0.529530354,0.225391969,-0.384540298,0.51621688,0.346581443,0.477258599,0.627478157,-0.993844131,-0.355341463,,-0.201143215,-0.210437801,0.177153226 +CORL88,0.045918299,-0.108524722,-0.013221911,0.193257638,-0.63297277,-0.179411256,0.164967834,0.0039496,-0.370603998,-0.144216545,0.063993474,0.390523383,0.619070244,0.076715283,-0.29966902,0.550377571,0.625435941,0.982228357,-0.114595257,-0.141850306,0.949789463,1.018986269,0.38795538,-0.343939036,0.449104762,0.762803555,0.330986651,-0.1930846,-0.217242913,0.234886933,-0.51345199,-0.87220964,1.05310781,1.434250977,1.167283446,0.954109131,-0.083449136,-0.108013091,-1.428666591,0.033024215,0.001304703,-0.405379451 +CORL95,-0.209404299,-0.060056709,0.181552681,0.150814108,-0.24410139,-0.056183577,-0.220360807,-0.631641942,0.053859196,0.260387749,0.103343486,0.008413626,-0.511109184,0.156353258,-0.253129251,0.088425361,0.288352164,0.388757347,2.880590379,-0.536392944,0.235939683,0.100617282,0.043195284,-0.424795909,0.069803501,0.349367584,-0.051760661,0.357357651,-0.16369052,0.059461165,0.544296583,0.038255105,-0.335406394,0.629334314,0.203097119,0.317732967,-1.178125126,-0.195207998,-0.573392511,-0.108286403,0.068760528,0.097355444 +PECAPJ49,-0.101200906,0.221406995,0.126406487,0.028116578,0.212147872,0.104784542,0.265060767,0.088434362,-0.004066561,-0.576266817,-0.167571732,-0.281732174,-0.437731807,-0.299818038,-0.149222161,2.074416504,-0.638929714,1.754096885,,1.447227005,1.309800446,1.047289166,0.646424762,0.368976852,0.747154955,0.536969711,-0.182436391,-1.444149508,-0.559725564,0.386838006,-1.856738321,-1.270457288,3.103061032,3.799724515,3.781128022,2.813364609,0.86797141,0.161844876,,0.28136799,-0.144699861,-0.678874506 +PECAPJ34CLONEC12,0.014114595,-0.051360949,-0.031878387,,0.001384302,-0.259180105,-0.051389501,0.062514917,0.45992988,0.292228353,0.119366621,-0.048899945,-0.127661425,0.604496309,0.068371488,0.605138725,-0.171108799,0.28052335,-2.148564244,1.070155164,0.567137814,0.233585303,-0.259105285,0.788097999,0.269802822,-0.337092003,-0.187925672,-0.187166781,-0.273521716,-0.292248492,-0.90433991,-1.14441868,0.69678399,-0.13997179,-0.374934119,-1.738055673,0.162774351,0.044210892,,0.050686091,-0.876998673,-2.40304465 +PECAPJ41CLONED2,-0.155697131,-0.423258693,-0.245819985,-4.205807929,-0.384497601,0.166779173,-0.010701216,0.231375826,0.567744374,-0.788801228,-0.756889565,-0.556203099,-0.292190742,-0.217466037,0.015222259,-0.604253347,-0.353573296,-0.717629339,-2.585487052,0.566587109,-0.254988653,-0.535631415,-0.318619647,0.652577078,-0.177597314,-0.041889067,-0.346300048,0.004406869,-0.105418974,-0.150148558,-0.607563868,-0.248552206,-2.029191229,-1.862664401,-0.566864825,-1.490830475,0.062294305,-0.02332484,,1.047928558,1.153606769,-0.556735287 +OV7,-0.090250479,-0.317337722,-0.543723171,-0.040646411,-0.372040488,-0.228110717,0.060223983,0.349281578,-0.034852486,-0.368751817,-0.202674497,-0.2582054,-0.018445725,-0.031753051,-0.085041924,-0.314951653,-0.521713845,-0.302020786,,1.09000209,-0.030854826,-0.100239817,0.338653644,0.719130338,-0.255805633,-0.369068281,-0.062506473,-0.441098052,-0.228748761,-0.488595243,-0.026195111,-0.124050943,0.905769779,0.436382018,0.73705599,0.727176352,0.280919355,-0.249920905,,-0.150530878,0.009139898,0.255338616 +HT55,0.083514744,-0.081833804,0.25250929,0.816542442,0.162376305,6.41E-05,-0.136875422,-0.191179628,-0.08842593,0.071386904,-0.058365359,-0.163332261,-0.462062766,-0.337504824,-0.148017458,0.099686593,-0.056435235,-0.285235391,1.073823533,-0.183075709,-0.10206165,0.427387946,0.65119482,-0.024848953,-0.271114541,-0.476030365,-0.075981402,0.48977674,-0.185679719,-0.791379339,0.531712546,0.003471713,0.61428583,0.211647783,0.224663089,1.166487605,0.11558526,-0.074791242,-0.133633922,0.019774836,-0.192592116,0.295619754 +OAW42,0.701078593,0.587656408,0.482607341,0.26577815,1.044651094,0.41088625,0.116627849,0.116038701,1.147109806,0.128505337,0.315650686,0.073542942,0.154315993,1.162205055,0.420461694,0.293688032,0.155633164,0.303394212,,0.219643096,0.556630554,0.814603267,0.408016942,-0.161456962,0.129275491,0.840341853,0.523251386,0.126140464,-0.046225554,0.741735879,0.624082217,0.729729038,0.019344157,0.315047264,0.863762966,1.028845242,-0.593711909,0.28112091,,0.410398662,0.372463804,0.849487098 +MDST8,0.078595975,0.19910502,0.62335981,,-0.042512774,-0.873845245,0.170225172,-0.179583905,0.55793617,0.259511618,0.169407141,0.397465342,0.334619638,0.692953107,0.036160798,-0.283439761,0.800741784,0.086034212,3.908677971,0.339107524,0.301779305,-0.237744605,0.264558096,0.196014445,0.116269362,0.191680283,-0.180558626,0.288395626,-0.008352432,-0.03684806,0.421993604,0.160792668,-0.627448786,0.29728619,-0.003925198,-0.47471208,-0.462179763,0.035464976,0.226527454,0.062631525,-0.37575671,-0.491060714 +OAW28,-0.012435855,0.007830752,-0.035417309,-0.173485355,0.151096315,0.087700997,0.170669135,-0.125864214,-0.347992592,-0.387698183,-0.290136875,-0.235972836,0.052148291,-0.485001312,-0.111786012,-0.450415543,0.26555185,-0.126209364,,-0.826895922,-0.734777337,-1.390256979,-0.82365815,-0.811679455,-0.597840175,-0.930120935,0.009647667,-0.420963626,0.460959667,0.123431671,0.037681997,0.804048237,-0.358561139,-0.647435158,-1.329132689,-0.752805052,-1.267252149,0.006670059,,-0.014562701,-0.500767887,-1.072159419 +SUIT2,0.249340959,-0.402926225,0.014370352,0.245471016,0.30528886,-0.236325244,-0.106602566,-0.442720328,0.202169519,0.609031081,0.505011535,0.083805386,-0.390741233,0.374011213,-0.029569328,0.331001232,-0.289003463,-0.0588283,-0.84552912,0.324167473,-0.308990436,0.611110318,0.304821272,0.421583977,-0.294254546,-0.395759014,-0.309456614,0.460146958,-0.262339499,-0.857016261,-0.065816945,-0.219893571,1.253829604,1.271926681,0.539637326,1.351032337,0.078490631,-0.114809329,-0.271755696,-0.448580769,-0.115084595,0.414271393 +KASUMI1,-0.022527368,0.389127838,0.489097051,,-0.740570688,-0.4949985,0.087959137,0.511056102,-1.347390398,-0.821128806,-0.212978003,0.289453461,1.594397304,-0.898366885,0.22819563,-0.831263247,-0.047576249,-1.545044841,-0.518209029,-1.312032179,-0.758906684,-0.464495674,-0.577783519,-0.444420277,-0.012325201,0.704020787,0.087064932,0.059217652,0.307298408,0.618541298,-0.686498777,0.155401694,-2.204607156,-1.583768585,-1.680164711,-0.937310966,0.090555876,0.027168599,0.394564454,-0.043721547,0.509243516,1.448758709 +SUPM2,0.092016733,-0.416595852,-0.169000071,-0.363450708,0.382548398,-0.049424399,0.006455627,0.750000226,0.013624513,-0.163965467,-0.73936636,-0.671382577,0.015642164,-0.401942659,0.109363064,-0.449477167,-0.024427827,-1.011881462,,-0.077858368,-1.093226494,-0.93949305,-0.793637892,0.744103107,-0.10475056,0.039921026,0.034975807,0.196463435,0.41751834,0.630209529,-0.204991886,0.581243507,-2.362346759,,,,0.006480076,0.274532163,,0.195138132,-0.001652547,0.054262584 +SKHEP1,0.044772553,0.349033495,0.089634761,-0.728098396,-0.469568568,-0.637970015,-0.228120651,0.988143252,-0.06946574,-0.30900675,-0.590616787,-0.034564807,-0.072672332,0.067364116,0.780647583,-0.247020716,-0.176030793,-0.132634427,,0.178537258,-0.539225484,-0.989435989,0.579321584,0.18334036,-0.530057958,-0.20004161,0.420291384,-0.410971201,-0.305562411,0.319282653,-0.196987987,0.370363768,-0.71608079,-0.811954886,-0.192619801,-0.680900868,0.202685521,0.041388171,0.075813818,-0.373609965,0.00149333,-0.180822359 +OVCAR8,-0.105461951,0.433470552,0.275398216,1.491546038,0.156824175,0.032183557,-0.192242709,-0.516130872,-0.176101464,0.865558656,0.588445561,0.238061613,-0.238550459,0.53863804,-0.318879273,2.216068027,0.162103755,2.166684747,-0.238362345,0.120802437,0.860671624,1.132233828,0.694440551,-0.850595895,0.4676287,1.506157185,0.344511619,-1.464809351,-0.593895077,0.851609969,-0.922738401,-1.07246792,2.858373039,3.711575791,3.331249269,3.232286467,0.780990906,0.170515553,0.215208634,0.072196876,-0.160918442,-0.193388276 +NCIH2172,0.116498135,0.067921026,0.190853918,-0.20074711,0.495143964,0.181956024,0.350476034,-0.217843895,-0.70623526,-0.041571574,0.14995259,-0.345187967,-0.495844955,-0.797435205,-0.077130094,-0.047467638,-0.216076171,-0.049570971,0.553544545,1.889912146,0.715720802,0.25959687,0.416798479,1.073053385,-0.128993139,-0.084017561,0.497123165,0.222274685,-0.602261843,-0.979700112,-0.665571706,-1.348525898,0.335298913,-0.050417978,0.391838655,-0.497227161,0.819006361,-0.115663465,-0.025784426,0.050452965,-0.097484769,0.185620695 +ISHIKAWAHERAKLIO02ER,-0.014704386,0.136184652,-1.088864116,0.140301847,-0.572917943,-0.001217784,0.127460849,-0.194785135,0.179787102,-0.516019066,0.01768604,0.241974858,0.274723525,-0.355520918,0.070680536,-0.265720194,-0.031934427,-0.665460379,,-0.733251744,-0.435654668,-1.085210836,-0.678764041,-0.808166598,-0.427900622,-0.386034722,0.670467332,-0.911173039,-0.193153987,0.62458488,-0.551871741,-0.04538687,-1.33583264,-0.868425289,-0.572263016,-1.819674528,0.260814853,-0.029245284,,-0.200536646,0.517264773,0.703310441 +NCIH596,0.167784432,0.556961759,0.215821408,-0.092940615,-0.65520411,0.309596634,0.063899462,0.0343085,0.392258612,-0.814808251,-0.184348811,0.177062775,0.034293741,0.091353276,0.137171379,0.260335443,-0.671228756,-0.102406504,,0.063895872,-0.054987517,0.217947262,0.117969737,0.011094357,-0.234634285,0.244976513,-0.086752129,-0.245011256,-0.718390794,0.462649757,-1.047337885,-0.748990995,-0.687153225,-0.36346522,0.221196661,0.445302271,-0.153673169,-0.014447814,,-0.047664718,0.151989727,0.48652532 +NCIH650,-0.116862017,-0.050615231,0.021534122,-0.410848211,0.623285672,0.014847717,-0.693312769,0.102081052,-0.42619281,0.190812784,0.021642652,-0.804112729,-0.846660118,-0.406111757,0.062688573,-0.522452049,-0.066445225,-0.533177492,1.030445047,0.099667363,0.092212172,0.040020238,-0.287487779,-0.298213336,-0.200238661,-0.484273857,-0.15705709,-0.55103,-0.034029546,0.284744531,-0.455217469,0.580314191,-1.149941211,-0.156453107,-0.474588441,1.007268092,0.100668926,-0.05604259,-0.311606344,0.272264529,0.226750204,0.75993279 +SW1573,0.175113735,-0.00010903,0.150997226,0.171037937,0.151683004,0.390960859,0.34195601,0.183192771,0.164655124,-0.300780193,-0.115810483,-0.474117016,-0.641204741,0.102109904,0.241986768,-0.4165762,-0.062379148,-0.602275726,,-0.340928467,-0.742527849,-0.491546295,-0.560525139,-0.103257059,-0.163710574,0.066077478,-0.34705809,-0.046577282,0.353090291,0.305730462,0.075632406,0.168969004,-1.055452048,-1.250921619,-0.452451758,-0.125434186,-0.469725026,0.169031964,,-0.051775928,0.322162414,0.666587609 +SKCO1,0.044819381,-0.212705044,-0.095939837,-2.968729564,0.108688374,0.594316826,0.441723907,-0.224594498,-0.407563332,-0.945864899,-0.137554102,-0.27958937,-0.942408415,-1.781300824,0.414832845,-0.93836398,-0.982992916,-2.004518083,-1.432815588,-0.377992002,-0.559093053,-0.315268444,-0.032542806,0.016484442,-0.528205431,-0.482327194,-0.122351563,0.4622248,-0.202883453,-0.256344193,0.973232019,0.528278138,-1.762254264,-2.57929505,-1.346005261,-1.353569548,0.982527709,-0.039349012,0.246266526,-0.015771928,0.106882589,0.23555171 +KARPAS299,-0.130797448,-0.732580959,-0.09809274,-0.177874135,0.327405921,-0.179112071,-0.505443164,-0.647545826,0.573646184,0.109778929,-0.306398336,-0.893569421,-1.56670576,0.058365108,-0.270056635,0.227422604,-0.040617548,0.43234859,,1.001842466,0.615968631,1.040341894,0.31954461,0.388848668,-0.095927539,-0.049329362,-0.864157581,0.273259623,-0.579769869,-1.378563157,0.005482225,-0.6276812,1.092401484,1.168893328,1.433846402,0.794324505,0.340439528,-0.237593046,,-0.200646884,-0.61763534,-1.313218105 +YAPC,0.077538209,0.205483462,0.181686729,0.006292543,0.193509765,0.410142973,0.407107106,-0.034037653,0.129348225,-0.654335111,-0.499861156,-0.266382509,-0.704792914,-0.50999452,0.044219968,0.014481266,-0.176281121,-0.570064878,,0.034620581,-0.577277331,-0.445142028,-0.248976951,0.476055649,0.010936269,-0.198010117,0.0903873,0.098646184,0.201599303,0.226470791,-0.252436742,-0.237399741,-1.012080889,,-0.444043491,-0.602022225,0.089975001,0.083405714,,0.04335573,-0.52667425,-0.831009223 +A253,0.166154318,-0.386097876,-2.270091509,0.36130968,-0.088043694,0.062150608,0.407739429,-0.091789614,-0.279917623,-0.637503392,-0.349019928,0.281293908,-0.02193111,-0.456989935,0.419174024,0.563212256,-0.684062624,-0.365403869,1.206001327,-0.087724845,-0.069922383,0.045210993,0.173122104,0.189839929,0.489453891,0.288654614,0.417966122,-0.361133951,0.071621713,1.166662055,-1.159498132,-0.657183213,-0.557244144,-0.06996227,-0.01722654,0.580841777,-1.324072835,-0.042834759,0.524097481,-0.073883884,-0.102604915,-0.186155006 +HCC366,0.047244389,-0.676819149,-1.261109744,,-0.349561645,0.072795719,0.532717455,0.760638436,-1.011176883,-0.935841371,-0.600859614,-0.531877057,-0.257163223,-1.307339814,0.575054393,-1.800671266,-0.051424613,-1.100964367,,-0.653134731,,-0.411279114,-1.054768541,,,0.462648807,0.085841181,-0.765218584,-0.078064208,0.793543868,-1.127277626,0.037985058,,,,,,0.309327359,,0.119063546,, +DKMG,-0.145994129,0.299968824,0.557348074,-0.094152662,0.29875352,0,0.012293507,-0.213948852,0.406050279,-0.188149424,0.059873454,0.665083247,0.41472811,0.244507768,-0.125339135,-0.6814147,-0.052636434,0.27329666,-2.116027987,-1.280729533,-0.51657165,-0.148451225,0.58797636,-1.261091364,-0.114556547,0.588150276,0.477706622,-0.702055288,-0.072865469,0.130057781,0.449721335,0.176684772,-0.821136364,-0.034604289,-0.220250791,0,-0.110325333,0.027230409,-0.558780092,-0.056610384,0.086964222,0.376315389 +SNU349,-0.555971737,0.131165072,0.029580585,,-0.37505836,0.015875275,0.015831527,0.364216666,0.848308801,-0.155494064,0.068592007,0.121192668,0.154587292,0.51702652,-0.885485951,0.360298798,0.029706003,0.608203832,-0.891655657,0.135677298,-0.372035547,-1.376374816,-1.046727471,0.56252804,0.316744345,0.285863027,1.060675048,0.761651946,0.39073904,-0.904725819,0.795959416,-0.018771559,-0.527995603,-0.024691451,-0.314191824,-1.498725067,0.318894247,-0.018359699,0.050238668,-0.054330665,0.343167258,0.271022916 +NCIH292,0.148956685,-0.257185059,-0.276568445,-0.351740432,-0.067492181,0.025869128,-0.018304895,0.603632326,-0.314245188,-0.706433784,-0.499948527,-0.623119464,-0.580531088,-0.835565841,0.002644623,-0.570392277,-0.803707227,-0.996781571,,0.510434425,-0.230076269,-0.343231108,0.497507943,0.496796426,-0.406059934,-0.731223307,0.41396598,0.224462061,-0.231909528,-0.504958072,-0.245673197,-0.022720225,-0.738391757,-1.037088069,-0.734997403,-0.106471305,-0.715120165,-0.078036909,,-0.185813971,-0.049703973,-0.003684952 +59M,0.157071919,0.339026968,0.209314932,-0.678721299,0.238128645,0.470432364,0.325740979,0.120899798,0.722348297,0.374753186,0.371776568,0.20518199,0.119876297,0.621654332,0.056423354,0.365714121,0.794038086,0.504709945,-3.561562762,-0.567281699,-0.119711428,0.000979895,0.006177311,-0.379362408,0.295068136,-0.124876452,0.944846482,-0.522285828,-0.049979381,0.687501694,-0.436829878,-0.138178313,-1.226722753,-1.17870332,-0.395437176,-2.968732308,-0.316421489,0.051753328,0.084024625,0.089526717,0.566370821,1.250181149 +U118MG,0.105955137,0.49687213,0.97307831,0.727531665,0.161974717,-0.100426642,-0.040143209,-0.168871354,0.79408099,1.034110265,0.480100017,0.582450247,0.256330185,0.861579423,0.089606182,0.652756701,0.710810727,0.912054002,3.883464847,0.840399946,0.772012843,0.65160561,0.681961805,0.357522981,0.185038758,0.192751915,0.106977509,0.251948983,-0.087413398,-0.194980481,0.20125855,0.27799136,2.155435825,1.869745678,1.197144518,1.574169376,0.893193307,0.10944316,0.199673636,0.22930385,-0.016612203,-0.243462332 +HCC1833,0.431379854,-0.043246167,-0.303303124,-4.366845346,0.006996286,0.28613018,0.559145894,0.366781979,-0.238211945,-0.2747277,-0.145475691,0.472984831,0.148260677,-0.176258159,0.376068257,0.42950446,-0.161248227,-0.066645133,2.444684661,-0.447934946,0.123171025,-0.00122921,-0.111827018,-0.012838844,0.67535803,0.540371853,0.550938162,0.103951435,0.802077021,0.671408174,-0.75955352,0.113189311,0.957658375,0.563951539,0.434590723,0.288097781,-0.515552283,0.233406838,0.37329156,0.2339468,0.206650222,-0.486239671 +RH30,-0.075524911,-0.197752093,0.321341722,0.231886215,-0.518605343,-0.418359784,-0.097316153,-0.669948346,0.208853766,0.851188272,0.581706478,0.783538291,0.212700549,0.858777122,-0.410288758,0.297665038,0.818548122,1.049934447,,0.271669023,0.240397211,0.352883152,0.686255406,-0.004773471,-0.493733133,-0.639833999,-0.226706019,0.351357228,-0.677090354,-1.719932031,0.782736096,-0.384125829,1.167059917,1.289336803,0.767551513,0.463387322,0.058604721,-0.186757875,,-0.133986958,-0.097404776,-0.098381933 +SNU601,-0.025677036,-0.123414256,-0.007771193,0.230415667,-0.366674813,-0.255919222,-0.235129627,-0.872539376,-0.842795407,0.427364208,0.265887403,0.795758155,0.018676263,-0.262929452,-0.34511156,0.834106825,-0.158144088,0.803532326,,-0.469946404,-0.796802256,-0.964702351,-0.613600144,-0.252074483,-0.384009267,-0.661772317,0.214831549,0.042615332,0.136361776,-0.004717552,-0.223349949,0.215130153,1.133341189,0.431583984,-0.208823461,-0.171579725,-0.851279872,-0.229027465,,-0.271307092,-0.227930533,-0.02258047 +CAL33,-0.119776269,-0.22792238,-0.946992162,-1.165366844,-0.02859228,0.235487328,0.142201855,-0.505206154,0.021776216,0.297623395,0.051316589,-0.000776308,-0.433139971,-0.413888784,0.02943602,0.350007118,-0.278288472,-0.074467439,-2.445627893,0.544094229,0.628248243,0.442575959,0.046929738,0.236195838,0.451411426,0.262829807,-0.102822296,0.139689219,0.154540277,-0.233379737,-0.00925793,-0.107362377,0.68815085,0.634114259,1.078122583,1.100894225,-0.596789335,-0.131143401,0.073309682,-0.091503565,-0.449486527,-0.743159228 +SNU668,0.30853948,0.119306719,-0.179091226,-0.294385647,-0.527154003,-0.184764839,0.347950872,0.757805051,-0.179695178,-0.585258177,-0.508352294,0.083995919,0.603009161,-0.145903949,0.151077846,0.16736187,-0.395253882,-0.187932491,,1.062189117,-0.2418207,-0.744306956,0.309447681,1.094697653,-0.064262086,-0.926124284,1.059036292,0.936151436,-0.087791339,-0.018584168,-0.115856694,-0.279562744,-0.111775536,0.015540238,0.369961055,-0.337458615,0.543798935,0.026247014,,0.052632313,0.008108907,0.572557902 +CORL279,-0.118885291,0.419194802,0.294411851,0.434588704,0.07432599,0.244943924,-0.027906383,-0.489088463,0.261285272,0.363801038,0.382535068,0.587123226,0.400600141,0.682613523,-0.032677956,0.551832919,0.017016022,0.667624399,-3.16331427,-0.875196944,0.155544767,0.402061522,0.035542683,-0.615911826,0.269314374,-0.313943105,-0.103027638,-0.100054245,0.041696206,0.587063323,0.744209587,0.061749049,0.955460161,1.398413983,0.675206488,-0.287956029,0.305731593,0.245540104,0.297224313,0.13186219,0.063853014,-0.277924286 +GB1,0.180207336,0.216356013,0.615058611,-1.996639236,0.474743838,-0.067209107,-0.247929638,0.073925956,1.391407419,0.577072061,0.261725599,0.033280758,0.236827508,1.306521348,0.004293672,0.812315823,0.384960148,0.55329814,-0.940135603,-0.075552746,-0.402690588,-0.455683555,0.840200652,0.034205299,-0.399334621,0.019042426,0.686485198,0.757903873,-0.092109855,-0.310874904,1.234902633,0.361941166,-0.086851827,0.139204738,0.077758403,1.192259769,0.170723899,-0.048077492,0.774570106,0.014623676,-0.189584996,-0.467129536 +KURAMOCHI,0.018376398,0.54686568,0.255944109,0.12409582,0.121225583,0.444983276,0.477090394,0.5159866,0.814640457,-0.723224617,-0.340429608,-0.311407807,0.078414511,-0.035416621,0.262822975,0.740994445,-0.031474261,0.573676469,,-0.004251717,0.22409166,0.560983318,-0.479504795,-0.050810473,0.427769861,0.676240609,0.027006397,-0.774617818,0.034162674,0.667459499,-0.445920398,-0.231510517,-0.115979699,0.90955798,1.114022773,0.620586634,0.859419649,0.146673343,,-0.0557626,0.517114661,1.078676177 +COLO684,-0.057962655,0.762478422,0.156714317,0.574510311,-0.650736856,-0.300478721,-0.002983525,0.173185724,0.194370093,0.219995154,0.509755432,0.625479659,1.184928881,1.173882283,-0.30098024,-0.640465824,1.417024526,0.576176317,0.198803963,-0.866622333,-0.407859883,-0.658402105,-0.948788774,-0.823349253,-0.009539876,0.06994454,-0.016533229,-0.329325401,0.335647072,0.261265027,0.338217104,0.437986278,-0.326561371,0.112424228,-0.239090189,-0.662155339,0.066081807,0.08358206,-0.152072601,0.014732652,0.115252886,-0.158263194 +SNU685,-0.35976081,-0.408924133,-0.821825644,-0.2273957,-0.630857069,0.013824746,0.053308563,-0.275813882,0.605754977,-0.661407654,-0.219681771,-0.27932301,-0.084602488,0.163526086,-0.165025166,-0.41007781,-0.11624289,-0.541951496,0.335424514,-0.622637213,-0.541541891,-0.477671222,0.097768985,-0.248917478,-0.391222614,-0.541123244,0.657547365,0.100698472,-0.426174329,-0.256418703,0.050774493,-0.430528181,-1.403802927,-0.519383539,-0.021130471,-0.838385595,0.267007233,-0.167065738,,-0.23700149,0.206668512,0.360462014 +SNU886,0.081183499,0.075130946,0.181316311,1.049937076,-0.223944967,-0.063409709,0.0193226,0.36874997,-0.52378965,-0.032062017,-0.171153586,0.007253342,0.02210759,-0.407134618,-0.016505879,0.052689009,-0.019272462,-0.155117322,-2.181958025,0.698274378,0.120172542,0.249373428,0.542503701,0.603355692,-0.039284485,0.720501941,0.192265988,0.235848057,-0.323117351,-0.141797096,0.231885337,-0.058800756,-0.129974991,-0.777976491,0.399388545,0.294968416,-0.366316434,0.102041038,0.000936174,0.005238874,0.081498741,0.166840689 +NCCSTCK140,-0.046216197,0.906633923,0.22597407,-0.436858729,-0.283259168,-0.069370818,-0.006895763,0.185352253,-0.648695881,-0.161194123,0.129811337,0.35710939,0.526375558,-0.1898357,0.009035506,0.572191261,0.025769575,0.447590514,-1.577055166,-0.686484783,-0.384687044,-0.261390106,0.222940599,-0.223468767,-0.149953327,0.003665026,0.095359193,-0.037423419,-0.002304938,-0.122160511,-0.398906973,-0.633728131,-0.056987644,-0.576142027,-0.010533665,0.534055616,0.37068663,-0.025398786,-8.923471056,-0.061369145,-0.006207006,-1.603977299 +NCIH3255,-0.224351054,0.292987518,0.116667025,-0.311768425,0.408624847,-0.211042039,0.208149703,0.128968716,-0.239756282,0.47628062,-0.0700184,-0.740625609,0.136109861,0.06063107,-0.080485254,0.255213498,-0.431140108,0.145903818,-0.065515239,-0.171465628,-0.724365323,0.557428757,-0.333410964,-0.014026607,-0.618316115,-1.534576294,-0.041286952,0.253034166,-0.020863797,-0.519832155,0.704017136,0.530777289,-0.395026427,-0.182482634,-0.596895952,-0.407237319,0.272125399,-0.036966244,-0.111934655,0.074790022,-0.561198636,-1.523554907 +SNU719,0.024561304,0.646927951,0.659201,-2.17078718,-0.287608868,0.003381528,-0.071319971,-0.614065279,-0.555602915,0.576129636,0.683598972,0.817048951,0.476072243,0.363932309,-0.122057875,0.261341397,0.678318743,0.695158742,-0.002145521,-1.043471037,-0.815065929,-0.838528957,-0.424715482,-0.645165621,-0.502452671,-0.337644572,0.081552827,0.300380125,0.317332148,-0.00738813,0.589630601,0.417685808,-0.247824345,-0.528867844,-0.740215145,-0.223785455,0.45232599,0.045813265,-0.088493352,3.62E-05,0.025258546,0.404366777 +SNU489,-0.0756682,-0.047179566,-0.151574776,-0.221548467,-0.028330558,-0.17904723,-0.145085431,-0.332204513,0.081210316,-0.082332678,-0.306891015,-0.027514652,-0.322122912,0.075658438,-0.190502507,0.029573956,-0.105958394,0.234375256,,-0.389226094,-0.250755839,0.315701401,0.665505396,-0.269420033,0.093303002,0.272547325,0.356417294,-0.705015286,0.219027028,0.473155601,-0.784720891,0.212786091,-1.258563589,-0.614543191,0.055677863,0.000436098,-0.678124358,-0.068061608,,-0.052213773,-0.161830347,-0.410718733 +SNU81,0.020200272,-0.163615114,-0.316057572,0.016365891,-0.81013149,-0.245062089,0.039194458,0.057556968,-1.178351673,-0.105934268,0.257214502,0.467560085,0.648211457,-0.379203309,-0.050595543,-0.666510834,-0.003124902,-0.868947304,0.231484088,-0.185580571,-0.814737439,-1.411554802,-0.936465008,-0.135911929,-0.54138144,-0.842877317,-0.613546932,-0.074568021,0.475461042,0.10397889,0.212360277,1.03143471,-1.16421606,-1.248641056,-1.778335559,-1.244181613,-0.304198199,-0.041878356,-0.310129551,-0.074740975,0.363581385,0.527823381 +A2058,-0.067401062,-0.196335111,-0.483057605,0.484487988,-0.223322252,-0.4758039,-0.123699874,-0.378839621,-0.647934958,0.03360607,0.233180875,0.023126048,0.164656623,0.203593755,0.019127031,0.000580422,-0.139237307,0.074541985,-0.509260455,0.127822071,0.292575669,0.214249987,-0.297714001,-0.169612046,0.140777143,-0.46681032,0.086446494,-0.662039416,-0.771922984,0.23691128,-0.171193788,-0.228197305,0.409295818,-0.199176886,0.303111715,0.422642047,0.342218028,0.030017944,0.432321386,-0.211925725,0.179877597,0.110170056 +SNU1040,0.236156499,-1.407350059,-1.066425293,0.385542833,0.401048831,0.404744067,0.067911884,-0.378828974,0.303902913,0.360299197,0.256441391,-0.092601397,-0.360817357,-0.013119365,0.139932224,-0.035167718,0.41412957,-0.428374015,2.029324224,0.089472896,0.376787834,-0.171150857,0.036461122,0.06017735,0.530955588,-0.074742648,0.146419844,-0.207390146,0.936061385,0.510818468,-0.075825348,1.041228986,0.292347202,-0.197353098,-0.969841292,-0.711711778,0.162019534,0.132138316,0.236513809,0.212475723,0.396273478,0.370292648 +SNU1076,-0.463105683,-0.298980764,-0.4612286,,1.254343962,0.355648235,-0.060883115,-0.050976927,1.053223626,-0.460705614,-0.197513337,-0.979950138,-1.170022678,0.157217587,0.320896896,-0.032374241,-0.284282597,-0.246281025,-0.959330861,0.155215824,0.093424563,-0.40364698,0.551884503,0.436750496,0.390359846,0.380592115,0.857398629,0.309066539,0.281409431,-0.520152283,-1.09199417,-0.576524282,-0.180009367,-0.119103692,0.0184897,-0.565086796,-0.625395346,0.114091848,0.030666543,0.000636883,-0.227965344,-0.487252873 +SNU175,0.195038178,-1.477436355,-0.842632565,0.391921766,-0.250686337,-0.098068529,0.118286888,-0.707160555,-0.268873898,0.223500884,0.875318828,0.830276201,0.30211936,0.373770542,-0.01830601,0.683710609,0.298402282,0.603715024,-6.370191789,-1.117200809,-0.137869104,0.148590817,-0.015544248,-0.85123621,0.332161417,0.867765305,-0.151005435,-0.307309608,0.448802478,0.578888027,-0.793236672,-0.264732788,-1.555585056,-1.974358198,-0.737141031,-1.987501913,-1.2481616,0.033673345,-5.803053353,-0.062047733,0.362779673,-1.043289552 +SNU407,-0.034607842,-1.482833773,-1.163784025,-4.521079655,-0.336112868,-0.182741601,-0.132179227,-0.227754648,-0.324060603,0.781892623,0.201124974,0.151042682,0.055089482,0.049631017,-0.29051933,0.332789625,-0.135080276,0.475524176,-0.903536636,0.74550829,-0.196344907,-0.639050051,0.42628214,0.499987404,-0.322120233,-0.510728577,0.416733304,-0.012506282,-0.482220823,-0.770217112,-0.698016826,-0.287221529,1.865891111,0.22658399,-0.750712298,0.608022177,-0.232827473,-0.243780847,0.144603502,-0.528906491,-0.341441366,0.148622306 +SNU201,-0.023588394,0.473219285,0.420181008,0.110583581,-0.094085107,0.088304231,0.085940856,0.084323878,1.002396915,-0.14704971,-0.066973675,0.070212131,-0.075522298,0.669331832,-0.015464199,0.412280617,0.3687642,0.896299925,,-0.54829428,-0.03123982,0.503265524,0.793057087,-0.661202429,-0.025952894,0.482006621,0.421837279,0.050354949,-0.024663351,0.462572453,0.026954952,0.45530916,0.062126278,0.733583595,0.838695911,0.875917698,-0.150845283,0.076501488,,-0.003533306,-0.011233498,-0.405836702 +KMS20,0.036028563,-0.113236972,0.526427918,0.527002147,-0.114652505,-0.192200522,0.287471024,0.019176325,0.010821398,0.4345543,0.24669469,-0.019149078,-0.101264738,0.190621674,-0.109203828,-0.000670457,0.253542382,0.242147705,-0.525598476,-0.292765662,-0.745399342,-0.000979895,-0.72835468,-0.06190146,-0.139140853,0.148107435,-0.485702538,-0.184521027,0.179739739,0.785081405,0.156500352,0.833382591,-0.730275228,-2.28105015,-0.919194574,0.658596644,-0.626082829,-0.192091345,0.012369764,0.006318634,-0.821547757,-1.365805724 +SNU216,-0.140649518,-0.948577822,-0.885888551,-0.307418911,0.743571145,0.211084979,-0.449165995,-1.042478511,0.471650142,0.263770595,0.020355321,-0.267440525,-1.231915337,0.104388741,-0.086645809,0.144344986,-0.051312237,0.04775979,,0.151041404,-0.219257123,0.092755823,0.452380786,0.274309457,-0.320731522,-0.209908546,0.001108733,0.388250725,-0.511630907,-0.985063479,0.484543261,-0.510793313,-0.286992798,-0.046664038,0.12435743,0.585794464,-0.255696826,-0.273233143,,-0.172128192,-0.511653761,-0.404476929 +SNU1196,-0.322765905,-0.005444094,-0.126000672,-0.098654621,-0.421241769,-0.271417115,-0.055849199,-0.262922914,-1.16805728,-0.0670769,-0.251581982,0.249098859,0.215888008,-0.741013847,-0.463337069,0.497051932,0.343952393,0.79575843,,-1.020144102,-1.11604674,-0.925209912,-0.905380884,-0.786748809,-0.50982639,-0.712549035,-0.32261582,-0.368471103,0.072228791,0.124127768,0.166250653,0.339169436,0.011630822,-0.266760282,-0.305213266,-0.192306951,-1.20313367,-0.418870855,,-0.160201987,-0.612049322,-1.025461807 +SNU1079,-0.083331534,0.530468463,0.699631712,-0.175420114,-0.786219118,-0.122455029,0.259386345,0.743155913,-0.621896099,-1.198096607,-0.62358253,-0.13017913,0.372650947,-0.508638906,0.130855228,-0.060882463,-0.167118776,-0.162101408,-3.635192422,0.112291326,-0.68166582,-1.139892059,-0.08897187,0.027054998,-0.424838856,-0.083982274,0.146657226,-0.240234016,-0.043280175,0.40578254,-0.027031225,0.20438699,-1.493875499,-0.587818622,-0.298452158,0.487243413,0.124830528,-0.000457138,-0.298000847,0.028293199,0.116631172,0.136096368 +HCC1195,-0.281713622,-0.27343826,0.758086643,-2.253980862,-0.129151774,-0.064904768,-0.072368094,1.268321806,-0.097009089,-1.0493159,-1.447245307,-1.545238353,-0.357931147,-1.439608566,0.160429062,-1.37206294,0.096815328,-1.071549901,,0,-1.373613272,-1.478917564,-0.792002076,0.840335569,-0.954137332,-0.761321931,-0.012326506,0.950040154,-0.579315133,-0.743551343,1.177035659,-0.002742194,,,-1.739771852,-0.685475734,0.81516731,-0.113773419,,0.025374715,-0.282621871,-0.67537071 +NCIH854,-0.240389598,-0.283503358,-0.489558542,-0.208929153,-0.224096686,-0.476034741,-0.599514123,-1.350549821,0.191875555,0.246808722,0.142924761,0.08375265,-0.401137118,0.523837688,-0.524499678,0.344452511,0.083810167,0.240895774,,-0.92274826,-0.747049287,-0.663276356,-0.166569115,-0.847930501,-0.401007237,-0.211988851,-0.291652146,-0.002147685,-0.273566339,-0.958989888,-0.015361001,-0.46151143,-0.225345412,-0.182887795,-0.272939338,-0.226211575,-1.152612701,-0.445008437,,-0.418614858,-0.246673724,0.049006858 +SNU466,-0.05145855,0.49591332,0.040337973,-0.233740219,-0.719374919,-0.108304956,0.030457377,0.145552187,-0.266898952,-0.746580394,0.009717074,0.408305892,0.100890833,-0.23650758,-0.148701719,-0.112135313,-0.542117506,-0.400259606,,-0.703041444,-0.66577267,0.104394295,0.22498719,-0.686900151,-0.566979071,0.395225579,0.162517061,-0.523082688,0.09832858,0.167437308,0.125638065,0.449141604,-1.308460849,-0.896373281,-0.455257579,-0.004146087,-0.317073296,-0.141510347,,-0.065271567,0.089877862,-0.029427538 +YD38,0.032911541,-0.749731225,-0.379428196,-0.374969375,0.64171176,0.023660159,-0.519417405,0.03652932,0.536388235,0.496553409,-0.009857812,-0.600099987,-0.959762303,0.279874325,0.048850975,0.560530251,-0.27975084,-0.112403845,,1.097454692,0.441636877,0.133454941,0.299324569,0.767135431,0.273777318,0.038794099,-0.233527781,0.253626963,-0.191806578,-0.611501964,-0.403370823,-0.953550726,0.991966208,1.295987688,1.086683723,0.635425121,0.394320108,0.019265239,,-0.020384633,-0.279423507,-0.335904152 +SNU1105,-0.041228409,-0.177735546,0.1704461,0.438670114,0.006959943,-0.076718936,-0.105897232,-0.648656065,0.926433715,-0.026700616,-0.060451986,-0.242617563,-0.509602807,0.600282085,-0.267598707,-0.001704479,0.109905204,0.172068601,1.625131656,0.297961653,0.349292427,0.068527239,0.308519389,-0.10833073,0.214325951,0.313693774,0.040114156,-0.12110439,-0.00681698,0.4560642,-0.050162214,0.121467081,0.634949062,0.77242267,0.688556167,2.166699306,0.04147781,-0.003760938,-0.14339784,0.09452015,-0.259281598,-0.530171924 +SNU283,-0.656215291,-0.647062882,-0.596642889,-0.900455943,-0.314524557,-0.162747859,-0.421357743,-0.955051509,-1.516841877,-0.343041646,-0.092275758,-0.325957103,-0.88919236,-1.167045448,-0.163639802,-0.857015929,-0.098612735,-0.943982419,-3.534287211,0.265356913,-0.331060196,-0.628686978,-0.218387987,0.631465159,-0.413407519,-0.706642964,0.021934131,0.797653164,-0.266391992,-1.219009919,0.298715882,-0.593895285,-0.975660968,-2.418561538,-1.288317226,-1.54332746,-0.119564767,0.07208425,-10.58185862,0.14064328,-0.201904094,-0.339090653 +SNU46,-0.558270989,-0.30554847,-0.230151836,-0.534524279,-0.557328445,0.238348429,0.04650722,-0.207912758,-0.751309036,-0.984737688,-0.5072795,-0.619089924,-0.571405203,-1.097812993,-0.405884949,-0.527151273,-0.098448544,-0.512327708,-0.765672345,-1.179220677,-1.42108985,-1.527188209,-1.255380382,-1.077785927,-1.237760617,-0.939639837,-0.42915559,-0.525481899,-0.044622044,0.194509987,0.227916047,0.198975554,-2.368849534,,-1.72264836,-1.449157105,-0.665574018,-0.34574112,-0.053385825,-0.295584136,-0.299449065,-1.888551557 +SNU308,0.074500949,0.352678947,0.324878165,-0.185308432,0.056087602,0.240076761,0.208632945,0.600800509,-0.366163549,-0.449135886,-0.191878096,-0.615614265,-0.15727566,-0.012068267,0.145143726,-0.347246008,-0.151100204,-0.347828714,,0.336611129,0.246879164,0.056951184,0.365525454,0.187947095,0.003755647,-0.095022596,0.617829749,-0.030518299,-0.034717015,0.00266538,0.463715618,0.212177682,0.089353756,0.153069037,-0.089892973,0.383996803,0.370459437,-0.062701825,,0.081658357,0.264224674,0.44290236 +YD8,0.223375512,0.00010903,0.007771193,-0.214881873,0.063113378,0.165489854,-0.003481333,0.710748297,-0.816276348,-0.123300317,-0.229912972,-0.57907476,-0.609421372,-0.693832572,-0.230656182,0.341729228,-0.732099068,-0.045895193,,0.885225242,-0.175414356,0.070557635,-0.007384887,0.954678413,-0.076466175,-0.117527197,0.051915225,0.301676418,-0.099109536,-0.165258002,-0.147048173,-0.618380804,0.913260841,0.702964521,0.445288783,0.408199552,-0.346760594,0.228179417,,0.074801394,0.22368347,0.516535455 +SNU245,0.196357856,0.030025752,-0.100916562,0.313342585,0.259220113,0.366197155,-0.172192869,-0.490774303,-0.991701116,0.773282602,0.854597718,0.730723948,0.173412435,-0.57684953,0.091388223,0.179224977,0.203302741,-0.149898742,,-0.009241871,-0.92965709,-1.173903795,-0.482299685,0.309602122,-0.696119101,-1.075238117,0.061453018,0.506435145,0.066011576,-0.608195204,0.744415651,0.462830904,0,-0.925601319,-1.049431508,-0.671425078,0.058165686,0.044663652,,0.082134187,0.121879707,0.473580567 +SNU478,0.234884445,0.081812155,0.026011138,-0.776700676,0.003083717,-0.091088187,-0.264816943,0.156016734,-1.265209286,0.73056953,0.63973067,0.394838015,0.495969454,-0.4836277,0.140764555,0.390208155,-0.243279179,-0.090539798,0.273251848,0.307954805,-0.085193589,-0.21683358,-0.252083332,0.505779474,-0.06231622,-0.218320356,0.159248085,0.581246528,0.17674239,-0.320271046,0.37813067,0.034029716,0.831763669,0.049127518,0.225190833,0.306831233,-0.142233301,0.034506296,-7.529207062,-0.016831148,-0.013486154,-0.239475617 +SNU410,0.21173251,0.37728727,0.528008681,0.091853947,-0.339784764,0.171839712,0.158863756,0.364900388,-1.186674624,-0.206599139,-0.019408702,0.454385345,1.010701943,-0.769783905,-0.047534524,-1.116796228,0.246866657,-1.342878875,,-0.642070264,-0.018102445,-0.700525528,-0.548877163,-0.270733426,0.060418412,-0.915631307,0.576409447,-0.219313699,0.036699267,0.336917242,-0.448954421,0.601720437,-1.463005486,-1.171070449,-0.791952911,-1.57414744,0.023459236,0.03480531,0.023059482,0.057772092,0.180466824,0.303938062 +SNU899,0.150619199,0.168583047,0.32649469,0.199121629,0.527332118,0.294272968,-0.246912422,-0.347812762,0.093485719,0.370042785,0.331922706,-0.123481322,-0.222828019,0.053091046,0.13892968,0.02236106,0.000636813,0.01119292,,0.240795769,-0.448838982,-0.81451183,-0.306213746,0.655663889,-0.322123742,-0.536436074,0.454042136,0.45360291,0.135080313,-0.626005784,0.568822834,0.393327583,0.22808455,,-0.535974882,-0.32172047,0.622280526,0.133363848,,0.175866137,0.050555556,-0.317831014 +SNU503,-0.221825903,0.466062554,0.006484209,-0.100758831,0.337002753,0.330365417,0.185679768,-0.021427331,-0.206709338,-0.101105556,-0.206458895,-0.005416721,0.052986581,-0.214244629,0.05279625,0.669668299,-0.08165871,0.143247005,-5.002533991,-0.648000109,-0.212289163,-0.148935605,-0.406726543,-0.389568031,0.088521485,0.108476906,-0.322823221,-0.384466242,0.320482381,0.527919383,-0.427794428,0.226397536,-0.918869065,-1.737231962,-1.012375376,-2.214514299,-0.616792445,-0.027861434,-9.745250818,0.060856299,-0.348896951,-2.195176791 +SET2,-1.521300438,0.934546588,0.948686414,0.775953134,0.423830686,0.344898235,0.54684301,0.605702347,-0.231887609,0.180212559,0.061905686,-0.001257569,0.270834284,-0.598386096,0.49015435,1.187400178,0.476834606,0.971987301,0.199418862,0.123690187,0.311567217,1.067915439,0.547382094,0.588342521,0.446647157,0.429668209,0.279484249,1.012347222,0.392031647,-0.092555073,0.568334532,-0.225458461,1.265584457,0.523767375,0.583974295,1.650592262,0.878700414,0.414378695,0.563934954,0.47870915,-0.266265594,-0.437174892 +SNU738,0.025147283,-0.23166854,-0.154376596,-0.18355928,-0.773814165,-0.297153728,0.619084531,0.469674706,-1.513696741,-0.663476307,-0.394210286,0.022087737,0.406062563,-1.483958912,0.121164436,-0.304177563,-0.345979487,-0.754285807,,0.087301341,0.771956107,0.825952176,0.991467248,-0.109583366,0.897081673,0.296710689,0.369971185,-0.679106677,0.592333261,0.332777651,-1.221812541,-0.036609118,-0.596448852,0.175321726,0.283232356,0.492226562,-0.644499631,0.020353758,,-0.020757136,0.128732196,0.139133293 +SNU626,0.53623648,0.235018591,0.534154969,-0.009391454,0.743235154,0.267509091,0.74993622,0.212933776,1.594135238,-0.229972384,-0.48335149,-0.492832913,0.001757583,0.633842011,0.210768696,-0.517724033,0.142007282,-0.229359197,,-0.286982998,0.007733017,0.093033099,-0.295461143,-0.061155097,0.06424027,-0.379445243,-0.060367688,0.282408456,-0.080195225,-0.491800971,0.92334821,0.552231445,0.082548065,-0.70128255,-0.127563579,-0.14316388,0.115079516,-0.078252574,,0.181628854,0.202160274,0.00876986 +SNU869,0.02404522,0.188198835,0.675552637,0.262296453,-0.004141991,-0.11522882,0.08437597,-0.052258075,0.447639379,0.01613404,0.229799878,0.028616808,0.130785958,0.72354058,-0.003385245,0.419142525,-0.110780457,0.413481626,,-0.448753925,-1.378780187,-1.351560624,-1.284102352,-0.152085221,-0.936138628,-1.16907801,-0.30536103,0.32690821,0.056674727,-0.462311923,0.830080462,0.671778239,0.137631405,,-0.603698602,-0.667995218,0.316745523,-0.029694789,,0.000190867,-0.168217732,-0.000251238 +SNU878,-0.248342782,0.45384247,0.601526461,0.46676893,0.195461933,0.046832648,0.031129714,0.288432297,0.500991287,-0.242598592,-0.424031351,-0.596732488,-0.349640941,0.006426348,0.373544887,-0.231699274,-0.491291536,-0.705463631,-0.949459823,-1.172937159,-1.171574497,0.812136513,-0.448202873,-0.606770742,-0.862572401,-0.409092039,0.070346482,0.064172743,-0.154469284,-0.033655084,1.004172174,1.178771096,-0.840735616,-1.077989648,-1.074401266,0.79801562,-0.021619858,0.085783903,0.008481487,0.154635184,0.707815056,1.126140634 +SNU840,-0.089041551,-0.042854026,0.02814831,-0.282547077,0.207749558,-0.242258646,-0.135665862,0.346292663,-0.528188264,-0.289149786,-0.957078843,-0.908947001,-0.518237533,-0.566835456,0.040301354,-0.333532132,-0.280836489,-0.457575591,,0.580711049,-0.074340636,-0.056065022,0.368842949,0.566683685,-0.200651814,0.306547048,0.260815399,-0.126576466,-0.179710541,-0.361081688,-0.246340773,-0.211191508,0.137542123,,-0.305233084,0.2408001,-0.03991848,0.021361986,,-0.026245218,-0.438739574,-0.575703466 +SNU8,-0.424918294,-0.114994522,-0.248721521,,-0.182967981,-0.094377637,-0.290127959,0.361970088,-0.481893945,-0.363002494,-0.736104429,-0.611541136,-0.322795408,-0.240377824,0.011833362,-0.645795109,0.029956473,-0.467974293,,-0.047494268,-0.192688887,-0.126284363,-0.381878384,-0.041930617,-0.131361175,0.361843819,0.029070864,-0.388240328,-0.127320604,0.173627823,-0.395195418,-0.078312732,-0.762598229,-0.476567664,-1.001268844,-0.864440406,0.672612174,0.053554747,,0.015170824,-0.133657878,-0.421820019 +NCIH684,0.075642758,-0.102147634,-0.014622368,-0.128432597,-0.185487414,-0.354824156,-0.211461264,-0.636322085,-0.343881977,-0.30477166,-0.328907226,-0.016185761,0.282861744,0.188852879,-0.316222638,0.65528106,-0.521677174,0.167431544,,-0.173167116,-0.039019144,0.049600333,0.274909752,0.200718645,-0.463117589,-0.90304688,0.135211192,0.287698185,-0.351754502,-0.583743811,-0.183063556,-0.405454813,0.81345564,0.342837057,0.298999539,0.340452062,0.523040874,-0.270290884,,-0.231206044,-0.078399674,-0.019089854 +IGR39,-0.009696198,-0.144420045,0.29170485,-0.069287122,-0.092812456,-0.30573078,0.002983525,-0.04226986,-0.31616823,-0.0031358,-0.267044065,-0.190473928,0.076978339,-0.040660575,0.018733728,0.23622469,-0.137478911,0.120242785,-3.106698584,-0.332921092,-0.16695317,0.213467602,0.211461917,-0.311807821,-0.201666613,0.097976707,-0.057609032,-0.175720523,-0.026793083,0.443795169,0.304384566,-0.081785894,-0.118030172,-0.709201943,0.344030147,-0.002774585,-1.012010244,-0.053330697,-9.434377911,0.003598627,0.127985907,0.132740812 +DAOY,-0.196186704,0.107940722,0.319436294,-0.029288909,0.423095631,-0.286341507,-0.439745224,0.477811151,0.454684811,0.616964559,-0.204516194,-0.498399512,0.101165887,0.617416573,0.461155458,-0.100491043,-0.307212172,0.089290031,0.528370181,2.235316993,2.713520317,2.699787461,1.430155251,-0.534736863,-2.241152904,-0.679089016,-2.153624657,-3.860806391,-3.716640248,-3.557736383,-4.831127187,-4.690558995,0.806193868,2.424682082,2.419830289,0.497573917,2.148289042,0.240430689,-0.408230157,0.023922569,0.057819736,-0.008561557 +HEP3B217,0.103697451,0.333210107,0.261498415,1.183158058,-0.198421036,0.069804919,0.183129628,-0.094171047,-0.271576587,-0.36766213,0.168940884,0.494150247,0.137333205,-0.141126153,-0.287259382,-0.021740035,0.341528512,0.327060057,0.931081837,0.012625316,0.712996266,2.010471233,0.181565587,-0.19349314,0.239680133,0.330738572,-0.041736752,-0.160371372,-0.075214629,-0.151218874,0.130189992,-0.214970893,1.384660161,0.80477451,0.253387965,1.442648365,0.241363288,-0.014033015,-0.0410396,0.035312505,-0.020791709,-0.129839552 +KYM1,-0.572915378,-0.312250357,-0.306599105,,-0.375659332,0.156954446,0.405168882,0.275802225,0.973067399,-1.099772102,-0.57945013,-0.37484332,-0.583363517,-0.097992388,-0.17018634,-1.395628246,-0.533686089,-1.74551026,0.27694404,-1.032165825,-1.652035007,-1.765379859,0.188086934,-0.318006941,-0.886572641,-0.021882714,0.899220835,-0.18603975,0.288209416,-0.026027737,0.696599193,0.746558673,-1.825337694,-1.601533888,-1.696240627,-0.791973352,-1.20604039,-0.026044762,0.085113178,-0.093289419,0.40911147,0.626514794 +LC1F,-0.336587986,-0.719185253,-1.154102832,-0.661980904,-0.51330434,-0.419411064,-0.568791724,-0.232783886,-0.715439951,-0.378360571,-0.446244729,0.034246648,-0.100807816,-0.915301668,-0.422135466,-0.390908781,-1.036580311,-0.804378389,-2.448121336,-1.156039216,-0.589530386,1.716464768,-1.59060396,-1.581036526,-0.17263214,-0.635202837,-0.842661353,-2.223911131,-0.308650101,0.529606764,-2.357090937,-0.856994676,-0.8820389,-0.296661015,-0.023362894,0.478231108,-0.584163524,-0.668325534,-0.772973257,-0.678527676,-0.894508478,-1.304470838 +CMK,0.083696974,0.60474867,0.281935183,0.244791219,-0.530909945,-0.213613612,0.331961886,0.260226563,-1.380347905,-0.277171179,0.052638243,0.675130252,0.444526076,-1.659006717,0.103241005,0.377346145,0.397451172,0.510532891,-0.217621284,-0.416081923,-0.323638622,0.657796473,-0.491674855,-0.073056951,-0.188303975,-0.21265708,-0.331800075,0.362211446,0.007154083,-0.157203899,0.645272576,0.081362012,0.504127126,-0.049610332,-0.739101816,-0.45383198,0.115126013,-0.067506256,0.031228349,0.101212471,-0.04668543,0.108232853 +IMR32,-0.332349766,0.319859674,-0.002269102,-0.072900233,-0.349745472,0.021814652,0.146969893,0.309008858,0.437903926,-0.882162267,-0.65154271,-0.372899916,-0.046885998,-0.204538159,-0.218593395,0.418720632,-0.541492098,0.3961465,,-0.211256276,0,0.354210437,-0.532938132,-0.307613905,0.132968607,0.56798761,-0.352336365,-0.686250562,-0.146677518,0.280362411,-0.649842044,-0.564852682,-0.614991112,0.488817044,0.954866317,0.311423759,0.515726013,-0.138933314,,-0.193965365,0.180096779,0.877326669 +SUDHL8,0.195582723,-1.191983315,-0.391276173,0.872157895,0.176384107,0.050151108,-0.331791029,-0.607144311,0.172316615,0.813823156,0.530217328,0.541828698,0.37534391,0.672774788,-0.167230396,0.236698098,0.843913052,0.438503485,,0.351408242,0.544165369,0.073181769,-0.174596224,0.058094553,0.175869442,0.315133205,0.038808639,0.268202802,0.127520351,0.128193692,0.426109315,0.14076565,0.859231663,1.244666063,0.368048659,-0.308761772,-1.293762347,0.124529133,,0.092480963,-0.288626971,-0.337687928 +T3M4,-0.009826705,0.001512039,0.439395741,0.015900482,-0.378391445,-0.127461941,-0.037189742,-0.599084762,-0.231376502,0.562376174,0.888323129,0.443818906,0.409369802,0.475161471,-0.205175081,0.843829574,0.442609192,0.980014746,,-0.182100253,0.535192556,0.279439842,0.273808629,-0.313230829,0.536974789,0.333198144,-0.540894917,-0.36879202,0.396706723,-0.00266538,-0.48836942,-0.001107918,1.075958217,1.772142944,0.720966594,0.404627575,-0.398109964,-0.029533148,,-0.152596396,0.077243871,0.16683977 +PK45H,0.342771431,0.02545632,-0.57751488,,-0.582317981,0.153360583,0.161233862,0.707185401,-0.546532459,-1.006878427,-0.386251073,-0.557345544,0.161033188,-0.805617924,0.303776378,-0.199371178,-0.465726688,-0.565635226,-0.353731465,-1.415839722,-1.178114304,-1.430431235,-0.138501344,-0.58385423,-0.547959788,0.324365601,0.873487764,0.068147815,0.341947521,-0.520006869,0.631134274,-0.117095997,-1.65100703,-1.121737308,-1.022973273,-0.656489634,-0.53746774,-0.027122282,-0.157391161,-0.057312534,0.245627261,0.258219933 +HEC59,0.162921964,-0.231968949,-0.065919059,-0.165967537,-1.161754946,-0.436651825,-0.027385342,0.438375635,-1.283758607,-0.444190459,-0.303232234,0.538614261,1.110623846,-0.800627136,-0.152081351,0.549977701,-0.619910704,0.547883264,0.218862432,0.134327213,-0.981869139,-1.643816844,-0.497368733,0.043191781,-0.9804609,-0.558971223,0.395039153,0.607516888,-0.164193713,-0.697885906,0.69224691,0.214752683,1.226014638,0.061540403,-0.588571428,-0.789346182,-0.401113232,-0.038997415,0.023850477,-0.220579553,-0.179643081,-0.538897092 +T3M10,-0.02101694,0.305815761,0.181243924,-0.189451245,0.041650371,-0.119828852,-0.122196421,0.754843037,-0.029166353,-0.50906013,-0.810592398,-0.813192448,0.143792158,0.058476012,0.12183394,-0.679329838,0.055707153,-0.682196786,1.620585367,-1.805359686,-1.281105595,-1.242330859,-1.7062225,-1.188292186,-0.678963766,-0.418341503,-0.720389504,-0.406272155,0.024220223,0.615370795,-0.274309674,0.389819106,-1.967169536,-1.4161483,-1.373285488,-1.627478748,-0.004782606,-0.045357069,-0.18603321,0.056440014,0.475290491,-0.016571448 +NUGC2,-0.201878494,0.177422961,-0.068775324,-0.508626592,-0.586463046,0.146947696,0.727442018,0.997211527,-1.288970545,-1.532555568,-1.233959155,-0.552485703,0.517427824,-1.278660582,0.24599944,0.360790949,-0.142639731,-0.612088022,-2.239301683,-0.671072207,-0.202290253,0.036754066,-0.410141424,-0.30877608,-0.043423843,0.294271319,-0.114605963,0.066444752,0.378497203,0.763112666,-0.356243438,0.006682048,-1.180440148,-0.471499314,0.0508032,-0.977760718,0.69147801,0.018724069,0.051154176,0.003134999,0.205313483,0.151309851 +PLCPRF5,-0.083418844,0.474023694,0.585623382,0.073719843,-0.064481914,0.104916319,0.081660615,0.35657348,0.164783725,-0.314123068,-0.0635822,-0.119837969,-0.047108902,0.166103649,0.169076867,-0.03478705,-0.117846259,0.194363672,0.304772773,-0.287109061,-0.540001297,-0.263591106,0.252682119,-0.092472156,-0.535342583,-0.282448639,0.410024974,0.144693372,0.173977413,-0.477867438,0.685523905,0.448494819,0.194649289,-0.220788554,0.0781057,0.647664982,0.084187845,0.058590002,0.014013546,0.020491662,0.410524512,0.818096269 +KPNYN,-0.374334761,0.298188303,-0.141975476,0.282262552,-0.556357915,-0.298515745,-0.276062113,-0.352173247,0,0.536931214,0.54730851,0.615049192,0.618751469,0.339564087,-0.515150424,0.21189189,0.667283289,0.974851805,,0.412239117,1.226669187,1.150955415,0.368889144,-0.275551522,0.722903847,0.859125184,0.129202015,-0.633176298,-0.311828829,-0.202928693,-1.439316592,-1.110473169,0.496071222,1.1495659,1.307806752,0.690403224,0.725282571,-0.101818304,,-0.154102454,0.175509046,0.456726843 +CCFSTTG1,-0.024907574,-0.15315596,0.197253965,,0.186038183,0.274246201,0.04253511,-0.194831031,0.109553734,0.556093051,0.428864482,0.375080951,0.369406143,0.624487722,-0.071573292,0.574125832,0.11415184,0.73056251,3.02058137,0.304374081,0.587061047,0.402368827,0.652618989,0.173695384,0.055634328,0.220077136,-0.120480788,0.297800059,-0.286030855,-0.432958439,0.345334168,0.31589384,1.410992298,0.657527517,1.081233289,0.779852284,-0.908830217,0,-0.629097598,0.215084668,-0.185676886,-0.001623668 +NCIH929,0.626168469,0.471098141,0.596135543,0.328875839,0.510280291,0.341105572,0.676512271,0.31111911,-0.127318297,0.228892621,0.156380764,0.736519222,0.937281303,-0.353790964,0.641353107,0.044222334,0.348105505,-0.561260121,,-1.517256367,0.236420047,0.881238088,0.251955991,-1.847029086,0.106295311,1.491394569,0.624987272,-2.124076585,-0.785601215,1.574114134,-2.413876118,-0.949171458,-1.373224719,,-0.699651625,-0.600459279,-0.940483641,0.492045314,,0.462830454,0.589536191,0.851996438 +KMRC3,-0.800174609,0.519458978,0.092339736,0.252451171,-0.407160011,-0.995568393,0.374752185,-0.361819084,2.04502565,-0.197068419,0.570143224,0.847749641,0.863457093,1.793243611,-0.00754298,0.973492907,0.217124055,1.280451627,0.078787844,-0.346668229,0.417428308,-0.001943077,-1.467173341,-0.283493788,1.016784042,1.135681961,-1.174796754,-0.321594611,0.606409655,0.994527203,-0.421205915,0.048973417,0.039216848,0.852762272,1.332680698,-1.887507546,0.857755225,0.251080534,0.216240594,0.155143163,0.345557272,0.372688972 +NCIH2023,-0.199639538,-0.113763201,-0.077157401,-0.275482792,-0.087802501,0.338506177,0.155029943,0.425582335,-0.260107115,-0.725485011,-0.612475858,-0.637534887,-0.536457898,-0.717192223,0.15551478,-0.027889506,-0.928956195,-0.407983938,,0.222355098,0.463359794,0.422388483,0.413580044,0.217448365,0.073054589,-0.338837345,0.19112297,0.046299008,-0.131626904,-0.304756163,-0.159363141,-0.203365346,-0.099911585,0.042434956,0.249941233,0.441957578,0.674952665,-0.080451408,,-0.10710306,0.09024014,0.321006178 +DMS153,-0.122411783,0.069792962,-0.257498652,-0.746725918,-0.505278828,0.135595226,-0.127241324,-0.428933282,-0.378822146,-0.223316726,0.041602596,0.047636819,0.367395299,-0.53079216,-0.299076025,0.913591171,-0.346962961,0.408372508,1.394554462,-0.131613551,0.810155005,0.218801165,-0.566378239,-0.420184649,0.204475741,0.288325002,-0.260242979,-0.220876692,-0.409293708,0.589739361,-0.98380026,-0.633565213,0.910402939,0.967402975,0.720546564,-0.305614931,-0.118017595,0.030540821,0.26135076,-0.174629868,-0.403713182,-0.927543572 +D341MED,0.060704348,0.185175783,-0.27602863,0.517848737,-0.679390218,-0.360548323,-0.035565022,0.246254608,-0.35356786,-0.261011968,0.00806071,0.727238346,0.652753677,0.395978299,-0.096215457,-0.079349642,0,0.454328336,-0.788377408,-1.499588295,-2.008040893,-1.503037387,-1.392309082,-0.685777501,-1.460911413,-0.066108878,-0.194408308,-0.73059104,0.1378791,0.311980463,0.416221357,0.782209011,-1.778604183,-3.019100615,-1.642179096,-1.725344893,-0.197609389,0.129368854,-0.026373243,-0.115221399,0.116297175,0.621623393 +NCIH660,-0.04420403,-0.219910753,0.225083669,0.006019816,-0.117241519,0.071963517,0.133265655,0.258884896,0.589147877,-0.413877336,0.170499632,0.004514221,-0.171524956,0.264673453,0.00972859,-0.151054678,-0.00540343,0.268343707,,-0.625928214,0.112698014,0.054996015,0.449406809,-0.45931281,0.210337754,0.29022626,0.449307067,-0.263169072,0.033007589,0.527212293,0.12905561,0.077935202,-0.554041185,0.366288112,-0.197653611,0.053559301,-0.3169289,0.054638541,,-0.06659782,0.568029961,0.929086824 +NCIH1618,0.020652841,0.062595797,0.036182691,-2.059070585,-0.331691264,0.0209714,0.214179195,-0.277184964,0.000342397,0.022849066,0.431520631,0.487551044,0.371319326,0.245190405,0.015640944,-0.29331713,0.248330288,-0.431491972,-2.060939844,-0.892061911,0.064887797,-0.045156694,-0.825356789,-0.46635528,0.394020424,0.533332514,-0.181432151,0.096467748,0.343605659,0.523798122,0.269324678,-0.136360714,-0.578894763,-0.26049792,-0.593217641,-1.102813417,-0.411240825,-0.003482429,-6.108511252,0.067016825,-0.272443286,-1.047297291 +PEER,-0.104087543,-0.742484187,-0.395453633,0.043564027,0.543501412,-0.184072706,-0.639615373,-0.954419369,-0.567982715,0.603166821,0.571622315,-0.311959712,-0.839718481,-0.527784117,0.100043581,0.277935286,-0.243105804,0.238754452,,0.535366202,-0.130351499,-0.350675015,-0.119613859,0.768988911,-0.59839332,-1.295394695,-0.796367475,0.672215582,-0.906118098,-1.567052243,1.05414356,-0.498955388,1.008331901,0.22198382,-0.181395392,0.246924992,0.319495851,-0.076200504,,-0.146599343,-0.482709688,-0.46560369 +SKM1,0.099080382,-0.218783772,0.111949857,0.008971431,0.237837406,0.075512986,-0.094572839,-0.636862045,0.460551455,0.620920296,0.237590259,0.244172676,-0.288727523,0.496193631,0.060420958,1.213014399,0.270207447,0.857409311,1.538903597,2.27365332,3.236909906,3.618209171,1.761224825,0.550448389,0.46735662,0.202858991,-0.977982082,-1.715397338,-1.717355051,-2.35335753,-0.31149753,-0.970273462,3.001275452,4.021768972,3.419769123,3.073185384,1.233873004,0.157643308,0.335553317,0.200364999,0.351022928,0.335577133 +HT144,-0.090760122,0.186439129,0.03373244,0.089661663,-0.016071225,0.286098704,-0.174593819,0.429699693,-0.053860442,0.113301251,0.252696655,0.015162347,0.160251055,0.006449055,0.217433229,0.349558708,0.121023532,0.546412856,,-0.202864943,-0.50909781,-0.096400303,0.465810245,0.201010203,0.00137648,-0.191655692,0.083064513,0.343641469,0.412598687,-0.221499093,0.149104936,0.377707198,-0.575910816,0.114919959,-0.224773475,0.013193056,-0.005299151,0.109001873,,0.020218746,-0.165578042,-0.452156889 +HS839T,-0.030275106,0.133184944,-0.51691205,-0.109162491,-0.631689934,0.132728155,0.211427554,0.1671666,-0.906147791,-0.425201584,-0.012596126,0.320318052,0.504820206,-0.930712048,-0.083264952,-0.094325046,0.359439558,-0.227265269,,-1.192038674,-0.64415012,-0.444426541,-0.248892471,-0.120774179,-0.814882407,-0.227198749,0.205145254,0.724585314,-0.186502106,-0.647009402,0.928428372,-0.144552889,-0.65953734,-1.621433174,-0.963453419,-0.531878438,0.185846005,0.119553078,,-0.128998518,0.388014036,0.631041264 +HS939T,0.205301955,-0.612099863,-0.521227679,0.094049742,0.578776522,0.415100517,0.011897926,0.449033777,0.42524944,0.466522636,-0.001025496,-0.256616617,-0.217681875,0.226795617,0.233821382,0.12127065,-0.112674371,0.177583473,,0.241135543,-0.271579478,-0.925633027,-1.282767522,0.749217986,-0.02859567,-0.788041657,-0.380963708,0.784070532,0.204220052,-0.242769836,0.200913985,0.009452427,0.027433673,-0.243129485,-0.939503456,-0.760302436,-0.02302381,0.1297492,,0.022318527,-0.275507933,-1.190355122 +OCILY3,-0.262762761,-0.346006059,0.314141222,-0.109674613,-0.236296203,-0.001036207,0.577604383,-0.548404396,-1.094133403,-1.330135693,-0.936645703,-0.736002504,-0.542186131,-1.750301747,-0.14863052,-0.495994504,-1.20627481,-1.79822746,0.808795264,-0.678074744,-0.4733463,-0.073426922,-0.400794829,-0.588439423,-0.207763169,-0.745643684,-0.467467671,-0.457974406,0.35645671,0.24218437,-0.377812695,0.604133484,-1.346955072,-1.435182425,-2.015162067,-0.941128475,-0.472166158,-0.248875103,-0.110830857,-0.061216614,-0.561949559,-0.780957952 +NCIH69,-0.03200773,0.274000757,0.436124982,0.09594698,-0.226758921,-0.177005812,-0.332644794,0.22472769,-0.795017628,0.259148379,0.264684963,0.161990993,0.192517357,-0.325917337,0.167161361,0.328755362,0.069674282,0.462122867,,0.244469934,-0.659197189,-0.786281385,-0.80699971,-0.071780636,-0.663208373,0.030913875,-0.386727301,0.100699082,-0.095773175,0.145869968,0.431694446,0.364522847,0.535409112,-0.096077436,-0.335154339,-0.604158781,0.494490947,-0.090404634,,-0.096000945,-0.000399965,-0.226760973 +DV90,0.22862928,-1.04042488,-0.299056493,0.870122621,0.716900266,-0.432697205,-1.070282238,-0.283466558,1.203408452,1.784380169,0.69837664,-0.33303338,-0.206435205,2.124987702,-0.344153659,0.692701984,0.939735499,1.81794874,-0.284490209,0.444330414,-0.148370449,0.219610955,-0.300419373,0.191087931,0.077114081,-1.152823937,0.218866167,0.020043673,0.403791992,0.170680264,-0.474760699,0.550823185,1.537989962,1.41929411,0.652676098,1.121342953,-0.02166438,-0.163221786,-0.451293094,0.024942924,0.100905202,-0.036349788 +ZR751,0.069312172,0.491131989,0.072576196,0.881287189,0.38575069,-0.153840236,-0.397253237,-0.306635363,0.790478058,0.448744467,0.059489078,0.076741658,0.036643929,1.159690789,0.082661525,0.357201033,0.450987198,1.031369918,4.319791169,-0.910755555,0.307935098,0.618720311,-0.218368863,-1.039529698,0.56373318,0.669982526,-0.054712939,-1.360060879,0.297598997,0.944322607,-1.872197621,-0.359681534,0.619787934,0.922883959,0.676834849,1.445661341,-0.205543174,0.042657997,0.029153749,-0.088681576,0.419811739,0.551169827 +KG1,-0.097078091,-0.157049527,-0.224469848,0.069886799,-0.666850644,-0.274658673,0.297152773,0.105155362,-0.567466397,-0.80906098,-0.319017028,0.408504511,0.35117923,-0.781700138,-0.074509617,-0.194628841,0.192508709,0.077809722,,0.097005982,0.650543546,0.62742501,0.384238033,0.276857255,0.734696764,0.432788375,0.108038153,-0.245141131,0.049081353,-0.470190075,-1.251265136,-1.078062864,0.197616004,0.389499823,0.46747837,0.611950331,0.354570446,-0.182066016,,-0.208688585,-0.194650053,-0.138970665 +SKNBE2,0.100806955,0.305024573,-0.285875773,1.168740064,0.414910918,-0.400696482,-0.652534977,-0.493694708,0.681753212,1.472984971,0.51907273,0.052111149,0.698895921,1.157277536,0.027612323,0.825421215,0.827227803,1.661491099,,1.232090762,1.052002346,0.848032359,-0.485443335,0.114980559,0.984693621,0.981975519,-0.692238926,-0.698675723,0.326108683,0.180934881,-1.166740249,-0.958191838,2.498721034,1.930220478,1.501981436,0.143322566,1.124363663,0.118024392,,0.060368455,0.033834576,-0.230627195 +HCC70,0.301956291,-0.344068001,0.260543126,0.981650597,0.103522315,0.294816935,-0.267483317,-0.487148859,0.363686578,0.614478499,0.400503154,-0.173216479,-0.37175,0.274092591,-0.542617533,1.011957214,-0.460164412,0.185299113,0.084951475,0.72215956,0.339853723,0.184852529,0.279505254,0.517712394,-0.075274763,0.000476274,-0.337761144,0.571227395,-0.300005814,-1.566239922,0.389199811,-0.768307566,1.665192246,1.563838485,1.151980027,0.916964712,0.567908519,0.177249135,0.021708801,0.835302152,-0.197407445,-0.273154503 +SNU1,0.223788689,-1.321349169,-1.114984247,0.409981266,0.135167142,0.072142475,0.331066079,-0.171912237,-0.773184934,0.38443915,0.357283211,0.571174321,0.014663039,-0.204228908,0.123411267,-0.385991784,0.003124902,-0.657976494,-2.166935372,0.196012372,0.785266238,0.476352152,0.074057844,0.204387244,0.591255549,0.487282794,0.038921925,-0.001937374,0.601946273,0.254787864,0.180993338,0.102306949,0.36044158,-0.521430114,-0.024999614,-0.591258123,-0.653023431,0.126959645,-5.416737907,0.00205809,0.199500152,0.520975783 +LOUCY,-0.212697537,0.348972497,0.304294432,0.851781543,-0.176835657,-0.501295638,-0.609073673,-0.211253415,0.172756913,0.669086333,0.27631089,0.263279281,0.579629542,0.821675827,-0.243992991,-0.014656233,0.849470331,0.71130838,0.560393575,2.330286262,1.689408075,1.900105769,1.167439287,1.248742122,0.590068285,-1.044585171,-0.593616064,-1.129272108,-1.209827047,-1.391796597,-2.587304694,-2.926325571,2.162704208,1.990426717,2.056881909,1.4273186,1.174948187,-0.20061277,-0.526171442,-0.141276962,-0.076574905,-0.337651356 +HCC56,0.451702461,0.11159032,0.210927843,-0.250892259,0.801365143,0.848353919,0.270126251,0.166562926,0.329972974,0.437802745,0.461417164,0.621536241,0.305815456,-0.25793492,0.289150526,-0.441348814,0.433657434,0.453236159,,0.386816607,0.345410095,0.089199376,0.303164003,0.742770916,0.412886537,0.356940467,0.288796601,0.868824335,0.802225247,0.024598925,0.275151274,-0.050400663,0.27563404,,-1.011179055,-0.188863924,0.768151186,0.327268991,,0.579850453,0.267923466, +NCIH1648,-0.215216788,0.387308209,0.564188143,-0.229199748,-0.049503185,0.135723267,0.096637923,0.577865668,-0.441815951,-0.528040229,-0.297005394,-0.494308742,0.056389165,-0.301852391,0.271282841,-0.790002905,-0.216257059,-0.770710271,,0.005282832,-0.484610996,-0.977098008,-0.204142242,0.175436292,-0.450727759,-0.906922852,-0.085805365,0.270921876,0.145642443,-0.260771463,0.388763852,0.362904756,-0.321262827,-1.440307334,-1.199482964,-0.876069019,0.925557375,0.057753587,,-0.041533294,0.342715876,0.590282318 +TO175T,-0.072382277,0.169364943,-0.027125889,-0.919144705,-0.124392186,0.235948055,0.544709401,0.326140123,-0.110875619,-0.363180415,0.063070548,0.080834477,0.008420738,-0.2689877,0.039043707,0.011163582,-0.257724266,0.008595122,,-0.342926263,-0.350397273,-0.460698288,-0.513401242,0.472171944,0.084330673,-0.284804131,-0.256619646,0.348695564,0.075424291,0.159887842,-0.548012032,0.328089442,-0.834080175,-1.87364481,-1.132514656,-0.557888085,0.317211503,-0.11796963,,0.045445039,0.228318293,0.71320412 +MPP89,0.033566296,0.175841812,0.508056873,-0.065218842,-0.019587958,-0.058507377,0.374705138,0.825564925,-0.29149944,-0.507263963,-0.443272208,-0.146947908,-0.586536787,-0.323936179,0.322877246,-0.0895486,-0.237379542,-0.328216842,,0.251150945,0.01858479,0.183559551,0.134890042,0.154433704,0.21116894,0.458492611,0.294514236,-0.454952367,-0.191805952,0.634804963,-1.030245629,-0.215605563,-0.711366386,-0.027220459,-0.232133776,-0.075402141,0.386826555,-0.056036767,,0.26565668,-2.011130078,-2.495930743 +PANC0813,0.104279852,0.028864533,-0.190560121,-0.199594584,0.13382452,0.196747377,-0.0152111,0.306782857,-0.139444387,0.178369633,0.434156344,0.037663636,-0.004763981,-0.184037848,0.300005453,-0.40616463,0.070687353,-0.863925542,,-0.379975375,-1.354302519,-1.110818349,-0.101611036,0.017952344,-0.845805365,-0.580933128,0.373568847,-0.374222612,0.192373272,0.109765798,0.096734514,0.658239281,,,-1.355461934,-0.383352484,0.869626653,0.136080497,,0.201883003,-0.054766091,-0.428788509 +MG63,0.091665427,0.299904312,0.330982724,-0.055421702,0.56472472,0.505692803,0.086122515,-0.24402982,0.787447457,0.226242032,-0.037069382,-0.011119609,-0.668368915,0.115871591,0.001054351,0.644013835,0.081763941,0.339099079,,-0.133092041,0.553334332,0.64995042,0.568507584,-0.256531758,0.530871585,0.363339934,0.135034977,0.007759575,0.434866113,0.72498575,-0.396889761,0.006779651,0.257437898,0.547751289,0.856144253,0.957076593,-0.589967841,0.25848313,,0.149075783,-0.114845959,-0.299725662 +PK1,-0.054416105,0.172458227,0.258293998,-0.370150828,-0.080466965,0.142917534,0.181918516,0.227756854,-0.368283586,-0.37643939,-0.0143365,0.034878221,0.096119073,-0.366962961,0.29274165,0.23630598,-2.030787749,-1.326583839,2.091096616,-1.079322617,-1.348083766,-0.967320167,-0.27982588,-0.45346605,-1.035617498,-0.638714712,0.046034112,0.351377158,0.035257692,-0.24198262,0.487626419,0.715461663,-1.722256007,-1.617715815,-1.252575338,-0.346659855,-1.122962206,-0.109673093,0.088540515,-0.189394569,0.087157062,0.57180991 +HS840T,-0.0471604,-0.115253891,-0.269935631,,-0.306706304,-0.187146758,-0.013431563,0.165652285,-0.322308403,0.139372905,0.177105374,0.189812099,-0.053444177,0.27383725,-0.211928562,-0.006647608,0.059904612,0.167063914,1.104689162,0.763768031,0.331879794,0.276069257,0.226186519,0.57988667,-0.087051451,-0.338769632,0.041860134,-0.10310118,-0.301300132,-0.120445388,-0.545926016,-0.056193132,0.520751447,0.201326597,0.376003967,-0.124462471,-0.480416055,0.037132763,,0.003098414,-0.001302794,0.280045296 +NCIH23,0.229935353,0.48245035,-0.012765424,,0.037479374,0.001134153,0.304839149,0.404488437,-0.080760692,0.14008232,0.185883845,0.068040711,0.335344231,-0.100042481,0.497551379,0.171568165,-0.052365443,0.713389234,0.133888411,-0.175600367,-0.307670994,-1.229279888,-0.054899612,-0.391499364,-0.11287002,-0.06530605,0.620085214,-0.569730036,0.834221591,0.53507713,-0.119726837,1.128936587,1.236065108,0.923111531,0.588678849,-0.188816647,0.199600167,0.104296977,0.111374115,0.188076657,-2.325111337,-3.211552335 +TE617T,0.233967749,0.11344467,-0.228115639,-0.07070048,-0.398989604,0.210911555,0.453323116,0.583381419,-0.748927719,-0.563183353,-0.009717074,0.485913513,0.215981212,-0.485576556,0.140004254,-0.266015586,0.195536505,-0.500437909,,0.462144478,0.150104133,0.516557931,0.430512087,0.617263408,0.172629692,0.098764518,0.261805737,0.341772218,0.201407386,-0.16439371,0.146077715,0.036224826,0.002279741,-0.59593247,0,0.401654945,0.248395892,0.185920777,,0.030621949,0.389118161,1.385983222 +SW1088,-0.855622832,-0.852495631,-0.785224624,-1.696605508,-0.300356303,-1.160487656,-0.300817809,-0.380839119,0.282775244,-1.355989263,-1.446200064,-1.49169662,-1.28722,-0.775885987,-0.579035469,-0.166063133,-1.379959632,-0.571426055,-2.596646484,0.448720837,0.20832428,-0.229827936,0.314984965,0.371782292,-0.130652511,-0.115804188,-0.051057647,0.03043343,-0.10706864,-0.354733215,-0.358976968,-0.214859049,0.494114578,0.769462721,0.763826194,0.896174808,-0.936990105,-0.192845706,-0.129900845,-0.268135058,-0.301501944,-0.321221179 +ISTMES2,-0.192207137,0.720917316,0.445282079,-0.062520154,-0.091327815,0.118810715,0.343600184,0.01853196,0.527305999,-0.404697419,-0.337005983,-0.115268061,-0.148027744,0.135910772,-0.01834665,0.159721838,-0.484395957,-0.011553054,0.280607642,0.173292127,0.398990838,0.319024767,0.289961803,-0.342235996,0.183411059,0.085325772,-0.348816645,-0.51117636,0.082891312,0.285920351,-0.29583919,0.221835146,0.289457792,0.382697454,0.660942755,0.502118519,-0.28039715,-0.040532123,-0.046105425,-0.106835655,-0.085058162,0.032816029 +NCIH1930,0.526047112,0.238463485,-0.537977048,1.022291702,0.229064993,0.20578347,-0.436239626,-0.307945072,0.558774387,0.727936694,0.60791448,0.580053002,-0.161008264,0.779695052,-0.140922866,0.518752998,0.793443489,0.912705342,-0.612823675,-0.417662362,0.455429379,1.371661357,0.805239789,-0.540916758,0.508353703,-0.083961885,0.008148793,-0.516247009,0.747275623,0.662161391,-0.947336365,0.245693659,0.635457982,1.576292953,1.2638374,0.037210069,0.325028088,0.000457138,-0.214237446,0.25072128,-0.189248718,-1.541695599 +NCIH1623,0.102359025,0.739022201,0.893152652,-0.113416352,-0.761487877,-0.023750278,0.316494306,0.546482921,-0.427409544,-0.660095627,0.015971984,0.258480217,0.778680122,-0.31255995,0.184540189,0.301540622,-0.37758782,-0.254739003,,-0.146544405,0.156093646,0.08948923,0.388982443,-0.274767284,0.076884313,-0.26212103,0.403753936,0.170034145,0.163606676,-0.149687133,0.475152917,0.39676424,-0.131064307,-0.082751141,-0.24390374,0.07457564,-0.152860886,0.03360289,,0.008085158,0.198095559,-0.155974852 +HS229T,0.286439097,0.359878829,0.348752087,-0.03174859,0.613998996,0.445112238,0.196255291,-0.147759569,0.785679587,0.172746562,-0.003155615,-0.026520127,-0.629602307,0.082072801,0.185590785,0.544792801,0.088104442,0.455004781,,-0.013143084,0.655948808,0.790767391,0.501871719,-0.043252884,0.361330717,0.509619705,0.221749132,-0.372294529,0.312239139,0.480759405,-0.380595664,0.081772243,0.529898137,0.272716694,0.846877261,0.755873604,0.033745508,0.212906112,,0.276609012,0,0.006370924 +NCIH1838,0.044052059,0.069012285,0.530100722,0.903989305,-0.269535071,0.030493779,0.138815837,-0.040148712,-0.182789041,-0.342418916,0.010616069,0.148525316,0.340626138,0.124055178,-0.489219913,0.027810751,0.332640229,0.430847833,0.347738069,-0.338437521,0.117351376,0.339473673,0.309618817,-0.368077351,0.02029749,0.095803245,0.071597543,-0.070324083,-0.03696248,-0.177351403,0.266079467,0.365384158,0.567667793,0.884179144,0.711930777,2.082186796,-0.157277743,0.0410982,-0.117225534,0.11017266,0.268010703,0.809393507 +NCIH1836,0.262578831,0.560375255,0.353654338,-0.028369565,0.678189493,0.345761598,-0.224115433,-0.52418703,0.74365784,0.991023921,0.441477814,-0.251589274,-0.813352193,0.321626609,-0.054872875,-0.502848274,0.799418968,-0.110223034,,-0.474538033,-0.479519553,-0.492425572,-0.455049376,-0.058168286,-0.255438801,-0.49890824,-0.178861083,0.626891173,0.162125833,-0.227165978,0.996347134,0.352643603,-0.588604406,-1.266331149,-0.972634472,-0.684341344,-0.441539338,0.011249214,,-0.127472024,0.624870329,0.823122228 +HS688AT,-0.16244357,-0.532114393,0.037868522,0.015967227,-0.356500729,-0.195488739,-0.459054394,-0.366295737,-0.132450161,-0.019468461,0.152252432,0.227512567,0.247372672,0.091819723,-0.205460501,-0.274682562,-0.078413629,-0.080114271,,-0.723758107,-0.594611223,-0.548733228,-0.575458243,-0.656321678,-0.488187159,-0.191542031,-0.060210721,0.078960936,-0.074188364,-0.388503529,0.492426442,0.348709485,-0.531565054,-0.431264707,-0.255922684,-0.642045415,-1.072904933,-0.75098432,,-0.173329341,-0.209524639,-0.075807733 +PANC0504,0.001245326,0.292308224,0.11092515,,-0.605751522,0.676312266,0.022710798,0.686123363,0.201427438,-0.569006048,-0.425016821,-0.268822093,0.147251034,-0.488254225,0.190133586,0.283609155,-0.312260269,-0.048221005,-1.800545404,-0.385601998,-1.635588155,-1.546734427,-0.588900701,0.494740617,-0.973868913,-0.500840983,0.028306239,0.063133142,-0.282277756,0.421570543,-1.054229496,0.22135496,-2.690694158,-1.863967994,-1.669372667,-0.4520938,0.93036498,-0.093961696,-0.191033642,0.001463116,0.222676164,0.144954222 +BL70,0.072656309,-0.944329801,-0.396465784,0.361908558,0.228311114,0.220517761,0.181045392,-0.219805003,0.082940311,0.510205348,0.00582732,0.283772036,-0.429198825,0.084815428,-0.217628708,0.593296285,0.399800694,0.296928433,-0.673816397,1.056596473,0.142069251,-0.250997179,0.150804395,0.975262299,-0.361541688,-0.730606776,-4.47E-05,0.920599463,-0.654638439,-1.402304697,0.409722879,-0.305138054,1.440065004,0.799361141,0.558153739,0.65778462,0.089185869,-0.011489211,0.193741668,0.147016571,-0.557317941,-1.0646816 +CI1,0.130889588,-0.045198772,0.573794704,0.344272626,0.058478564,0.089887384,0.093524255,0.043292315,0.094044577,0.335571639,0.11000673,0.297603957,0.421013515,0.395427373,-0.038992346,0.375793149,0.188364245,0.202854618,0.082966446,0.386097368,0.036762614,-0.059300632,0.312371755,0.442551363,-0.423050955,-0.502407414,0.116109659,1.033440925,-0.290109319,-0.807777063,1.051922505,0.448573419,1.117336076,0.306900094,0.337904072,0.842712856,-0.488914235,0.102820432,0.085960852,0.097221962,-0.095983849,0.450352202 +G292CLONEA141B1,0.074980399,0.078954228,-1.433144685,-0.710815797,0.082174106,0.350713447,0.189232823,-1.05733887,0.726321384,0.20594157,0.329423202,-0.086641692,-0.486667276,0.381316138,-0.000753596,0,0.51908399,0.360683861,0.771771203,-0.791872821,0.232196391,0.843921164,0.4962211,-0.881265694,0.221469126,0.713975672,0.004780529,-1.104748717,0.099918974,0.839290311,-1.338709743,-0.614041018,0.066225761,-0.096860707,0.831418539,1.367289108,-1.267854609,-0.188298568,-0.832544457,-0.37316454,-0.264808713,0.086937421 +RCM1,-0.398502001,0.133519235,0.010059836,-0.115994281,-0.033296171,-0.216254812,-0.08383428,-0.04943535,-0.144320125,-0.199124833,-0.23079073,-0.077479649,0.059347517,-0.016378316,-0.133169456,1.182802641,-0.249867385,0.793825484,,-0.629812248,-1.240943528,-1.145006077,-0.076167747,-0.353934543,-0.876906469,-1.124155327,-0.305093501,-0.274020578,0.314889004,0.024998505,0.436920162,0.761065935,0.119414307,-0.397550374,-0.339767214,-0.030161189,0.225298781,0.138170724,,0.033873705,-0.030537133,-0.181760073 +A101D,-0.013284374,0.671110787,0.690179498,-3.305619069,0.285677077,0.158777072,0.056589877,0.325019524,0.811276872,0.140576755,-0.186222538,-0.285608455,0.014861685,0.723820715,0.246617539,-0.007283526,0.136998425,-0.194450352,0.382807303,-0.091128023,-0.327871396,-0.400730146,-0.364355625,0.143931052,-0.227066435,-0.013447581,-0.216542193,0.381972196,0.046870487,0.268287118,0.515318008,0.648001438,0.216003329,-0.397036581,-0.365515889,-0.439048143,-0.849716991,0.025361761,1.185194309,-0.060121253,0.105188727,0.119715449 +NCIH1755,-0.179269984,-0.007830752,0.174849147,0.005334557,-0.282731779,-0.217758983,-0.275338542,-0.532204455,-0.095507059,0.341016334,0.175830626,0.127988163,0.484383474,-0.032084074,-0.21434704,0.128345696,-0.20442262,-0.031956933,,-0.206080963,-0.050554775,0.029693231,0.156382266,-0.202045797,0.066731659,0.080029478,0.117507879,0.236295992,0.180471419,-0.321921301,-0.029197798,-0.234177589,0.09222315,0.037180698,0.517263302,0.363487257,0.088842849,-0.127022016,,-0.099990059,0.180233036,0.490611061 +RERFLCKJ,-0.410885757,0.036881954,-0.103111614,0.06449177,-0.476649775,-0.543124194,-0.522460156,0.178032852,0.410957337,-0.073942867,0.264515221,0.311049027,0.601881808,1.290165364,-0.181920452,-0.147052557,0.22041735,0.577014636,,-0.583982346,-1.216291452,-1.009061544,-0.688592275,-0.398659956,-0.964064984,-0.813015947,-0.128770043,-0.141703157,-0.271466692,-0.158103584,0.679843436,0.723228408,0.025063333,-0.407563397,-0.008194951,0.079054183,-1.048779805,-0.363823826,,-0.109675093,-0.46295907,-0.688693414 +NCIH1693,-0.283383699,-0.290241682,-0.626525963,,-0.074602153,0.283115177,-0.115474354,-0.482879373,-0.473414252,-0.407243378,-0.141962627,-0.401104436,-0.58907627,-0.464582531,-0.003501015,-0.127804741,-0.485170492,-0.514527691,-0.530681038,-1.259008101,-0.218758225,0.089698646,-0.407608598,-1.222658606,-0.017812944,0.914695233,-0.071842225,-1.328352859,-0.160967851,0.782280442,-1.471053625,-0.68967087,-1.009177558,-1.019437488,-0.485490195,-0.726713831,-0.431879167,-0.14155145,-0.090145259,-0.266024119,-0.127996949,-0.22788852 +HS683,-0.291507073,0.51734305,0.387906043,-0.113683702,-0.140186186,-0.188000391,-0.370967252,-0.269464989,0.012235281,0.501380618,0.104284448,-0.18267008,0.097933416,0.525446734,-0.363808578,0.151062947,0.254578523,0.498974294,,-0.452034195,0.156846706,0.15584276,-0.674865827,-0.333072469,0.057223765,0.804509874,-0.263428001,-0.808508779,0.093180518,0.623425761,-0.801549745,-0.157858192,-1.192996689,-0.086575517,0.066336901,-0.320526616,-0.083682954,-0.14113461,,-0.258241307,0.046930783,-0.250104312 +RKO,0.131517587,-1.744702165,-0.347396743,0.229193403,0.213442866,-0.026783851,-0.256782473,-0.135929721,0.367184998,0.494531702,0.289564945,0.030774047,-0.027156038,0.45511415,-0.105036129,-1.037724845,0.891486007,-0.563704075,2.358986529,-0.316189652,-0.001836923,0.209982764,-0.169681564,-0.05380339,-0.258263663,-0.204089899,-0.275096033,0.483836865,-0.012750924,-0.906551015,1.310072268,0.442166817,-0.460091475,-0.487417563,-0.626615078,-0.515580656,-0.041396818,0.020727391,0.119462149,0.056852574,-0.1503092,-0.36181719 +HS729,0.64678867,0.197254172,0.043631099,0.523904506,0.160436227,0.723293942,1.13805301,0.694583829,1.10169837,-0.2294924,0.083566487,0.812305969,0.236624208,0.422822495,0.560090524,0.657423909,0.196183832,0.32306895,,0.498317296,-0.462098603,-0.015599777,0.11120618,0.858657287,-0.062901591,0.003210549,0.279106093,0.801796195,0.165045071,0.458604815,0.565434968,0.356213787,0.188123419,0.020111396,0.095476793,-0.041106461,-0.36837041,0.464643088,,0.663501814,0.615543292,0.609280203 +JHOS2,0.234248031,-0.313067494,-0.426556664,0.044306137,0.35354466,0.276560599,0.081957964,-0.049631522,-0.194786113,-0.133243876,0.434150013,0.110960085,0.048945589,-0.21283021,0.248838091,0.032602877,-0.061178613,0.233416168,0.802358527,-0.687931243,0.07158095,-0.461396143,0.098016509,-0.640962083,0.077503903,1.306472021,0.968252649,-1.096829026,0.368996171,0.915361789,-1.433541539,-0.490442524,-0.884810858,0.417042789,-0.025820874,-0.482358292,-0.154067606,-0.06748196,0.185307792,0.228227606,-0.174559559,-0.388150229 +MCF7,0.241526254,-0.436706138,-0.615063079,0.135154051,0.906942351,-0.243299538,-0.944277796,-0.495583143,0.68218884,0.606366994,-0.42094889,-1.030004838,-0.961585639,0.114826607,0.03110954,-0.7313119,0.164471494,-0.26215136,-1.098514915,1.731014039,0.593813702,-0.749273733,-0.638402034,0.423259237,0.495419503,-0.102545032,0.029213381,0.082254818,0.184792021,-0.313657149,-0.663195592,-0.481737471,0.624114944,-0.153705034,-1.226867305,-1.52741195,1.808512132,0.045372372,0.132192811,-0.10522989,-1.122883917,0.134658231 +U937,,-1.462203052,-1.339881796,-1.342426493,-1.271363689,-1.3195727,-1.099790014,-1.435979023,-0.839780554,-1.366057957,-1.612824062,-1.214196081,-1.596353697,-0.914473827,-1.393577764,-2.114117638,-0.513142552,-1.471368246,1.980644126,-1.147021154,-0.999861818,0.185194973,-0.585473682,-0.044700175,0.169390716,0.499459641,-0.151998886,0.69070773,0.410976397,0.145317776,0.513775038,0.190798722,-0.440582801,-0.236715676,-0.361874616,-0.433353628,-1.295749305,0.489151512,1.097241649,0.495314902,-0.066249675,-1.114457064 +HCC202,0.079917877,0.121284557,0.372293842,0.435777227,0.006918611,0.365687751,0.107743314,-0.205265448,0.137843882,-0.860238554,-0.690200783,-0.974372891,-0.722700653,-0.691660287,0.004389911,-1.116368766,0.306112035,-0.515660236,1.110653071,-0.736799607,-0.475081532,-0.436698389,-0.61615408,-0.890496676,-0.32756826,0.063734742,-0.439132973,-0.495080093,0.272104505,-0.408790837,0.00191145,0.153886206,-0.154753877,-1.123642208,-1.694102255,-1.089301414,0.676330966,0.208860802,-0.308417676,-1.932385852,0.292483842,0.13558597 +MEG01,-0.263467013,0.593931088,0.458672635,-0.222160707,0.314060251,-0.165371253,-0.217033056,-0.556214595,-0.064026765,0.502609577,0.303495702,-0.123308844,-0.198873043,0.511691601,-0.288995911,-0.150114548,0.111971106,0.520063802,,-0.294930865,-0.010307094,0.247636257,-0.603943131,-0.302304091,0.254093683,0.894787549,-0.029405215,-0.789138147,0.077516067,0.712784197,-0.731681558,-0.147713245,-0.352715133,-0.108093579,0.256132192,-0.187447907,0.214637864,-0.173165787,,-0.091863502,-0.135085341,-0.076744284 +REH,-0.129929325,-0.397048401,-0.351436874,0.648524249,-0.859700853,-0.116179102,-0.083670868,0.136725302,-0.602542878,-0.390704622,0.344727233,0.630304408,0.985861661,-0.530216308,-0.196941023,0.327876209,0.181596252,0.203991613,0.669295038,-1.617867735,-1.166161329,-0.701486439,-1.120839843,-1.670967564,-0.745207762,-1.127908384,-0.143221007,-0.962071566,0.00289903,1.237388816,0.53231521,0.966723168,-0.831280178,-0.555214921,-0.963343859,-0.944449222,-1.240367753,0.063151579,-1.078033021,-0.264850687,0.191759133,0.107444237 +ONS76,-1.799410215,-1.46791803,-1.399576324,-1.576962647,0.041706833,-0.392513286,0.352381034,0.357933015,0.168490158,-0.552021867,-0.573538489,-0.355214952,-0.041666158,-0.485260375,0.044142116,-0.030898459,0.283793157,-0.153418836,,0.571594886,0.636910541,0.604578735,0.427608516,0.705756457,0.108509885,0.102731823,0.334980977,0.620986179,0.000587324,0.156565403,0.238835921,0.23608309,0.27591797,0.507852443,0.314556412,0.306343855,0.42507975,0.163998935,,0.158675193,0.105599843,0.15151082 +SNUC1,0.209919363,-0.191875988,0.020361122,0.430820156,0.593451061,0.327337116,-0.071789214,-0.725895004,-0.06506704,0.467735089,0.163989563,-0.24487922,-0.613026994,-0.415261434,0.294467136,-0.172627144,0.37928896,-0.123070152,-0.08087005,0.534634301,0.400845273,2.225060171,0.420944702,0.426467693,0.153019849,-0.293961923,-0.229640993,0.26218825,0.050412942,-0.915623852,0.732512341,-0.343073162,0.92117089,0.307725509,-0.842694102,0.640400618,0.457338646,-0.045718238,-0.050431646,0.173733722,-0.157406553,-0.104549211 +SKNDZ,-0.067432054,1.035695733,0.723785305,0.779379825,-0.509079447,-0.213810268,-0.218378881,-0.656044461,0.698571362,0.235496039,0.802492353,0.857330855,0.737108591,1.51689378,-0.406802237,0.853749215,0.958788968,1.723520555,-0.752770497,0.21642361,0.77138892,0.82460719,0.275218595,-0.268417474,0.013909675,0.361036542,0.025008614,0.214428699,-0.416593382,-0.454679717,0.583348581,-0.445828018,1.58891076,2.114168659,1.860205821,1.500574527,0.111707759,-0.061121225,0.011277843,-0.118611997,-0.223381252,-0.660783237 +DMS114,0.475100298,0.277733712,0.144932404,-2.171824699,0.393355328,0.430340059,0.789739995,1.299431647,-1.259738542,-1.019350942,-0.503955323,-0.290961333,0.14145296,-0.610561235,0.876312453,-0.750718501,-0.139319461,-0.668554306,0.070367465,-0.25413488,0.507040415,0.669054845,0.244075061,-0.333195545,0.775049817,1.113060276,0.616634079,0.277777544,0.371952497,1.203027634,-0.335138447,0.740046898,-0.427171571,-0.671379852,-0.63989754,-0.0391704,0.692107457,0.377120671,1.678351463,0.309759949,0.670137164,0.74123123 +TT,0.086404156,0.216859613,0.236579587,0.616621294,0.721350354,0.386242611,-0.728697371,-0.199813253,0.874617785,1.060203181,0.505594286,-0.017604711,-0.495635355,0.499098906,0.268564124,0.511314029,0.361035915,0.810143787,-1.391872857,0.530781065,0.175668924,-0.680011223,-0.29679215,0.268588664,0.41868817,0.532282268,-0.283727412,-0.151446069,0.583030602,0.392775176,-0.6655451,0.327171511,0.378934959,0.596003466,0.360126671,0.847985013,0.437764009,0.311868613,1.220990888,0.022738934,0.450442705,0.735077058 +ST486,-0.321912374,-1.997750336,-1.4338667,-0.101929809,-0.352009533,-0.194154014,-0.401662066,-0.285351152,-1.303128941,-0.227478832,-0.538129693,-0.022087737,-0.376983539,-1.433146783,-0.258573171,0.179085687,0.017137822,-0.129375997,,0.346647641,0.010379728,-0.564803971,-0.448066183,0.045806315,-0.1324537,-0.751388754,-0.029794795,-0.426389654,-0.045495127,-0.093849062,-0.2259995,0.426534008,0.510300677,0.548889644,-0.067578157,-0.242317914,-1.011931336,-0.18182236,,-0.16900671,-0.669219553,-0.815092633 +OC314,0.01870377,-0.042916433,-0.285692817,-0.027350406,-0.14652242,-0.018079994,0.275810588,0.585300043,0.033215503,-0.930211959,-0.76981986,-0.270147664,-0.010842172,-0.178265879,0.114018953,0.042663475,-0.246694122,-0.314163669,-0.979634211,-1.554241971,-0.841148429,0.152341957,-0.353180419,-1.633958429,-0.711325807,0.765944238,0.039408684,-2.372155749,-1.103800731,1.169815542,-2.911688294,-2.046549932,-1.467695958,-1.189640709,-0.167028374,-0.121990484,-1.059351051,-0.080980556,-0.062166143,-0.038112387,0.0977899,0.308512866 +SW1353,0.09765472,0.670745495,0.863984756,-0.616650563,-0.433000255,-0.235917559,-0.032423321,0.999651771,0.002450071,-0.470781657,-0.401449397,-0.270719767,0.343380925,0.280642321,0.098707038,0.183085515,-0.338212134,0.163594763,-2.294330537,0.54784622,-0.652748874,0.03193944,0.218830383,0.411825385,-0.843568774,-0.379827131,0.475466895,-0.100155325,-0.578741094,0.075938691,0.000658439,0.198670337,-0.851947633,-0.760596125,-0.220161781,0.649864469,-0.021879708,-0.036149731,-0.248615917,-0.015538628,0.459737419,0.241536559 +MDAMB157,-0.095094305,0.111376263,0.571896186,-0.267255344,-0.166619358,-0.276552084,-0.122355398,0.66566725,-0.223724706,-0.359006936,-0.707416502,-0.859177474,-0.079079615,-0.311202526,-0.05625993,-1.618027936,0.048758281,-0.936143804,-8.150277659,0.953244436,-0.173989943,0.872481825,-0.108962993,0.729957004,-0.144420726,-0.984560396,-0.586516244,-0.516265152,-0.653394185,-0.629735991,-0.852689052,-0.846640731,-1.069843473,-0.970635043,-1.07320248,0.264330647,0.238039994,-0.323852704,-0.423139455,-0.160981284,-1.071178084,-1.664549459 +LN18,-0.022332094,0.060112652,0.614712554,-0.790413329,0.359692023,0.052242069,-0.086769483,-0.772540723,0.152487916,0.076765357,-0.206806457,-0.392245319,-0.887063922,0.339721174,-0.034385198,-0.94503846,0.272381068,-0.728350072,1.677647549,-0.287247522,-0.175399423,-0.609530667,-0.141407424,-0.116525825,0.016361999,-0.092723876,0.172110174,0.253524244,-0.043241024,-0.385894486,0.407332554,0.588405106,-0.389718898,-0.709614892,-0.796850197,-1.030861235,0.313260969,-0.142608419,-0.125126026,-0.058433088,-0.780034781,-1.668422414 +769P,0.126542538,0.06884353,-0.113805756,-0.044895214,0.125351933,0.301225052,0.049713942,-0.093675262,0.155125029,-0.016872633,0.074744789,0.024991673,0.123075136,0.15317439,0.076541351,0.507351915,-0.103364204,0.504866175,-0.308549849,0.725913999,0.879478372,0.3036461,0.696935221,-0.093617805,0.438364219,0.795086939,-0.404736337,-0.111804706,0.104414189,0.06542347,-0.756188747,-0.446332738,0.776146945,1.49609605,1.080266225,0.921026891,-0.232918754,-0.081319938,-0.154634232,-0.046468351,-0.006103224,0.517656618 +786O,0.237718685,0.139844898,0.40046168,0.420531083,0.254016348,0.352363541,0.139384839,-0.409768982,-0.004914839,0.577770088,0.429755569,0.274528578,0.082801456,0.343360214,0.119025,0.741886384,0.053494361,0.320224739,-1.172404153,0.943865532,1.089053674,0.36044098,0.736741531,0.369337003,0.321735872,0.694898121,-0.045344476,0.689942444,-0.0755979,-0.443772195,0.346348392,-0.367878812,1.243448139,1.52435827,0.916122636,1.026014291,0.140091059,0.070477597,-0.141957413,0.200466893,0.141715213,0.61432034 +CAOV3,0.049526839,-0.54033723,-0.149319528,-0.464519627,-0.603712499,-0.134657922,-0.217987082,-0.201792442,-1.135826047,0.097137625,0.543971271,0.544987013,0.486340497,0.188726861,-0.008785094,-1.083620915,-0.038773731,-1.080475071,-0.515694666,-0.904558463,0.285356091,0.273484165,-0.648250867,-0.895159863,0.067748137,0.867696063,0.211463314,-1.206221285,-0.663125159,0.529178252,-1.330530512,-1.397227555,-1.684313496,-1.42223583,-1.281608083,-1.749105461,0.339158141,-0.145929545,-1.50395758,-0.096524689,-0.28110535,0.034036132 +HEPG2,-0.128467346,-0.129781433,0.089830799,0.693573031,-0.14012182,0.11356031,-0.193473236,-0.363283354,-0.30645973,0.159447651,0.066394912,-0.025098516,-0.706182871,-0.443502914,-0.208798998,-0.304648517,0.435017611,0.370750782,-0.994895031,0.202813482,-0.3585844,0.241077503,0.904383042,0.45742108,-0.72695239,-0.338078137,-0.089674759,0.843180088,-0.794790784,-1.791296582,0.791045794,-0.341547532,0.08023288,-0.476060158,-0.223484462,1.683683244,0.193982673,-0.146872551,-0.143317048,-0.054510917,0.087163119,0.942303275 +NCIH524,0.375387903,-0.02977851,-0.228232785,0.122938225,-0.052865904,0.21981245,0.201765452,0.090796835,-0.428507607,-0.456331092,-0.121292222,0.040875403,0.276709293,-0.292491476,0.018956635,0.334928875,0.174551224,0.565001012,,-0.81418455,0.101635913,0.04807023,-0.083520601,-1.109648911,0.205390984,0.449455959,-0.011623318,-1.134154277,0.01354025,0.965599091,-0.863259231,-0.152028418,-0.243333572,0.407912956,-0.012980071,-0.634193535,-0.694525061,0.068175996,,0.061695628,0.087728508,-0.372315376 +NCIH209,0.832297847,-3.04E-05,-0.18292065,1.200370565,-0.324127003,-0.37888525,0.424996264,-1.543281036,0.22270544,1.295004566,0.425524312,0.417482832,0.085787937,0.778870651,-0.079481951,-0.484502157,0.974198486,0.307926628,-1.53175382,0.40442599,0.657758063,0.678303518,-0.882001376,-0.193769839,0.399111395,0.130475226,-0.852119397,-0.08056203,0.175455991,0.535067241,0.055478495,-0.068264063,0.604583035,0.606615103,-0.3481428,-1.051682302,-0.038237182,0.109622918,-0.404976007,0.259930851,-0.186110252,-0.469045028 +MIAPACA2,0.014117634,-1.075689141,-1.021514726,0.037219005,-0.012557542,-0.338239551,0.38232645,0.732824464,-0.493334878,-0.291708001,-0.342194229,-0.352538397,0.454542261,0.021225041,0.112819499,0.422766374,-0.652087533,-0.031893642,,0.906090086,0.432979025,-0.37429574,0.366734299,0.593744048,0.218812226,-0.653070962,1.086766002,-0.09873218,0.044094811,0.187857175,-0.49126761,-0.421596399,0.716574356,0.887193742,1.017543336,0.374929054,-0.02730033,0.006343452,,-0.060710722,-0.16666094,-0.076912023 +MCAS,0.302986139,0.073462668,-0.560465335,0.150635839,0.204728389,0.033831556,0.014293002,0.181950245,0.308654054,0.6658663,0.206734541,-0.251077695,-0.163470442,0.357895491,0.024717844,0.284951193,0.190048208,-0.085347431,,0.2515514,-0.922529482,-1.750314178,-0.684548212,0.527977479,-0.399639498,-1.158943781,1.231692632,-0.037431441,0.270595766,0.682862595,0.23505417,0.669602359,-0.762746839,-0.949585359,-0.557942407,-1.225366174,-0.128985394,0.099949916,,-0.010272679,-0.087500009,-0.410387034 +SBC5,-0.00090794,-0.650437876,-0.457591735,-0.346269122,0.05515825,-0.074832145,-0.039129346,0.025165362,-0.671888891,-0.092282937,-0.286446449,-0.322189085,-0.270868473,-0.698855332,-0.249450801,-0.393489355,-0.339748066,-0.793465663,-0.39171036,-0.106410919,0.090436323,-0.192712974,-0.610721329,-0.172684193,0.273896965,-0.328625634,-0.291016427,-0.494580439,0.147249094,0.542863322,-0.555236058,0.033097561,0.013744082,-0.012418677,-0.269347753,-0.50527815,-0.507655113,0.009832121,-0.101305936,0.061724484,-0.015190333,0.01205834 +COLO829,-0.298852335,0.124643418,-0.056648715,-5.45160463,-1.320689144,-0.822265085,-0.237949032,0.059897227,-0.534811346,-0.863679864,0.250312744,0.424689412,0.996967854,0.20930796,-0.268145387,0.211259662,0.017444794,0.127262573,-1.064293113,-1.384959137,-0.713151954,-0.704747772,-0.600228114,-1.373842277,-0.450972946,-0.096434893,-0.148363769,-0.676918427,-0.363079354,0.223822126,0.181305919,0.491292708,-0.530226507,-0.868194928,-0.480091049,0.2057894,-0.958510886,-0.202599617,,-0.472346382,-0.146895824,-0.386025176 +VCAP,0.031600664,0.684938531,0.356770748,0.214767538,-0.071431285,0.3910456,0.492152562,0.019828063,0.546459735,-0.496479847,-0.184799971,0.133510367,-0.022830791,-0.00602976,0.196580427,-0.011163582,0.225615418,0.12587739,,-0.235712279,0.036798335,-0.008314948,-0.14550195,-0.198790831,0.397300817,0.053430018,0.299929111,0.097325408,0.610276713,0.456383685,0.156435154,0.039116365,0.357728615,0.45015799,0.092236552,0.109423474,0.026805774,0.217895108,,0.048056291,0.471977038,0.60686389 +COLO704,0.137825337,0.815038496,0.356581077,0.481161412,-0.69260659,0.273702148,0.661733187,,-0.375935085,-0.008041918,0.416472704,0.746208499,1.088850613,0.06720173,-0.169526364,2.386276728,-0.189842403,1.85583073,,-0.515021561,0.187889902,0.80308082,0.251012358,-0.7328683,0.725876975,0.994706539,0.260850645,-0.664720816,0.632418737,0.916663137,-0.980447935,0.133688914,1.128040661,1.691365626,2.18696199,1.815594376,-0.708581196,0,,0.386633751,0.540036787,1.047672433 +IPC298,-0.024222067,0.195773263,0.466551654,,-0.007346072,-0.498088031,-0.329500332,0.012782379,0.372181473,1.035433726,0.366229314,0.323255848,0.402294345,1.340049407,-0.032582388,0.000670457,0.108192948,0.318768315,-2.883696598,0.832855168,0.329354859,-0.292576374,-0.079820291,0.56631415,0.058754062,0.794381614,0.226410545,0.401437767,-0.46909724,-0.001759255,0.169605214,-0.517820071,-0.174495614,-0.336979946,0.456089795,-1.265331052,-0.290933275,-0.169108149,-0.055418248,-0.214398562,-0.171866056,0.457932748 +CAPAN2,-0.507165758,-0.596769692,-0.585153333,-0.590579187,0.070842367,0.053379881,-0.172921191,0.517827688,-0.561163492,-0.895591401,-0.917759949,-1.014868308,-0.927319161,-1.033253946,0.125675882,-0.577409856,-0.595777066,-1.176245519,1.491800009,0.91670423,0.568769124,0.573807496,0.207047541,0.769092744,0.398216303,-0.078025745,0.190439816,0.073462136,-0.154697831,-0.550883525,-1.599561255,-1.246616222,0.06034206,0.037326534,-0.168117337,0.101937976,0.848344564,-0.115552613,-0.015148917,-0.160221146,0.015263481,0.291246542 +EFM192A,0.054583371,0.605880216,0.74459076,-0.185791503,-0.059083009,-0.395065182,-0.440157759,0.243122509,-0.16470215,1.059895123,0.405129344,0.218438907,0.408065031,0.454320421,-0.601300009,0.033262324,0.597695023,0.702111646,-3.495855051,-0.592944952,-0.534773381,-0.32870601,0.185360077,-0.268034075,-0.429774575,0.245874106,-0.183752883,0.473558544,-0.07465197,0.252270322,0.271834067,0.13400103,-0.817388553,-0.042684749,-0.54879695,-1.54158266,-0.252040672,-0.15139404,-1.078904144,-0.463400941,-1.301637423,-2.561966571 +HS766T,-0.002430415,0.714923744,0.564450006,0.280820106,-0.097408985,-0.088433199,0.300137477,0.642028514,0.685652299,0.224214607,0.146858169,-0.148766768,0.485679993,0.865924358,0.253636059,0.408605084,0.073491118,0.704167098,,-0.338002575,-0.719237578,-0.431950735,-0.326657066,0.000709773,-0.425776207,-0.139818725,0.362513734,0.151632578,-0.106105715,0.094365505,0.836700437,0.832076217,-0.068531497,-0.367370253,-0.277464586,-0.397510211,-0.154673399,0.510535747,,-0.066960372,0.570253171,0.461518607 +EFO27,-0.089938662,-0.074866108,-0.497712988,0.078315529,-0.036615832,0.468047693,0.322387642,-0.016434193,0.309846788,-0.491651366,-0.087609292,-0.117390472,-0.526332705,-0.232993969,0.002964996,1.238996538,-0.600664235,0.588642353,0.087398799,-0.396084806,-0.937533394,-0.110662841,0.014507973,-0.368672863,-0.485649996,0.316085605,0.207648864,-0.305512712,0.103120294,0.408843346,0.399700167,0.429409418,-0.834243559,-0.274202252,0.798227308,1.355675174,-0.529002626,-0.088845217,0.086627473,-0.0596037,0.203244621,0.569682533 +A2780,-0.033679122,0.067948849,-0.046865021,-0.682367306,0.072409669,0.359836493,0.082940293,-0.493881289,-0.497270566,-0.073845004,0.139945107,0.095701536,-0.255421607,-0.502887232,0.000528842,-0.19776209,0.005204633,0.378425166,0.033689158,-0.359629267,-0.07965789,-0.199764981,-0.077888135,0.190701327,-0.253516516,0.593847982,0.692279945,-0.233006382,-0.440029664,0.074210191,0.679768984,-0.267664691,0.081625576,0.055812428,0.444533854,-0.00192475,-0.22204834,-0.017352678,-0.231429878,-0.067775015,0.083991072,0.499278522 +NCIH196,0.10947228,0.068085423,-0.004253322,-0.34785714,0.33909487,-0.003627973,-0.635964682,0.098247705,1.278383857,-0.055117684,-0.377959643,-1.300371632,-1.185639966,0.894024803,-0.203018238,-0.278836891,-0.615928742,0.045133366,,1.523982514,0.843290472,0.41906619,0.242290866,0.715133536,-0.124219871,-0.380506169,-0.757721967,-0.286988868,-0.834187127,-1.083808828,0.05036361,-0.62792477,1.259996668,0.782765495,0.920645245,0.505768828,0.841132302,-0.103193808,,-0.37677001,-0.119659874,-0.812611349 +IGROV1,0,-0.140362385,-0.496887353,-0.216399742,0.057166123,0.248738652,-0.144397476,-0.465196671,0.934353149,0.405367047,0.60078556,0.121079952,-0.20785035,0.816107001,-0.174978683,0.707566406,0.112592332,0.768228329,-0.167450473,-0.109496711,0.159027244,1.261318754,0.251642382,0.055514446,0.241481,0.90515624,-0.367788967,-0.1289023,0.135293869,0.036274963,0.053896707,-0.141822123,0.414538387,1.211570221,1.041774586,1.657335078,0.138961379,0.064594472,0.168773644,-0.033698789,0.349292381,1.00549367 +NCIH889,0.124013562,0.956733461,0.215738289,0.433690667,0.624433114,-0.00674452,-0.024451343,0.448083577,1.140307704,0.889890617,0.413110012,0.346348654,0.625733033,0.815458798,0.286504821,0.535726497,0.554072819,0.657281205,,-0.192895564,0.542266752,-0.179646786,0.386999472,0.146260438,0.426221765,0.188981838,0.148218389,0.155108907,0.624260646,0.324106553,0.254558284,0.524911064,0.645961174,0.664520915,0.200820846,0.178426331,-0.382106337,0.230897658,,0.230753139,0.548822221,0.380033551 +NCIH211,0.425668542,-0.486638886,-0.248181956,0.450361971,-0.069250947,0.117687313,-0.127305049,-0.450808215,1.006910642,0.759441002,0.705631635,0.188513693,0.58500818,1.15471582,-0.095628033,0.877824237,0.688816153,1.230325937,,-0.251420577,0.706864152,0.621843201,0.319561156,-0.816592028,0.446339602,0.639952554,0.001718109,-0.920776152,0.233261666,0.774215859,-0.141324615,-0.288643263,1.064546757,1.552023925,1.281898431,0.642720488,-0.146298241,0.035514051,,0.172007701,0.15264187,0.167460074 +MDAPCA2B,0.540750167,0.085475183,-0.111091586,0.165742559,0.062298835,0.451794565,0.852077615,0.538713932,0.941917354,-0.414195334,-0.118069505,0.461163176,0.076517659,0.254001026,0.352986512,0.530031349,0.009322495,0.061206629,,0.401044828,-0.174808584,-0.074080364,0,0.871309616,-0.21946984,-0.034157779,0,0.866595732,0.197554757,0,0.459746075,0.320979141,0.72523634,0.010414688,-0.183181933,0.096451946,0.124889222,0.397252443,,0.308882192,0.438556031,0.358613825 +SKMEL24,-0.127999359,0.211991522,0.130243242,0.154179003,0.217630807,-0.269032612,-0.776945464,-0.050914112,1.743111697,0.656624187,-0.066210145,-0.560099656,-0.469126955,2.102486459,-0.206488523,0.268824711,0.216397391,0.540647381,2.963652439,0.57164679,-0.138422323,0.400732078,-0.595435286,-0.021446646,0.233805431,0.473784499,-0.621218539,-1.166330076,-0.212701167,0.502601704,-0.464205551,0.174031531,-0.659108648,0,0.45597016,-0.023270994,0.053486453,-0.249172635,-0.065416383,-0.140175722,-0.029898664,-0.502140714 +K029AX,-0.349497638,0.187963426,0.124240701,-0.393989002,-0.280029658,-0.271961531,-0.16593216,-0.450687571,0.025504404,-0.275299265,-0.434038425,-0.055179662,-0.107342198,0.103662766,-0.060984659,-0.281844386,-1.049475621,-0.312840796,,-0.69016065,-0.084879233,-0.098116063,-0.305582946,-0.794484379,-0.247796989,-0.21236484,-0.136599532,-0.584036003,-0.003270048,0.231778776,-0.151641387,0.498704419,-0.566740219,-0.478294762,0.055970765,-0.281564867,-0.431251661,-0.309581928,,-0.25766972,0.196029775,0.186070297 +NCIH2171,0.027067902,0.245069848,0.039316378,0.385496243,-0.004628844,-0.124973193,-0.207827588,-0.588398303,-0.306715939,0.683625392,0.844622047,0.592198671,0.509725168,0.143958389,0.066372959,0.722674441,0.461733784,0.921194107,,0.138239476,0.456494654,0.165168792,-0.486320665,-0.063018738,0.228266087,0.259527572,-0.561930027,0.239136521,0.308622731,0.425810947,0.033397405,-0.150196608,0.895428937,1.10294556,0.847531101,-0.137743399,-0.031434874,0.069348245,,0.087245783,0.238117192,-0.084716038 +PANC1005,-0.064276556,-0.162718205,-0.13573449,0.047437677,0.98988642,0.493828423,-0.167746436,-0.277934777,0.162848411,0.608471094,0.262702842,-0.288295303,-0.405300342,0.212520098,-0.064224098,-0.881391443,0.096235525,-0.775232944,,0.364790817,0.253455542,0.228730433,-0.084528384,0.583156269,-0.145666677,0.038577555,-0.032398128,0.034577524,-0.240573453,0.470598699,-0.478585879,0.192340849,-0.925901847,-0.636764871,-0.861156027,-0.319304161,0.493009182,-0.03889479,,0.047018847,-0.28038248,-0.700788749 +HS695T,0.026295616,0.433020457,-0.152342137,,0.523850017,0.187276135,-0.15185605,0.011696789,-0.47222155,0.248987187,0.043581588,-0.314755527,0.076733649,-0.052219305,0.257872634,0.000732219,0.140652638,-0.133470771,-4.214460276,-0.329673246,0.434928966,0.268326831,0.063396423,-0.781988335,0.358871959,0.826720846,-0.000542082,-0.772095792,0.019461399,0.47177563,-0.673458672,-0.211276563,-0.895285211,-2.053851223,-0.708459041,-0.883196493,-0.641111928,0.16065413,,0.241441192,-0.846827826,-4.534239939 +LOUNH91,-0.453159498,-0.327971999,-0.091580315,-0.384657418,0.300205005,-0.105841844,-0.40320183,-0.12638774,0.596068017,0.078436765,-0.266412798,-0.619747622,-0.974240907,0.43332316,0.00068924,-0.856970341,-0.611817004,-0.708582283,,0.257568165,-0.016761522,-0.081725361,0.079770035,0.231783316,0.041314181,0.04803434,0.032252147,-0.38611107,-0.121068646,0.124698514,-1.031318315,-0.089839226,-0.515909028,-0.408812062,-0.579592135,-0.255978944,0.147932477,-0.173521276,,-0.161829822,-0.274786129,-0.249171998 +LK2,0.260563993,-0.224115264,0.012349472,,-0.122312279,0.263961839,-0.006595322,-0.530148256,0.771288797,0.754735827,0.783771888,0.685602499,0.475110172,1.153336141,0.141735743,0.376250019,0.883683219,0.749507162,1.8390846,0.211373938,0.71070768,0.616964972,-0.201299751,-0.320352766,0.647172436,0.955129812,-0.222374681,-0.603341666,0.49985587,0.865980859,-0.637386971,0.338154697,0.123986034,1.679446695,0.851049593,0.315344621,0.678370678,0.280502861,0.299591236,0.352316607,0.187371481,-0.090831976 +TOV21G,0.061794993,-0.359553879,-0.344768927,-0.200691174,0.419310841,0.07954882,-0.254570218,-0.323085531,0.249783516,0.712066296,0.381492007,-0.028396657,-0.588044812,0.133618486,-0.001790343,0.588204213,-0.299335165,0.381379687,1.486181446,0.39065298,-0.124642463,0.838768729,-0.13154243,0.780466407,-0.045986273,-0.233025983,-0.310678158,0.786840496,-0.064532545,-0.301679993,0.824737074,0.27807131,1.787863428,1.097435827,0.660528518,1.175712642,0.450186516,0.100627137,0.078241955,0.051040444,0.218368784,0.477279148 +SKMEL3,0.078480889,0.272857396,0.474732453,0.580889562,-0.35963231,0.100917876,0.335228615,-0.160915737,-0.07103539,-0.216080002,-0.157187138,0.490170076,0.248765621,0.309666316,0.135701816,-0.486601839,-0.033679196,-0.683000661,0.591397531,-1.498208003,-0.662045859,-0.564390157,-0.499317025,-1.706733422,-0.426294209,0.038357114,-0.227993605,-1.441403354,0.224354237,0.917984374,-0.935491749,0.854750285,-0.12739235,-0.21781138,-0.854032437,-0.45126273,0.042987809,0.040422488,0.242061817,-0.034357183,-0.100959064,-0.125172116 +ASPC1,-0.399444991,-0.633724944,-0.454666286,0.419456664,-0.388460669,0.06510937,-0.084160161,-0.216569691,-1.583873664,-0.933844449,-0.516812487,0.191660759,0.148728195,-1.102341933,-0.160374439,0.111205782,-0.243123192,-0.699352744,3.428383983,-0.252785582,-0.563903943,-0.450621208,0.400792912,0.42564502,-0.109176309,-0.875979963,-0.14345717,0.485621148,-0.185508429,-1.144436489,-0.363055734,-0.355644977,-1.024409683,-0.888652722,-0.390371202,0.615551035,-0.125419986,-0.118514395,0.083020148,-0.218014195,0.174799258,0.873357503 +OVSAHO,-0.137454664,0.494472246,0.071276355,-0.501252959,-0.060812503,-0.131284837,0.031838789,0.164336347,0.131442918,-0.109959383,-0.723187876,-0.887616064,-0.298190015,-0.463539992,0.120903057,-0.436398553,-0.088704571,-0.712975528,,-0.349544257,0.536783995,0.545759948,0.217291871,-0.55058983,0.416150109,0.621012852,0.38160903,-1.308727168,-0.378362004,0.611198808,-1.073646128,-0.718875516,,,-0.400503537,-0.579375454,-0.132468486,0.017550611,,0.027653956,-0.110940271,0.186419597 +NCIH441,-0.014299956,-0.570174377,-0.690618574,-0.32240656,0.192554264,-0.118599391,-0.324843068,0.35839097,-0.075857682,-0.12873112,-0.53385101,-0.878301202,-0.492473046,-0.057524284,0.071104307,-0.383669539,-0.469200468,-0.588722355,,0.497580909,-0.392904995,-0.95907501,-0.790075758,0.594493707,-0.38437056,-0.656798196,-0.643949357,0.085626685,-0.025959858,-0.782427519,-0.156394635,0.06476638,-0.019344157,-0.406229373,-0.751044072,-0.732743345,-0.339345846,-0.091551891,,-0.080411735,-0.290835058,-0.593997335 +NCIH2030,-0.425877338,-0.402934636,-0.574110302,,-0.27998864,-0.292278628,-0.870744359,-1.141907765,0.146160043,0.373527177,-0.038042077,-0.495722305,-0.49274357,0.450056907,-0.809674855,0.247195622,-0.22184396,0.710977063,-0.709027723,-0.178394595,-0.121995795,-0.784671423,-0.748199563,-0.137537714,0.806708555,0.699038681,0.809528055,0.031796721,1.055390282,0.437995248,0.043173059,0.423598903,0.721052052,1.005290266,1.07824116,-1.401049683,-0.04241998,-0.028256428,0.040939723,-0.008988977,0.356119036,0.738917944 +HMCB,-0.180489436,-0.477023005,0.140966778,-0.207856068,0.029283591,-0.058239495,-0.613078801,-0.817673791,0.14471627,0.268783069,-0.070428831,0.064007294,-0.374489508,0.408417868,0.018357777,-0.513329848,-0.263087439,-0.351049542,,0.567822105,0.424155366,0.38385206,0.441535081,-0.078979529,-0.415080329,-0.435285961,-1.059808386,-0.124192575,-0.197544228,-0.622677808,0.119558926,0,-0.698135189,0.203693731,0.297098943,0.196414738,0.073597427,-0.242705425,,-0.150881096,-0.3827576,-0.651533317 +FUOV1,0.410463136,0.750214217,0.445530738,0.770350386,-0.203165154,0.139641712,0.37331185,0.23653351,0.615084503,0.210453242,0.5497036,-0.461792667,0.91102062,0.614610889,0.019372662,0.384394755,0.362618481,0.564673581,,-1.427462611,0.014963901,0.796572306,0.041816213,-1.472815069,0.433672866,1.23235064,0.351485089,-1.895869576,-0.265133172,1.595496709,-2.51201062,-1.278136075,,-0.801040249,0.909393472,0.202832139,0.617123613,0.090908909,-0.44710657,0.273833569,0.38054045,0 +MALME3M,0.037290009,0.508195457,0.424566867,0.040878237,0.066029175,-0.224237681,0.258915051,0.280493603,0.532105334,0.192514518,-0.118015852,0.13441694,0.325342396,0.695911662,0.070077664,0.229138529,-0.05948547,0.418464815,,-0.642309539,-0.761574414,-0.858135199,-0.465364359,-0.007170847,-0.609044523,-0.388606101,0.362407115,0.002742241,0.016975489,0.019789114,0.619766547,0.967693702,-0.352987915,-0.67573346,-0.680337773,-0.243378907,-0.067963879,0.107210815,,0.058879956,0.384211786,0.218082366 +KMS12BM,-0.070195004,0.481302961,0.281147911,0.527006428,-1.037543995,-0.961499976,-0.018182383,0.413700414,-0.982886592,-0.534254599,0.203001015,1.15955768,1.395758694,-0.375213317,-0.274391597,0.273620636,0.370180926,0.438763715,-0.889933345,-0.612130677,-0.800850025,-0.301115577,-0.517962866,-0.618239666,-1.437620915,-1.097263586,-0.000580758,0.470129518,-0.243681226,-0.659796517,1.325157701,1.144486261,0.574655031,0.193059418,-0.7206902,0.400774986,0.104081322,0.067442032,-0.442916849,-0.018591732,-0.155768299,-0.562327754 +T98G,-0.067614122,-0.094669194,-0.027863282,0.067777067,0.183281784,-0.163836266,-0.236702005,-0.951896078,0.79233277,0.923244425,0.425111953,0.244469163,-0.710729171,1.258005686,-0.159832212,0.270096767,0.150589231,0.557043125,,0.306060853,0.20770551,0.306480571,0.195501476,0.191431056,-0.003755647,-0.153101069,0.046047994,0.513506457,-0.023733447,-0.393963111,0.484386768,-0.128917556,0.791932499,0.849339983,0.650815045,0.876554688,-0.969357477,0.133873557,,-0.000190867,-0.489409211,-0.793630733 +HL60,-0.12522871,-0.129142737,-0.048947855,-0.232276925,-0.16539265,-0.307623851,0.071483326,0.340157346,-0.066610274,-0.376752763,-0.427520736,-0.850027429,-0.956193639,-0.504154737,-0.396508316,-0.713997846,-0.064598229,-0.420337193,,-0.105751123,-0.384586767,-0.223877679,-0.306300509,0.129846161,-0.024756214,0.372084607,-0.136760025,-0.945127102,-0.289501001,0.217335625,-1.663894241,-0.564117406,-0.909254545,-1.147641883,-0.531891399,-0.329817766,-0.056934929,-0.323200613,,-0.159881365,-0.227047618,-0.696551378 +DBTRG05MG,-0.466044296,0.257299074,0.643547582,0.244915349,-0.344032027,-0.176289956,0.438193683,-0.260696855,0.057817276,0.079672465,0.217730087,0.839168945,-0.028658582,0.190406078,0.002775727,0.440520217,0.150182476,0.630595216,-0.916958268,-0.243543532,-0.195672728,-0.277119105,-0.433845739,-0.566098286,-0.472725141,0.406694575,-0.59829536,0.100798992,-0.155306528,-0.0285962,-0.020634558,0.342092654,0.37312962,0.487077198,0.894755837,-0.453767119,-0.453741851,-0.174916184,0.105770036,-0.039836594,0.155522167,0.89923129 +HEYA8,-0.01865218,0.16095019,0.035690136,0.801586489,-0.325167373,0.036785837,0.010439889,0.705782719,-0.439173887,-0.309013879,0.059508391,0.147079189,0.693641718,-0.420712299,0.182033347,-0.096278485,0.253243201,-0.111594953,-2.48297404,0.247445213,0.56308628,0.941331716,0.325301335,0.077158456,0.465035062,0.994595836,0.11982071,-0.548423831,-0.100619371,0.500493306,-1.359251203,-0.148487335,-1.069562905,-0.069170871,0.86971181,0.422748984,-0.525045794,0.111855026,0.083103315,0.062688384,0.446045567,0.691489434 +NCIH2122,-0.08765913,-0.114956949,-0.00652696,,0.090443553,-0.164963512,-0.539506484,0.027615199,-0.148989097,0.32260072,-0.024976201,-0.425954372,0.127588936,-0.036873311,-0.048125478,0.095527196,-0.030439276,0.277119703,-0.131174086,0.908430241,0.440497075,0.230824818,-0.278060045,-0.044556553,0.287736611,0.494263406,-0.128971139,-0.670783875,-0.097800971,0.332722951,-0.966487578,-0.389122117,-0.301528301,1.506454895,0.514685899,0.185151122,-0.257188909,0.008878019,0.085719672,0.025568068,0.274811907,0.569638134 +MELJUSO,0.313830137,3.04E-05,-0.055543465,,0.158249775,-0.077286893,0.069774859,0.021652181,1.143510498,1.071291078,0.600259339,0.415777545,0.03251654,1.592401081,0.090611525,0.270576901,0.279387792,0.856924033,,0.170544206,1.007306053,-0.160688107,0.820847948,-0.35013543,0.52436358,0.79938831,1.184515165,-1.457246515,-0.186788065,1.152427884,-0.352297398,-0.058712206,0.571236718,1.358166975,0.691227847,0.179647475,0.421917503,0.020230674,0.121208996,-0.321648262,0.37181778,0.680275113 +SW620,-0.373882961,0.489773289,0.654578652,1.297256758,-0.514850327,-0.362256977,-0.305778157,-0.713603727,-0.53842508,0.303413228,0.504462331,0.473044602,0.09966129,0.437897325,0.050806684,-0.004906548,0.260278076,0.200206539,-2.714276476,-0.09422949,-1.205376052,-0.917150521,-0.245795444,-0.96180455,-0.642758497,-0.191345805,-0.157191887,-0.258206968,-0.072252838,-0.29479522,0.681364229,-0.307565258,-0.739832043,-0.446484005,-0.528170142,0.154251172,0.933499384,-0.112495643,,-0.280381339,-0.140923027,-1.353590309 +HCT116,0.147777438,-0.486268508,-0.432626736,0.491800555,-0.087119335,-0.175786553,-0.178404734,0.182499247,-0.000342397,0.635570298,0.484224767,0.13778601,0.441382239,0.741474546,-0.071583011,0.154080596,0.343383483,0.072463183,0.168515243,0.57337372,-0.669113116,-0.482904597,-0.660384078,0.508240763,-0.093902764,-0.011659937,-0.129460975,-0.274148778,0.171488812,0.662782161,-0.456257033,-0.216151366,-0.204769204,-0.194188185,-0.004318703,0.182846932,0.219210548,0.045552737,0.103669365,0.03426091,0.172125035,-0.003305821 +VMRCRCZ,-0.150015769,0.12727076,0.042937577,-0.448221819,0.561562558,0.447703513,-0.104017217,0.258370529,1.150925923,0.1390584,-0.02377145,-0.527730199,-0.071784786,0.72530017,0.266042519,0.346672559,-0.356246218,0.142860739,-0.917469917,0.185757978,0.515743723,0.101268454,0.02579716,-0.045542223,0.53635652,0.978824484,0.263555014,-0.114839032,0.417969252,0.524575046,-0.672244749,-0.080121516,-0.106049993,0.754698914,0.440511035,0.043482122,0.124840062,0.067568733,-0.187239357,0.102239085,-0.159111041,-0.104308197 +DU145,0.826435914,0.649671468,0.397019594,,0.213081516,0.047529171,0.876025915,1.309592639,0.334375154,0.695581645,0.44124601,0.532412995,1.626232124,0.960286457,0.68268331,2.210237446,0.195829345,2.602750521,3.645413006,1.518508987,0.507751088,0.350880017,0.043647448,1.182882067,0.588202595,0.479941172,0.523082483,0.425012878,0.404827303,1.299707634,-1.133498104,0.037609473,2.209010685,2.596783631,2.344654383,2.971167853,-0.055827391,0.587943306,0.218258086,0.574948734,0.711913758,1.125301321 +MM1S,0.123186928,-0.345867142,0.598266421,0.100646346,-0.126581748,-0.095744053,0.223535671,-0.630614062,-0.312993336,0.015592461,-0.030518151,0.813719247,0.163387338,-0.213470043,0.123211047,0.602186465,-0.417919006,-0.20259932,4.997958951,-0.130310301,0.863100816,2.293341357,-0.108831886,-0.755790392,0.708153247,1.301881188,-0.114370773,-1.721210578,0.047827062,1.24054816,-1.826133579,-0.517114595,0.175640349,1.169555332,0.819153869,-0.02110302,-0.614698839,-0.072803426,0.456270588,-0.028847384,0.163881534,0.104153759 +L33,-0.076620788,-0.261868604,-0.121490365,0.781850364,0.144389332,0.205995776,-0.274735803,0.752289316,0.751414879,0.336859211,0.186991527,-0.297149811,-0.2277778,0.345695518,0.075131777,0.466826267,0.468104052,0.618301406,-0.438848531,-0.084915262,1.115215342,1.955099328,0.397819497,0.228150742,0.93813033,0.862190512,-0.028940073,-0.499596743,-0.090410013,0.146944817,-0.910234836,0.165921695,0.83799676,1.57151916,0.912348504,0.903721271,-0.07065474,0.055121355,-0.146304307,-0.115002696,0.051344314,-0.168026135 +SKMEL2,-0.043554087,0.541296794,0.506854559,-1.047243147,-0.136055838,-0.638123116,-0.012097607,1.228536817,0.187611316,-0.724662645,-1.353098544,-1.314073653,-0.123794733,-0.110691044,-0.12606072,0.097055197,-0.277220903,0.090916772,-2.52134847,-0.449858542,-0.510590298,-0.621317762,-0.21398107,-0.090994605,-0.784726574,-0.784947329,0.147831911,0.030373053,-0.563191106,0.2095038,-0.300452653,0.011510428,-0.706338261,-0.921136603,-0.236099372,-0.375848865,-0.418778456,0.204802189,-0.074533839,0.11873123,0.352592452,0.110612221 +A549,0.050096692,0.525840581,0.008866804,-0.645738772,-0.19921372,-0.478179068,0.011929978,0.218491568,0.295614389,-0.078685858,-0.039635992,0.049271891,0.282833027,0.235061335,0.644317545,-0.058801609,-0.030580935,0.162533883,,-0.904838123,-1.620552632,-1.91748995,-0.192769713,-0.219056618,-0.803146232,0.49151537,0.501961337,0.414970547,-0.149587262,0.320915861,0.010284507,0.568506913,-0.918417102,-1.474547033,-0.969533445,-0.84410632,-0.440269741,0.162407056,0.138810001,0.111798545,0.142902789,0.429474688 +A172,-0.441731186,0.100848344,0.476005477,0.11975285,-0.661355771,0.009957744,0.305289664,0.032794485,-0.320616048,-1.224566833,-0.449884377,-0.263530017,-0.28647538,0.005382226,-0.411127962,-0.284159662,-0.471992966,-0.356770821,-0.192656622,-2.043316893,-1.681778225,-1.758408311,-1.75816596,-1.301503066,-0.911000378,-1.022942988,-0.355193915,-0.864759337,-0.128824963,0.926332764,-0.326251938,0.329718333,-1.979732841,-2.167551389,-1.371482208,-1.168546352,-1.054615348,-0.137497749,-0.04674377,-0.609144445,0.258151616,0.70741447 +NCIH1975,0.493234674,-0.088066715,0.211376816,-0.109419537,0.147736631,-0.038243278,0.187801768,0.072836304,-0.080216987,-0.142129382,-0.147938888,-0.422666159,-0.459444754,-0.094903789,0.148670984,0.739943882,0.079230046,0.160437116,0.00545392,0.577361704,0.166990251,-0.699080736,0.209300499,0.714079072,-0.04412642,0.216977568,0.537397283,0.366521025,0.192119528,-0.209325235,0.100903648,0.012392314,0.860719895,0.686158108,0.268574485,-0.065313225,0.135948176,0.065517509,-0.018457189,-0.024536989,0.150131088,-0.107862153 +COLO679,-0.396269374,-0.735210908,-2.05477266,-0.517392454,-0.825035378,-1.14706972,-0.680415377,-0.661372649,-0.47277852,-0.143011862,-0.110800717,-0.335252021,1.163262455,-0.502347265,-0.51524795,0.41884756,0.084171861,0.152068963,-2.861495536,-0.311815165,0.070070067,1.553805153,0.71698625,-0.451025206,0.38313151,1.705488411,0.306195889,-0.285680943,0.169364127,0.67429785,-0.399366571,0.225001171,-0.207708718,0.778762266,0.909780562,0.22849625,-1.42733201,-0.034571312,0.550385953,0.22891287,0.036261588,0.16810571 +KP2,-0.162932214,0.05662919,-0.545432778,0.146863003,0.242267941,-0.122208119,-0.426045977,-0.499302912,1.093894016,0.451136299,0.217879554,-0.087538698,0.007507705,1.109824746,-0.196192995,0.536351527,-0.017555962,0.538463762,-2.312642017,-0.572669106,-1.226938113,-0.835431611,-0.669491535,-0.175736741,-0.569927917,-0.252495111,-0.205533072,0.039061613,0.08193166,0.032788667,-0.004529718,-0.024974258,-0.262954035,-0.999305014,-0.202899974,-0.41249743,0.502595911,-0.073919262,-0.068987143,-0.042192878,-0.25710187,-0.707758475 +HUH1,0.197455907,0.410295985,0.773039999,-0.721651358,-0.235550777,-0.032848036,0.341413321,0.259192704,-0.48228196,-0.294833458,-0.245279538,0.19116072,0.356627044,-0.2574908,0.308256512,-0.157151794,-0.060975126,0.011622997,-1.840865865,0.432326373,-0.012146699,-0.623044528,-0.055467406,0.548010555,-0.238226178,0.163744804,0.87415701,0.818099925,-0.088398128,-0.399005761,0.702925194,0.309827647,-0.342890437,-0.971021777,-0.607212312,-1.418909473,0.100971182,-0.069417633,-0.074630616,-0.115728621,0.403779578,0.806376157 +MDAMB453,0.155425237,-0.185987681,-0.09624905,1.483377784,0.012080388,0.02086923,0.065718144,-0.599637585,-0.08993826,0.511867954,0.73523451,0.838820704,0.338363334,0.09875695,0.135392145,1.320847837,-0.207877919,1.114129637,1.061445746,0.358982187,0.597027757,0.178781921,0.395351259,0.407431889,0.379850357,-0.125525358,-0.216667939,0.604248964,0.434170339,-0.211060116,0.109684545,0.260172748,1.964277896,1.576612567,0.705248622,0.705380345,0.108659176,-0.387417531,0.359441271,-0.956506585,-0.102725476,-0.084741896 +PANC0403,-0.408520544,-0.372075165,-0.228318129,,-0.278988259,-0.15876208,0.002147175,-0.286462666,0.068663891,-0.087038578,-0.7071058,-0.610469346,-0.000339161,-0.260484001,-0.299976136,0.383020506,-0.123982491,0.260774471,1.600519682,-0.233112381,-0.81383755,-0.520457537,-1.14882373,0.157100802,-0.351398477,-0.24403318,-0.0667337,-0.003921201,-0.165387516,-0.067249548,-0.177018901,-0.105754083,1.074894683,0.334699238,0.057140475,0.184429308,-1.267878247,-0.2611873,0.257970456,-0.318241586,-0.146620399,0.142193029 +TYKNU,0.0687606,0.137597376,0.211127177,-1.40419185,-0.331162999,0.066118839,0.671380093,-0.258117939,-0.53849231,-0.468289662,-0.480358155,-0.508918559,-0.233557326,-0.516911396,-0.028071474,-0.775866558,-0.49336276,-0.75714397,1.021383481,-0.291425623,0.086610743,-0.756892749,-0.304247581,-0.319025432,-0.033026673,0.789400062,0.75906329,0.202705624,0.058848881,0.445149208,0.262990076,0.415414719,-0.23166304,-0.042313837,-0.48843177,-0.9389223,-0.339057111,-0.132736644,-0.290618521,-0.110508151,-0.16409145,0.118638311 +OVISE,-0.286116896,0.326052575,0.218942325,0.327748021,0.489896368,0.458287624,-0.205422606,-0.144733951,0.903012806,0.34758751,-0.038894773,-0.618480757,-0.328624311,0.571447509,0.157296239,0.184003683,0.353599876,0.462143919,1.035194514,0.329325373,0.324784272,1.875303539,0.962009234,-0.060237148,0.208762865,0.372477619,0.43819556,0.368474595,0.254872721,0.301603847,0.310723912,0.209142878,0.219695628,0.138046535,0.457845418,2.981409893,0.445110869,0.173126166,0.116868384,0.111027191,0.211110331,0.270228075 +EFM19,-0.246491088,0.012311884,-0.070986118,0.127510347,-0.803359652,-0.029807396,0.351682397,-0.575367473,-0.869271296,-1.013299384,-0.455898367,0.259050182,-0.419823499,-1.042017654,-0.144085551,-0.451523253,-0.401035746,-0.577627023,-4.307924205,-0.012528718,-0.143394342,-0.766079847,-0.248966827,-0.244984579,-0.483361823,-0.805780275,-0.401497769,-0.020591939,-0.256070751,-0.692373318,0.722763726,0.246629933,-1.504715589,-1.009051363,-2.472474224,-2.430650342,-0.142136537,-0.248580993,-0.188100287,-1.507055881,-1.614317527,0.377980703 +MELHO,0.117013882,0.579665794,0.743665022,0.324475573,0.243173523,-0.136186172,-0.275471642,-0.481618281,1.046187946,0.843205039,0.697925959,0.608537747,0.460069283,1.628054794,0.04497796,0.695390028,0.654144447,1.234041734,,0.101194114,0.60918163,0.487160575,0.071377979,-0.168408725,0.670160227,0.17302844,-0.009806204,0.029110212,0.287318738,0.138436774,0.362817351,0.44867998,0.872705408,1.445758115,1.400654096,0.9481811,-0.314976201,0.102089583,,0.229988712,0.138142083,0.482431039 +RL,0.328643646,-0.130902272,0.231636737,0.367059049,0.420157839,0.126015962,-0.465340234,-0.050539267,0.124967438,0.974125859,0.856381113,0.184905769,0.072799256,0.902929766,-0.094171182,-0.313278922,0.809773941,0.606215312,-2.419948394,0.887364807,-0.212063948,0.394067067,0.146468145,0.515935331,-0.718987895,-0.979687028,-0.171469486,-0.159229116,-1.21860909,-1.365152167,1.837771937,1.574833423,1.057890402,-0.842024459,-0.16418328,0.697249616,0.240541994,0.130787502,0.208279878,0.200242123,-0.186480012,-0.099435866 +G361,-1.042578937,-0.613508299,-0.460088614,-1.4610294,-0.841507196,-1.0811104,-0.661296658,-2.037054447,-0.614402828,-0.923386031,-0.716234033,0.023491004,-0.373242704,-0.815724155,-0.784352479,-0.44275298,-0.606204,-0.273769279,-0.036749961,-0.817446989,-0.3943579,-1.013390679,-1.450024198,-0.82687943,-0.872835601,-0.947057465,-0.756533857,-0.057904013,-1.063631676,-1.112194907,-0.795805482,-0.514052926,-1.292463887,-0.692765195,-0.875988252,-0.83522244,-1.598774765,-0.981902302,-0.687655252,-0.625261916,-0.738267102,-0.49031812 +NCIH647,-0.345135525,-0.515444413,0.312136411,-0.234530702,-0.209678684,0.347945395,-0.212975629,-0.105598383,-0.053812982,0.392553667,-0.068484259,-0.331075483,-0.365224047,-0.074720232,-0.046725762,-0.308801406,0.207308935,-0.248979888,,1.071294104,0.451658519,0.597717412,0.44838964,0.526474985,0.118066981,0.272941015,-0.062490843,-0.057629065,-0.245964515,0.068557034,-0.650124898,-0.434133481,0.025825452,0.377767963,0.410610425,0.243808966,-0.243622987,-0.04773837,,-0.190205671,-0.021429265,0.042740826 +GMS10,-0.134104764,0.226408945,0.557982947,-0.981231649,0.963923619,-0.224575228,0.532003167,0.623436618,0.395555101,-0.384629436,0.347803036,0.304721822,0.199964705,0.329997113,-0.132873933,0.222510867,1.100963442,1.164934037,-0.75344569,0.541383949,1.031202914,0.546210274,-0.151218742,0.712489337,0.693269439,0.500722445,0.518033985,-0.042188336,0.367603731,0.448645389,-0.080757637,0.5719059,0.700487737,0.266078964,0.271224081,0.516273074,0.852259739,0.249231411,0.333207833,0.623852821,0.309632801,0.122137865 +SEM,-0.12601514,-0.326599866,0.263490525,0.079864494,-0.171447486,-0.299887327,-0.004962834,-0.371691994,-0.552015688,0.227398911,0.298682047,0.741865425,0.276105027,-0.397444074,-0.044812681,1.053688141,-0.551264475,0.432509468,-0.416888574,-0.274104961,0.55801364,1.240132688,0.021927286,-0.699299628,0.473581462,0.510566948,0.073130273,-1.393801244,0.301401833,1.062427415,-1.24874663,-0.646022188,0.929980002,1.270114826,0.85168785,1.081109481,-0.736239683,-0.019442461,0.006236896,-0.155072337,-0.432854301,-0.679181449 +HLFA,0.260956203,0.804166797,0.130328182,-2.875855191,0.304491809,0.482671948,0.436466544,0.43097768,0.159649831,0.282370681,0.035121626,-0.006484989,-0.162509934,0.529147235,0.52013225,0.100400345,0.38377101,0.182744739,1.553859358,0.450365021,-0.097004292,-0.091182838,0.10854544,0.646136031,-0.076233403,0.076295109,0.403994418,0.845157748,0.279744221,0.249958433,0.625174427,0.791165648,-0.016700879,-0.722732393,0.060902231,0.959856607,0.652682155,0.447949488,-0.131768277,0.422837644,0.656670827,0.69226021 +42MGBA,0.141544522,0.269771346,0.685109238,0.945805982,0.670389195,0.300641083,-0.32420407,-1.229171472,0.713750512,1.217812971,0.60578858,0.350495296,-0.55306504,1.850440557,0.156638443,0.7507115,0.495318413,1.074053551,-3.206092226,0.133263022,0.862819616,1.067858837,0.92628613,-0.28687304,0.230526934,-0.305459712,-0.16044208,0.275454781,0.505125151,0.091812465,0.329365197,-0.03358323,0.599860877,-0.444460629,1.159804655,0.37704111,-0.237223584,0.264655952,,0.249576288,0.195321091,0.504659234 +HCC44,-0.041108438,-0.284243258,-0.612308544,0.093395793,0.389178582,0.173060864,-0.537860851,0.375408664,0.253523813,0.26856295,0.020373147,-0.401232293,0.222046828,0.108388501,0.028421058,-0.046895939,-0.264429067,-0.39988028,,0.638249612,0.015898736,-0.806255392,-0.111766278,0.539011495,0.160331427,-1.157241414,1.269107793,0.051566809,-0.079394124,-0.168994498,0.448589055,0.174296552,0.254077346,0.268953224,0.223021473,-1.000517007,0.230523125,0.041451078,,-0.008763284,0.020804938,-0.172499417 +KYSE70,0.36079544,0.232117091,-0.10715223,-0.071136681,0.1318838,0.543638322,0.383085614,0.386152148,-0.241758711,-0.328044789,-0.174984368,-0.249738636,0.218881498,-0.575944836,0.206640678,0.236976799,-0.162919906,-0.142169072,-0.49787382,-0.334356423,-0.553536035,-0.444712619,-0.268240404,0.060387728,-0.461700829,-0.169218295,0.459136475,0.177176571,0.192526558,0.25084889,0.153770386,0.373977865,-0.169943656,-0.459917493,-0.451646792,-0.833968846,-0.564810283,-0.113765752,0.010154166,-0.203789819,0.048816274,0.338291822 +GAMG,0.293999429,0.371306303,-0.01292731,-5.052116104,-0.500379696,0.171837956,0.852302224,0.149816319,1.044458111,-0.195178683,-0.02520403,-0.403483892,-0.525055822,0.680373964,-0.456617024,-0.297380169,0.152409401,0.43742766,-0.688519926,0.321991805,-0.007491525,-1.101863854,0.866892612,0.38760019,-0.113385772,-0.5098558,0.870517758,0.148626262,0.229128002,0.294062765,-0.188003228,0.101081386,-0.000480501,0.464856355,0.3169509,0.000827485,0.112442211,0.151109268,0.242901469,-0.229843239,0.244059285,0.190176819 +NCIH522,0.093603638,0.063360778,-0.412043539,0.124519219,0.173521997,0.232016686,0.313131466,-0.063310496,0.802886784,-0.210206454,0.102513286,0.109538668,-0.052363396,0.535189289,-0.000528842,0.103760164,0.174288406,0.266109638,,0.36663026,-0.731671461,-1.833758815,-0.262030605,0.14824729,-0.55005171,-0.038709849,0.345187619,0.267078314,-0.262287739,-0.368712902,-0.055421908,0.244126169,0.189912063,-0.495878446,-0.670101215,-1.876207505,1.001598665,-0.086880752,0.055140722,0.153139945,-0.688382528,-1.341570864 +EN,0.000790036,-1.104846216,-0.724433373,0.073535744,0.018717688,0.306630506,0.197804174,-0.232283949,-0.285972731,-0.059973851,-0.210549441,-0.357206823,-0.205778146,-0.281166349,0.120026577,-0.146817116,-0.157869181,-0.32710634,-3.213502081,-0.97734073,-0.686511706,-0.850531307,-1.437122387,-0.777659664,-0.236286182,-0.587940215,-0.928774113,-0.352157181,0.197650189,0.492717984,-0.525980362,0.483439898,-0.312213897,-1.499138971,-0.711965683,-0.805287006,-0.355120341,-0.024056258,,-0.080344847,0.269299941,0.266835551 +PK59,0.25821986,-0.103886718,-0.096260075,-0.301206047,0.217532391,0.46565546,0.531483314,0.143364244,-0.277602978,-0.75852693,-0.701857525,-0.589252208,-0.234137652,-0.748125793,0.081392556,-0.450051535,-0.501357439,-0.909721757,,-0.66516058,-0.852631443,-0.659466858,0.260785602,-0.370406825,-0.634263368,-0.488739607,0.709462785,0.377427829,0.254703949,-0.00308816,0.842535622,0.869327987,-0.803147118,-1.486814649,-1.084138687,-0.067246157,-0.526815542,-8.57E-06,,0.169555248,0.000399965,0.077080338 +COLO741,-0.179008877,0.531623391,0.505767857,0.40046531,-0.468302906,-0.409723398,0.416832464,0.051255896,-0.326078447,-0.295709554,-0.001098075,0.419059688,0.597097515,-0.517870535,-0.134981672,-0.459674634,-0.08573114,-0.384679073,-2.095088524,-1.013999093,-0.040980068,-0.260493309,-0.901268505,-1.185155365,0.139679037,0.403043283,-0.323092742,-0.864534197,0.543241117,1.008636763,-0.621820538,0.393371909,-0.698971442,-0.255187903,-0.519277601,-0.707068004,-0.544931796,-0.078431677,0.054588047,0.098192825,0.154615167,0.289893189 +HDMYZ,0.578113571,0.121145238,1.279098535,-2.731534042,0.233230732,0.248549848,0.651654872,0.782574857,0.572429333,0.485717135,0.498963987,0.926680704,1.338231394,0.556655042,0.518381466,0.451207458,0.631814454,0.644795105,,-0.213309775,-0.82185112,0.317116537,0.566852281,-0.226522236,-0.668074171,0.598340516,0.542255224,0.416220835,0.297724025,0,0.987410279,0.914034341,0.006479451,,0.694952727,0.851205653,0.352036571,0.298559247,,0.569705732,, +LNCAPCLONEFGC,0.073586673,0.80383243,0.407588201,0.850309853,-0.339370206,0.294374233,0.223384375,-0.003536763,1.397419894,-0.195839022,0.219851181,0.463191773,0.26309122,0.6547735,-0.094142065,0.392056081,0.573037815,0.725744185,1.050059081,-0.859514314,-0.87899842,0.364574466,-0.604502577,-0.524452196,-0.487864651,0.351764708,-0.345606868,0.304408001,0.477462451,0.836117689,0.464237604,0.782472857,-0.048264959,-0.342817373,-0.219296867,0.54104476,-0.265939924,0.054875845,0.286412212,0.168974247,0.269919032,0.351661119 +LS411N,0.036793145,-0.232971431,-0.244196852,0.291395676,0,-0.175256286,0.134060217,-0.06130433,-0.114159421,0.103125476,0.204237755,0.347330192,0.420564175,-0.074200127,0.189032033,-0.065651306,0.64785231,-0.110690679,,-0.4974249,-0.558655382,-0.877605287,-0.552018999,0.084306183,-0.423623367,-0.381031189,-0.205440298,0.147846721,0.484829336,0.328924119,0.163604788,0.740529018,-0.865422836,-1.032180224,-0.971500208,-0.885788863,-0.466223026,0.081054904,,0.062523835,-0.028058372,0.305091927 +HCC78,-0.646068371,-1.240574336,-1.038643381,-1.000872237,-0.215217204,-0.757300355,-1.068905541,-1.450260237,0.548578677,0.638349578,-0.071148629,-0.667601301,-0.298137389,0.833152619,-0.391296507,-0.703810338,-0.475366349,-0.589241039,0.16116477,-0.270994477,-0.614367046,-0.90655188,-0.428626779,-0.633404757,-1.455936209,-0.385664594,-0.370785228,0.167993384,-0.3933919,-0.709276368,-0.599983553,-0.40913941,-0.308624528,-1.571953804,-0.799230156,-0.054859921,-0.720748354,-0.552567248,-1.459879244,-0.650848191,-0.702112397,-0.544029293 +YKG1,-0.197018371,0.238844629,0.368060591,-0.087504576,-0.188086247,0.172888156,0.15031368,-0.254533539,-0.338828073,-0.162436271,-0.330083507,-0.149895061,-0.231696437,-0.117033138,0.147360537,-0.172942134,0.222136189,-0.281366558,,-0.106813721,0.377749578,0.287410948,0.402976458,-0.178274814,0.00984722,-0.103461943,0.161284928,0.096445815,-0.04410207,-0.257592743,0.350477752,0.252689467,0.261084112,,0.020217089,0.47453376,-0.382411754,0.186330243,,0.005869699,-0.081242169,0.223587398 +ESS1,0.107500653,0.096615229,0.086600021,-0.045306179,0.884452895,0.686953201,0.461814764,0.923664081,0.555071731,0.356949396,0.013614115,-0.045469661,0.176991046,0.043067801,0.657940905,0.45691705,0.485485731,0.297008495,0.014783203,2.149009712,1.585287914,1.663982757,0.907308121,1.475777223,0.638429368,0.675897094,-0.301598227,0.653648656,0.129862086,-0.108840783,-0.070112259,-0.74519913,1.42562048,1.363926478,1.051154748,0.396023038,1.786851385,0.613443884,1.171745492,0.492006011,0.074697871,-0.126623973 +U251MG,-0.101656103,-0.248580598,-0.253968229,1.151115811,0.05850516,0.141439205,-0.074912894,0.010194081,1.219748387,0.200864396,-0.037474539,-0.083719783,-0.120047717,0.674918807,-0.159544487,-0.072134791,0.18607455,-0.202726881,1.775422341,-0.819304971,-0.511481509,-0.449599096,-0.437309969,-0.627961618,-0.179012167,0.470621536,0.177571377,-0.101564716,-0.109265135,0.614932908,0.754763307,0.552628118,-0.696666281,-0.638340871,-0.585736835,-0.603915741,0.786864334,0.068309208,0.038935817,-0.077231822,0.049074463,-0.174937843 +TE11,-0.125682803,-0.658960038,-0.624864546,,0.390736959,0.253115342,-0.16897884,-0.022709894,0.016320893,-0.423768214,-0.306679096,-0.613250155,-0.971425866,-0.856498562,-0.247377141,-0.272522993,-0.171243333,-0.266821201,-1.122886211,0.442760469,0.051879957,0.062248491,0.239924615,0.268832284,0.214477942,-0.295079522,-0.004005728,-0.222586538,0.04757224,-0.03894408,-0.261489295,-0.253853356,0.173351847,0.575872436,0.238514277,0.00425166,0.12266858,-0.025748591,-0.101232657,-0.082500343,-0.340512703,-0.41318283 +KS1,-0.132682499,-0.280177888,0.36248324,0.269290135,0.541595908,-0.134105778,0.217636838,0.419403249,0.133385229,-0.222700545,-0.242494482,-0.470821716,-0.256788768,0.311796254,-0.154724179,-0.20619825,0.100661331,0.14499853,1.190411542,0.668232697,0.460727613,-0.223196312,0.191599866,0.833734137,-0.070732533,-0.124247412,-0.220292329,0.585566206,-0.334801673,-0.814913794,0.577099415,0.019121445,1.724165691,0.586079645,-0.064548002,0.489582468,1.439096513,0.026077387,0.11729072,-0.081810236,0.087851855,0.283789392 +HEC1A,0.167076019,-0.314788835,-0.605912595,0.228151091,-0.180051988,0.048193088,0.184300389,0.315097761,0.49243092,-0.037973433,0.24743705,0.294569178,0.523203036,0.716894738,0.06847832,0.349550801,0.051894369,0.043722005,1.695878966,-0.410408586,0.210623845,0.395951129,0.30280948,-0.258703816,0.36742464,0.507629188,0.010161737,-0.119265684,0.364460888,0.258185958,0.017224601,-0.051065413,-0.301113772,0.001974171,0.776088535,0.779554533,0.208577338,0.009476112,0.199263513,0.038613026,-0.172387917,-0.315421653 +TE1,-0.06405062,0.411279137,-0.075950808,,-0.583806867,-0.10270443,0.074586336,0.801588051,-0.394634863,-0.735324674,-0.297439167,0.013156124,-0.031013625,-0.216013343,-0.119059892,1.68803938,-0.753729789,1.529452791,1.905689957,0.36770179,-0.488760377,-0.773144252,-0.695371735,0.254082611,-0.384159967,-0.482122175,-0.211751602,-0.388909018,-0.256659336,0.488066613,0.022822964,0.167103237,0.98681114,1.307473607,1.395986731,1.485861932,-0.030929862,0.029115555,-0.138444463,-0.002766336,-0.095338094,-0.339788766 +JHUEM2,0.410719016,-1.457781248,-1.192074248,,0.125331674,0.195052924,-0.034087973,-0.090015603,-0.147555059,0.710561939,0.694643583,0.450534137,0.518278269,0.205367267,0.568978013,0.214866082,-0.061437838,-0.0068619,-0.466736665,0.175250382,-0.186013853,-1.26201241,-0.356872942,0.195387694,0.047892515,0.550099098,0.498302089,0.416566673,0.159042577,-0.78917399,-0.456246749,-0.249164695,-0.428534331,0.260853801,-0.94670822,-0.420150891,-0.046837767,-0.051161807,0.078800987,-0.184961579,0.075345067,0.382433649 +RERFLCAD1,-0.015846164,-0.088767473,-0.175387334,-0.086611616,0.34296411,0.132901607,-0.017429323,0.424495087,0.726109315,-0.388258097,-0.489866262,-0.821483607,-0.697331061,0.300082409,0.142903948,-0.311238155,-0.297428865,-0.246732811,,0.009897113,0.291069535,0.313210644,-0.291257545,-0.003300879,0.474271536,0.628340555,-0.001108733,-0.806935171,0.178692468,0.603093401,-1.709788015,-0.531802466,-0.561127516,-0.029326106,-0.043465286,-0.35168743,0.464823877,-0.053836359,,-0.033785315,0.009606777,0.0593097 +TE5,-0.097073405,0.258360083,0.108659789,-0.168767016,0.261104393,0.504676505,0.217745899,0.605146007,0.144738643,-0.664258541,-0.159513225,-0.552982718,-0.822517825,-0.276663425,-0.242204482,0.430074451,-0.043723593,-0.22557726,,-0.868137895,-1.160548154,-0.416154205,0.016507063,-0.386744513,-0.333299057,-0.121438405,0.128299931,-0.143636606,0.209348357,0.229157457,0.372257628,0.123095764,,,-0.423007898,0.040363366,0.423080804,0.192997536,,0.102082091,0.017526007,0.183701377 +KELLY,0.105227495,0.610580346,-0.040255326,0.469470685,-0.234400721,-0.079648799,-0.163885796,-0.220486085,-0.009062727,0.699503132,0.657246173,0.808862821,0.562036675,0.444797158,-0.061239075,0.831017538,0.700966558,1.839130382,,0.366099477,1.18123869,0.963665284,0.36497428,-0.130663889,0.724658058,0.736610033,0.147460886,-0.299015411,0.108952657,0.296688554,0.055666747,-0.462930014,2.77228689,2.863170134,1.906377056,1.39801865,0.661018424,0.086894314,,-0.029086267,-0.016564357,-0.629219055 +NCIH1155,0.072760343,0.29628201,0.201401467,-0.083199345,-0.076120909,-0.907647214,-0.623484383,-0.629430342,0.097068648,1.212211021,0.709557183,0.655804076,0.842633148,1.532653909,-0.395683724,0.304240324,1.323240444,1.574929075,1.595062748,0.894321349,0.932352393,-0.182944367,-0.382554233,0.306707396,0.468131152,0.06909909,-0.35361737,-0.082832456,0.470297771,0.174265273,-0.248223231,0.217975226,2.723040782,1.68600784,0.813772519,0.203405969,1.014357278,0.099728636,-0.17129384,0.20199923,-0.109830587,-0.919857671 +TE15,0.031423096,-0.006352822,0.369743976,,-0.33626283,0.025658676,0.11945294,0.055406307,-0.119519039,-0.388398752,0.258447747,0.402716046,0.358801744,-0.264408057,-0.118037055,0.310138259,0.203290972,0.358162485,0.997524791,-0.095402241,-0.584642788,-0.153008152,0.682200673,0.218885024,-0.486839672,-0.896271178,0.465185029,0.758806161,-0.606735628,-1.371954333,0.807440404,-0.559127727,-0.44223363,-0.95754239,-0.455835077,0.356041784,0.522212763,0.042725127,-0.066186906,0.017922882,-0.226725133,-0.343852571 +ABC1,-0.142736255,-0.021129003,-0.497790922,-12.47108667,-0.343503539,-0.057915264,0.207315754,0.590775388,-0.559301693,0.047830543,0.181340961,0.3322328,0.330283296,-0.330872805,-0.008394958,0.066326939,-0.201105425,0.03416212,-1.840536259,-0.062606555,0.462690566,-0.296572177,-0.090266393,-0.599375383,0.528560375,0.865384884,1.071174457,-0.18338189,0.589858911,-0.238450837,-0.631604931,-0.599928644,-2.643781997,0.289859376,-0.376729888,-0.356460612,-1.032171646,0.027454106,0.072453835,0.041951508,-0.058088513,-0.178549137 +8MGBA,-0.062003305,0.391046468,0.830222354,0.240984988,0.415098343,-0.286114882,-0.503596239,0.269330837,0.694784461,0.747404313,-0.249437366,-0.737611443,-0.227922231,1.161240576,-0.145790663,0.676337107,0.118064946,1.022103794,0.385770859,0.602439392,0.866469831,1.310693841,0.659644046,0.288101462,0.143971791,0.646165872,0.245920077,-0.405652246,-0.624482986,-0.258950675,-0.393706111,-0.535099005,1.509050126,2.210701692,2.51375665,2.349932079,0.673579965,0.020718355,0.043829933,-0.072262741,0.24412644,0.383435269 +NCIH1703,0.14947595,-0.085805471,-0.237426555,,-0.220413071,0.115526886,0.450352672,0.315264903,-0.989592444,-0.764371283,-0.409892704,-0.143230248,0.076578598,-0.646710239,0.246548076,0.361660572,-0.547923942,-0.270422621,-0.41574699,-0.702346844,0.166126299,-0.074986899,0.312290184,-0.210058387,0.067062202,0.02623936,0.505581511,0.069678458,0.491757688,0.005872882,-0.254976362,0.16706847,0.246122998,0.180480807,0.147465204,0.740199722,-0.417733509,-0.038729811,,0.199125982,0.309889361,-0.02707574 +AGS,0.082518859,0.114382906,0.009469788,0.440969481,0.112384243,0.371751235,0.205194127,0.473888999,-0.527025633,0.061868726,-0.108735592,0.231428473,0.467071471,0,0.289070724,-0.638146112,0.281143801,-1.091784912,3.7352254,-0.495147661,-0.3127921,-0.524436786,-0.754157609,-0.078972508,0.334470344,-0.452612715,0.063274082,0.053396384,0.609531022,1.016098516,-0.09440578,0.761739977,-1.115509539,-1.286367999,-1.466212016,-1.400721265,-0.355690496,0.053804821,0.023706685,0.245927089,0.208120679,0.829848767 +QGP1,-0.324993844,-0.845111281,-0.626985756,0.044556548,-0.086757715,-0.66528046,-0.539602642,-1.433080702,1.482728952,0.20366182,-0.193182392,-0.655125279,-0.136068912,1.203974586,-0.610576035,-0.3097205,-0.202225375,0.246120553,0.717894728,-1.434786754,-0.907958905,-0.779519204,-1.016154748,-1.059947973,-0.526469655,-0.25980617,-1.054531529,-0.593969288,0.515712597,0.039296121,-0.54268828,0.273945941,-0.638568096,-0.19402249,-0.128718544,1.138723445,-0.536091149,-0.427307012,-0.75373176,-0.197962853,-0.078870858,0.116710307 +DETROIT562,-0.000643415,-0.219133583,-0.038845132,-0.869181266,0.082439236,0.069003907,-0.06261722,0.000433107,-0.367288262,0.197908633,0.137208885,-0.125738213,-0.551847066,-0.379650898,0.079952478,-0.090073635,-0.025710687,-0.474450922,0.909957356,0.719892461,0.490975791,0.227043426,0.512247517,0.44046075,0.426561776,-0.332074619,0.246085056,-0.054883477,0.126890983,-0.109296698,-0.700085176,-0.286893935,-0.050158549,0.191132569,-0.012284109,0.14935181,0.288262473,0.116494698,-0.079966736,0.136463756,-0.273449207,-0.623658082 +BT474,-0.226245285,-0.012311884,-0.342306028,0.692218533,-0.894242057,-0.358491313,-0.291090013,-0.114824161,-0.382096924,-0.765307433,-0.381784137,-0.120391171,0.287872266,-0.444030043,-0.281968998,-0.213890465,-0.21632588,-0.176212118,-1.48553621,-0.412939561,-0.734667509,-0.914378919,-2.043360105,-1.373521657,-0.356371794,-0.422606814,-0.95485867,-1.223013733,0.273219757,0.389800075,-1.343215906,-0.017241241,-0.226115652,-0.428301053,-1.05790899,-0.924995064,-0.82873233,-0.614435761,0.342964814,-0.891993621,-0.748988002,0.245609705 +ACHN,0.373921217,-0.097645758,0.050695922,-0.455667657,-0.157234672,0.282946139,0.037247767,0.30897045,-0.243001678,-0.485450378,-0.253999167,-0.135685905,-0.329250875,-0.060133798,0.169811982,0.027414575,-0.779665387,-0.425723174,-2.959311958,0.258401561,-0.278051232,0.033192511,-0.270277263,-0.125872102,-0.365631692,-0.149510729,-0.344643868,0.498502489,-0.300525108,-0.235509736,0.24327544,0.037534619,-0.078620772,0.171400907,-0.178692093,2.104685855,-0.027107466,-0.028158685,-0.201139348,-0.137153579,-0.045627157,-0.224240577 +LOVO,0.00750317,-0.432426531,-0.501179228,-3.431456133,0.119250633,0.938343152,-0.658983071,-0.429855092,0.777730372,1.029228913,0.949649993,-0.162756826,-0.472153567,1.044830713,-0.046719607,0.187267443,0.991923331,0.548169766,0.362148306,-0.547456818,-0.727340404,-0.365788601,0.274072168,-0.705518098,-0.395668577,0.194225304,0.165258209,-0.092219133,0.116052444,0.311454277,0.509058203,0.997928201,-0.137311476,-1.152825265,-0.49467153,0.696717381,0.40133878,0.089101228,0.532429496,-0.346525729,-0.14972157,0.352654583 +NCIH1581,-0.137927494,-0.20390308,-0.473986054,-0.249485124,0.19492614,-0.303481716,-0.191767688,-0.283483724,0.375108653,-0.057352232,-0.552724718,-0.907916708,-0.824022415,0.574432394,-0.236484091,-0.316624282,-0.159812124,-0.072028836,,0.089569005,-0.344528314,-0.316233902,-0.328086434,0.227266177,-0.468943212,-0.672396297,-0.223268308,0.002147685,-0.550185335,-0.772851657,0.134893289,-0.299294092,-0.122971747,-0.415186477,0.098293536,0.256105252,0.037989792,-0.247558194,,-0.1905217,-0.515278903,-0.731615472 +SKMEL30,-0.268923631,0.342700155,0.24207798,-0.167811453,-0.271933989,-0.40436703,-0.822773658,-0.705927802,1.486479249,0.506036302,0.296820963,0.220129233,0.312129708,1.893336856,-0.514290181,-0.149324156,0.162638031,0.475025134,-2.124122446,-1.252081192,-0.291923998,0.004396863,0.003093036,-0.517550299,0.020339562,0.267577816,-0.582082921,0.004511912,-0.201567181,-0.756881744,0.081652924,-0.439948765,-0.650779454,0.009208386,0.578954171,1.056949701,-0.270206096,-0.441541668,0.074061035,-0.608799272,0.070440035,0.851819936 +OVKATE,-0.141875457,0.113456897,-0.019772354,-0.559833227,-0.191634626,-0.011065625,0.21683388,0.317911269,-0.737110106,-1.326166915,-0.978054072,-0.64177197,-0.767931389,-1.278493046,-0.091359939,-0.471611599,-1.254192142,-1.048945035,,-0.005282832,0.69856583,0.966085961,0.719283658,-0.266510015,0.366710819,0.603221392,-0.001718109,-1.005525938,-0.762320433,-0.313107266,-1.775388572,-1.738350314,-1.267614054,-0.567171846,-0.211014066,-0.158407592,-0.00802286,-0.254764844,,-0.24792801,-0.644961046,-0.948022004 +22RV1,-0.256518621,-0.251260198,-0.227413171,-3.956062568,-0.123450607,0.315041235,0.090296619,-0.834618959,-0.154842468,-0.098703176,0.207453326,0.098688407,-0.479026265,-0.019997498,-0.190823549,-0.414800358,-0.09433348,-0.633875288,0.731505396,-0.331914835,0.838884,0.586400246,-0.042147493,-0.746092127,0.467785888,0.480043459,-0.379310411,-0.654610586,0.217960012,0.266687538,-0.745437729,-0.060035567,0.062956954,0.536539121,0.373860173,-0.05070784,-0.109414701,-0.130568114,-0.106106349,-0.204197105,0.312716426,0.815371459 +C32,-0.44341105,0.058676401,-0.64138493,-1.61699238,-0.249608887,-0.188155527,0.234446676,0.396557862,-1.106882345,-1.564567924,-0.766142447,-0.326587214,-0.494152765,-0.98167502,-0.289124282,-0.926934356,-0.866497751,-1.203885689,-3.757897762,-2.156170793,-2.146895683,-1.893681643,-2.244431929,-1.813605334,-1.846592537,-0.918314955,-0.755972653,-0.714864452,-0.293822004,0.946477329,0.52308321,1.29931287,-1.839484092,-1.969874072,-1.501223496,-1.523241021,-0.555194151,-0.267305586,-0.630218985,-0.186403899,0.190385345,0.499749115 +PANC0327,0.119771114,-0.155737464,0.146057996,0.147549371,0.773852995,0.21792283,0.461049667,0.017563447,0.738775073,-0.026750776,-0.229495431,-0.130163388,-0.250500537,0.257661865,0.396061788,-0.22973677,0.197352233,-0.307887931,,-0.089587211,0.011771399,-0.325569583,-0.094956001,0.268955381,0.162432206,0.187953488,0.539836204,-0.155155225,0.302815608,0.508072509,-0.450666303,0.355601257,-0.781927601,-0.909012843,-0.268778549,-0.079004461,-0.481293904,0.167470167,,0.251322361,-0.096032486,-0.093470406 +RPMI8226,0.062597964,-0.271513109,0.293963654,0.19891036,-0.16129352,-0.294346263,0.178377793,-0.0039496,-0.542119244,0.121741022,-0.030177388,0.55254022,0.66330592,-0.089103886,0.028597529,0.541075534,0.294364513,0.302488663,1.515509328,-0.088359519,-0.278983272,-0.28183715,0.154412708,-0.058606616,-0.833201926,-0.971418942,4.47E-05,0.618411608,-0.335922315,-1.002542238,1.593727154,0.546259078,1.000988058,0.581062556,0.172849329,0.651814441,0.075031002,0.061995229,0.187555739,0.050642594,0.020901945,0.160022011 +NCIH1781,-0.013657535,0.12009589,-0.146018337,-0.191999009,0.213199521,0.103516658,0.06150801,-0.310845735,0.24855492,-0.148130248,-0.062556876,-0.331447468,-0.279524248,0.63048726,-0.035369964,0.593988181,-0.509034372,0.502412924,,-0.762898675,-0.633531137,-0.391409069,-1.209688994,-0.388619598,-0.009119457,-0.058608872,-0.276008555,-0.607176342,-0.396108291,0.548298182,-0.196883819,0.009330832,-0.209683122,-0.185155579,-0.092238157,-0.259006504,0.349481675,8.57E-06,,-0.060667924,0.067504261,-0.197442163 +LS1034,-0.121222191,0.086834698,-0.090393365,-0.262787902,-0.14618216,-0.05382668,-0.11729795,0.144990032,-0.188204316,-0.27432518,0.123943894,0.124868146,0.153934652,-0.106650694,-0.163663532,0.31985263,0.079401154,0.402688278,,-0.518149046,-0.571275414,-0.502362817,0.237410307,0,0,-0.139353841,0.189289118,0.129314506,0.237143116,-0.374707933,0,0.269644901,-0.246897036,-0.471626161,-0.390322395,-0.083260579,0.404558904,-0.103146926,,-0.1216162,-0.37888809,-0.795286028 +G402,0.242636352,-0.736091306,-1.012026651,-1.578033542,-0.14336753,-0.293540613,0.084697455,0.591628188,-0.275540878,-0.081960794,0.348356061,0.326665053,0.114918797,-0.227280925,-0.260573941,-0.215316501,0.015800503,-0.23103794,,0.751453266,0.867404758,-0.047827209,1.195760652,0.417217312,0.048434026,-0.225931757,0.668001282,0.525400239,0.11110003,-0.353523244,0.00609786,-0.336963808,0.442531421,0.42371294,0.175772357,0.320390488,0.171894874,0.269426322,0.027799705,0.74782946,-0.024854819,0.61416901 +NCIH146,0.107355209,-0.632496146,-0.410593273,-0.005334557,0.279408115,-0.052148733,-0.459217192,-0.085720479,0.104324793,0.253075063,-0.118720307,-0.576316085,-0.166532076,0.065392492,-0.194494164,0.180184957,0.270280216,0.135728014,,-0.041144168,-0.275767794,-0.566950626,-0.470870571,0.038585986,-0.279383324,-0.494319775,0.041006029,0.350362394,-0.176828886,-0.074431655,0.664474781,-0.245828172,-0.090040355,-0.057057754,-0.305393005,-0.378624702,-0.216993831,-0.088029121,,0.010259456,-0.255048779,-2.023696456 +SW48,0.008548755,-1.200763326,-0.910357829,0.038404472,0.635463883,-0.036024364,-0.902844488,-0.782380097,0.575093763,0.990108352,0.061746296,-0.677014168,-1.070343938,0.702400275,-0.145637514,-0.360017147,0.4723131,-0.02486411,,0.304125907,0.181511802,-0.00313904,-0.435079964,-0.088634016,0.221211818,0.168105105,-0.780128442,-0.125174447,0.268580627,-0.082555124,0.122627393,-0.037579302,0.279065717,0.035865024,-0.132025726,-0.394599806,0.345447234,-0.025811827,,-0.151473599,0.097565293,0.627721461 +CHP212,-0.184045968,-0.176756689,-0.433343587,-0.254210746,-0.312877252,-0.233470165,-0.493522769,-0.767915396,-0.956192228,-0.281275892,0.025626724,0.312220835,0.370886002,-0.715901072,-0.26991207,-0.225642809,0.066330616,-0.328947006,-3.018208899,-0.157885236,-0.105699391,-0.579247122,-0.372292545,-0.362672102,0.089958182,-0.112498997,-0.439771299,-0.286089043,0.302217365,0.226474595,-0.220767615,-0.290342862,-0.999425928,-2.102573968,-1.170597978,-1.384018481,-0.286951803,-0.185977127,,-0.324074065,-0.009951843,-0.457004996 +LS180,0.219645375,-0.571607936,-1.044076636,,0.38361565,0.08198388,-0.067661665,-0.28663204,0.272249654,0.463896618,0.331826759,0.193897303,0.078855217,0.168689524,0.148801947,0.355740789,0.393883098,0.164432934,-1.051356551,-0.299974862,-0.569809217,-0.672894824,-0.68672022,-0.016806157,-0.273242641,-0.00075567,0.141694636,0.104239969,0.183945179,0.151402672,0.299138826,0.286056694,0.217720399,-0.287422618,-0.664782788,-0.638651567,0.727224468,-0.018360645,,-0.12047488,0.197578712,0.746174861 +SW403,0.09542666,-0.144970237,-0.304887973,-2.311634265,0.272009854,0.918442406,0.029650593,-0.321776469,-0.263500772,-0.466767949,-0.319165567,-0.350218816,-0.578048106,-0.357408968,-0.041884844,-0.204356676,-0.210371752,-0.464761108,-3.332359685,-0.58307791,-0.852209901,-0.800412921,-0.267166565,-0.002851996,-0.454254782,-0.552956456,-0.27976158,0.746852306,0.214343335,-0.861230831,0.21218641,-0.094808846,-1.377238496,-1.335712955,-1.266595088,-1.340262135,0.541836723,-0.21193342,,-0.239449706,-0.550795836,-1.283389616 +NCIH747,0.22836649,0.168933117,0.251397067,-1.296944294,0.537954103,0.28086355,0.270993261,0.378376059,-0.19253539,-0.492658033,-0.333277637,-0.591190606,-0.491339887,-0.787000813,0.239369104,-0.511873106,-0.37385253,-1.199196756,-0.335748409,-0.014020864,-0.337846432,-0.813284431,-0.516974487,0.089855411,-0.222054381,-0.045066983,-0.132999418,0.52497216,0.368993964,-0.130442656,0.185216857,0.518524313,-0.36046526,-0.737881008,-1.069033581,-0.696643572,1.229443439,-0.008063586,0.14094437,0.018915807,0.040590599,-0.063413085 +KATOIII,0.459867331,-0.269323616,0.212212496,-4.095455776,0.166224088,-0.320016248,0.04227201,-0.206566257,1.018446578,0.557250675,0.57186399,0.55517197,0.364232098,0.996796102,0.051652044,0.224762134,0.350596156,0.90441424,-0.424236372,-0.049484153,-0.553421663,-0.825999929,-0.762842791,-0.098506625,-0.274472234,-0.294244989,-0.119597552,0.807223266,0.009567998,-0.108571096,0.433510001,0.745619515,1.227898624,0.458480812,0.011982015,-0.50667733,-1.259695414,0.085594377,0.15538011,0.086960172,-0.000566043,0.151377768 +BDCM,0.041978686,-0.156586256,0.818505615,0.051902419,0.512889048,0.046333819,-0.080249088,-0.4471851,0.784072111,1.055267884,0.3859467,-0.116640224,-0.267202745,1.065104595,-0.071213655,0.070011014,0.711431321,0.380089458,0.90548053,0.913402461,0.611497518,0.824652354,0.894869486,0.233661256,-0.423550627,-1.149341754,-0.189824767,0.45013834,0.10695247,-0.396382103,0.189102154,-0.039985639,0.63000209,0.337483322,0.718769616,0.711911375,-0.276952733,-0.086326107,-0.4748703,0.001524606,-0.105505485,0.390339033 +SW1417,0.008797739,-0.139157833,-0.212919423,-1.32978904,0.381136503,0.253483923,-0.075288369,0.399826358,-0.562493608,0.000296454,-0.278254582,-0.61548568,-0.53613352,-1.121785626,0.195661109,-1.014045706,-0.083863986,-1.321760173,2.421638238,-0.152079262,-0.321116353,-0.799094289,-0.090491311,0.158837943,-0.437862266,-0.573247189,0.113144501,0.295586374,-0.063854237,-0.329006251,0.416972926,0.525240495,-0.007624474,-1.230783209,-1.896983748,-1.050662068,-0.004017156,0.017082813,0.170137266,-0.102295656,-0.109763292,-0.064169817 +SW948,0.163021011,0.113930626,0.131503788,0.172736142,0.486796051,0.341425736,0.060992935,-0.337983332,1.169714598,0.436854602,0.233499186,0.02934081,-0.893700807,0.617656245,0,0.048229504,0.172386465,0.486536977,0.705164557,1.05315436,0.914175062,0.876090563,1.375629103,0.630730014,0.257126619,-0.1172414,-0.113047663,0.575155385,0.061268895,-0.949903275,0.106045533,-0.205237768,0.683495891,0.975126983,0.352808654,0.682657634,0.918415482,0.087569887,0.066448568,0.172800666,-0.211073525,0.206053774 +HS606T,0.059632007,0.469859419,-0.92394995,,0.473566515,0.82803295,0.718291191,0.452232984,0.57530829,0.382857592,0.380521724,0.197998559,0.268380205,0.303746371,0.661724208,-0.152628327,0.981664805,0.039515879,0.359518085,0.862199338,-0.079130317,0.280830744,1.513977357,0.68866553,0.173792214,0.330798386,1.911527701,0.651304216,0.588655443,0.670139311,0.876692375,0.795755731,-0.813301467,-1.087156118,-0.421098007,0.977508969,0.587314765,0.742455203,1.855885243,1.149443676,0.755589575,0.385359191 +MDAMB415,-0.195116303,0.448570163,0.150792002,-1.579646379,-0.44007364,-1.117714003,-0.549971725,-0.225274524,0.250634316,-0.059258753,-0.216441129,-0.005821503,0.23810761,0.728113167,-0.004389911,0.374820432,0.172191329,-0.625276382,-1.37491788,0.209575437,0.69276503,-0.171498557,0.208692232,0.55847082,-0.287502397,-1.548132479,-1.315772965,0.172510112,-0.627638029,-0.73637548,0.334002351,-0.154108357,1.404317253,1.267207089,1.149571235,0.601136656,-0.011985436,-0.089273151,-0.103928242,-0.838663382,0.922417346,-1.504313535 +DMS79,0.224605978,-0.212339796,0.329403728,-1.924208546,0.227830032,-0.285672994,0.61583305,0.298452437,0.948023422,0.842466992,0.582735308,0.340803582,0.087133301,0.713660411,-0.040727265,0.696960571,0.834525411,1.017335118,0.614514687,0.394461754,-0.382049558,-0.63320508,-0.718515226,0.440419148,0.091300515,-0.574271029,-0.498714012,0.467022239,0.235210408,0.200408242,1.582011934,0.532567909,0.940351818,1.096592973,0.308499561,0.175438609,0.067062361,0.221966974,0.852760235,0.270870049,0.208026931,0.243742889 +SW579,0.158481187,0.028403677,0.220935641,0.156025562,0.426614996,0.001036207,-0.095461192,-0.443278296,0.940075945,0.721424959,0.296656747,-0.28884268,-0.726504043,0.704700639,-0.072517423,0.582226279,0.421930551,1.250058452,3.168156907,1.064852524,0.921603025,1.986229378,0.854274947,0.236820428,0.584904549,1.35991912,0.046590942,-1.013395578,-0.088383516,0.38235573,-1.064324704,-0.651872192,0.750386573,1.644355326,1.684302642,2.202390821,-0.06984151,0.025453856,0.26369929,0.050239359,0.096776255,0.085299495 +MDAMB468,0.236447855,-0.122535006,0.102674768,-0.271883339,0.267141846,0.336913713,0.132589207,-0.365494561,0.146898285,0.706714058,0.29931923,-0.0693674,-0.406762583,0.363872747,0.442597835,0.629216034,-0.039229677,0.72384444,0.705489908,0.608269433,0.496990358,0.924933394,0.925483785,0.368568189,0.257567016,0.548539112,0.884493584,0.090010486,0.179588641,-0.256639798,0.599195758,-0.356422101,1.117150335,1.267476615,1.279803033,0.824902369,1.032540344,-0.167065171,0.431468655,-1.879277504,0.650466516,0.159839064 +NCIH526,0.019519923,0.316820765,-0.011334676,0.252111874,0.052584244,0.32505571,-0.016762562,-0.181150854,1.040895141,0.1296961,0.223936641,0.277163461,0.176005887,0.898911766,0.223027153,-0.150669241,0.314086944,0.017980322,,-0.597149259,-0.117271453,-0.029693231,-0.02968496,-0.75196186,0.308743386,0.430817326,0.073601631,-0.466132826,0.634883623,0.646124349,-0.23412623,0.116842311,-0.363379661,0,0.020244502,-0.391100212,-1.020821756,0.046292835,,0.118315029,0.084575546,-0.283006303 +TOV112D,-0.256150191,-0.299431829,-0.512528413,-0.395691436,-0.489910815,0.006605662,0.164685947,0.260270082,-1.268335797,-0.367556571,-0.51830832,-0.47981446,-0.001757583,-0.919247884,0.038395421,-0.620575988,-0.120932304,-0.881890163,,0.189127462,-0.281562593,-0.125436657,-0.044419335,0.36897892,-0.22975082,-0.493785358,-0.266032805,0.106845956,-0.202748315,-0.497263746,-0.147757053,-0.528881707,-0.23379691,,-0.40813175,-0.339105342,-0.178868988,-0.125346173,,-0.207167742,0.024377336,0.162372035 +BT549,0.527176861,-0.123880047,-0.084921593,-0.302848709,-0.321913025,0.222622984,0.583347096,0.395022734,-0.563014217,-0.347142328,-0.294756426,0.288105927,0.373994787,-0.918903034,0.771399835,-0.85410559,0.506093547,-0.174454955,2.002240079,-0.034436268,0.180956659,-0.520103637,-0.108813406,0.096738406,0.040754219,0.101461345,0.479169604,0.35320015,0.216695622,0.472751231,0.493006277,0.69570578,-0.180228105,-0.682511867,-0.253534345,0.028777759,-0.379970302,0.348381157,0.490672997,1.057591774,0.873831912,0.99388929 +NCIH2196,0.307159244,0.292077582,-0.661444045,0.908283444,-0.038535702,-0.010364857,-0.018215035,0.119501552,1.287896395,0.711180451,0.563246103,0.918941174,0.881928569,1.840356167,0.284162102,0.947248506,0.814222068,2.287039816,,-0.553650615,-0.128390633,-0.285453126,-0.439507326,-0.365616175,0.198607902,-0.050169258,-0.164347874,-0.365642375,0.61890455,0.795255095,0.181277608,0.686184454,1.525828117,1.00683139,0.676091788,0.289263712,0.842480322,0.206651805,,0.15600487,-0.219142966,-0.976257571 +CAL851,0.044764801,-0.084504781,0.509259606,-0.159512488,-0.077047147,-0.084279195,0.323128854,0.200938081,-0.483071108,-0.250019185,-0.438925598,-0.145134287,-0.259294845,-0.531862754,0.404976596,-0.23456444,-0.566350282,-0.381704647,0.239469848,-0.303445593,-0.353167845,-0.225223783,-0.343690051,0.215348428,-0.489303823,0.31100798,0.40144661,-0.062685579,-0.138722589,-0.128187113,0.830954133,-0.110017019,-0.047643224,-0.233320444,-0.766098674,-0.396852049,-0.028234057,0.428790403,-0.279500222,-1.703128044,-0.379881389,0.490072192 +EFO21,0.556180911,0.628502893,0.537633066,,0.591541706,0.571912642,0.389451401,0.978534414,0.090097305,-0.643649723,-0.717068173,-0.781831159,-0.248815631,-0.481652045,0.685338355,-0.300194137,-0.698175089,-0.829849028,0.801353436,-1.976279529,-1.762150547,-1.670990236,-1.044584524,-1.142634725,-0.900322441,-0.838491936,0.672889745,0.239909663,0.658351904,0.425420439,1.404455026,1.11901763,-1.33565071,,-1.642153281,-1.051812754,-0.010423317,0.109955051,-0.195302013,0.077174638,0.336789585,0.783044225 +A375,-0.035532472,0.076808598,-0.068396457,-0.293158502,0.071562577,0.297434505,0.15805695,-0.219957605,1.219283633,0.344641561,0.378815019,0.335325062,0.211069445,1.138298352,0.187319768,0.061054101,0.693101543,0.173056268,2.056467164,-0.886987907,-0.004947319,0.57225855,0.011680918,-0.61897652,0.012683042,0.684391262,0.326939079,-0.214836368,0.251223445,0.794413177,0.164721044,0.562380156,-0.126728801,-0.164560058,-0.286782763,0.101455466,0.411959507,0.024164301,0.023044687,0.169210482,0.438892413,0.359512505 +HT29,0.07741379,-0.457821319,-0.707528123,,0.287505271,0.090340988,-0.259932235,-0.753547965,0.532210111,0.621915307,0.439076275,-0.007334689,-0.419769,0.533902117,-0.149158843,0.356795693,-0.158598218,0.140643673,1.872939045,-0.81381145,-0.827155357,-0.753704963,-0.603090566,-0.381671615,-0.33289866,-0.579525771,-0.212961753,0.381931688,0.164335393,-0.128128337,0.377061175,-0.110217851,0.156438378,-0.342427432,-0.228903304,-0.24103644,0.001502875,-0.034123977,-0.12422491,-0.037248406,-0.333359889,-0.349503069 +NCIH446,-0.170142031,-0.095998805,-0.085158797,0.04829514,0.059981541,-0.137807262,0.007305547,-0.33182118,0.046678882,-0.051046962,-0.212683401,-0.11351708,0.088644189,-0.264848625,-0.208300227,0.252203098,0.029909686,0.549200679,0.702067126,0.66498995,0.549680738,1.660144725,-0.179792388,0.41510185,-0.062751753,-0.701804871,-0.388769968,0.056510395,-0.373603022,-0.523660604,0.338042195,-0.427359135,0.965383229,1.129299737,0.736905406,1.797176743,0.877887744,-0.090060631,-0.923519305,-0.160502625,0.217462093,0.151340663 +HS294T,0.025763172,-0.296529394,-0.297644729,0.165849981,-0.235378322,0.320494277,0.189888876,-0.069954427,0.18197957,-0.406001189,0.052557848,0.330382477,0.134601853,-0.033724923,0,-0.121523728,0.125898789,0.280780124,,-0.5161185,-0.058577676,0.398962275,0.384277195,-0.081814567,0.080208126,0.245025371,-0.06913549,0.297171645,0.187191572,0.060587694,0.274337634,0.140290492,-0.109312431,-0.112925261,0.38377511,0.5880612,-0.638110881,-0.208699198,,0.22211887,0.198360225,1.138950792 +SKMEL5,-0.366548236,0.030249779,-0.282017373,,-0.548690152,-0.508226187,-0.263299222,-0.063676493,0.335651144,-0.031311041,-0.237287728,-0.059526983,0.171724074,0.779212729,-0.529123388,-0.640694996,-0.100211877,-0.402740238,-2.602198202,-1.25194933,-1.076777676,-0.798559711,-0.794081981,-0.940446399,-0.722323744,-0.737587414,-0.100259543,0.023422233,-0.185300218,0.170528461,0.434171277,0.628209547,-1.37288375,-1.781769823,-1.161216156,-1.791370274,-0.753458131,0.072336059,-0.066963854,-0.043001109,-0.056719934,-0.883530748 +HS944T,0.061992217,-0.36675807,-0.390399692,0.115350126,-0.065013379,-0.124654505,0.111169436,0.248174481,-0.2423757,0.23955908,0.111373066,0.252074833,0.452811965,-0.297419569,-0.001864865,-0.653851103,0.143355647,-0.23662957,,-0.515839221,-0.764073802,-0.890321146,-0.723236642,-0.233322227,-0.434591659,-0.435324609,-0.322626486,0.416273793,0.278761331,0.080884539,0.041123137,0.725651709,-0.616826956,-1.391281686,-0.79889398,-1.100861793,-0.480546615,0.001801508,,-0.005474346,-0.023820833,0.15245377 +TCCPAN2,-0.052559946,0.5056658,0.758683278,-0.164005779,-0.300911927,0.197547632,0.550638438,0.394235848,-0.813697429,-0.693219827,-0.338791921,-0.186309636,0.154015515,-0.879784902,0.406555499,-0.228948944,-0.162923927,-0.529324603,3.721373265,-0.310640263,-0.199689956,-0.309607697,0.049682861,-0.047931804,-0.29939828,-0.548015227,0.230014849,0.383758192,0.042295913,-0.217562802,-0.097495555,-0.184271825,-0.662459635,-0.991283804,-0.549054649,0.057696987,0.641776927,-0.006157576,0.106718704,-0.081991715,-0.070268484,-0.13570359 +RMGI,0.068713528,-0.681273496,-0.506201204,-0.016391643,0.079237368,0.25158797,0.127602963,0.311969906,0.231164766,-0.059858294,0.012631951,-0.052292005,-0.032965618,-0.003427962,0.18417818,-0.223604963,0.077089904,-0.120123061,,-0.989105441,-0.833020499,-0.273441351,0.376449866,-0.554696359,-0.491021285,0.556346536,0.708053668,-0.124521497,-0.132310084,0.247481578,0.599184833,0.484670302,-1.500446141,-1.14324113,-0.442265204,0.329680202,-0.691955456,-0.026792629,,0.045581144,0.325595427,0.624243581 +PC3,0.696736975,0.11082783,0.122250591,0.338928893,0.666382574,0.278288973,0.426381617,0.245102576,-0.631910141,-0.130698433,-0.077609255,-0.58249968,-0.57633714,-1.494829138,0.278869267,-0.161744268,-0.057379149,-0.283749791,1.103701876,0.269122871,0.84378019,1.735495433,0.151874904,0.105398629,0.529932748,0.30441598,-0.426379791,0.077596485,-0.292073536,0.051688547,-0.229759211,-0.541135086,0.711187199,0.547049763,0.414423075,0.116016288,0.726488352,0.015618676,-0.051676565,0.208977001,0.069829211,-0.620923395 +NUGC3,0.103387267,0.013929427,0.183069644,0.358709856,-0.151872553,0.029821521,0.396800472,0.495791975,0.136077131,-0.103556585,0.216824876,0.407836711,0.645276952,0.345176604,0.079492653,-0.739460402,0.635538343,-0.431861242,-1.68768452,0.204986735,0.096983095,0.341273831,0.165937011,0.384562582,0.270007745,0.339311544,0.519213666,0.624819376,0.581020519,0.320723577,0.045096274,0.409720961,-0.696427128,-0.494352278,-0.513644217,-0.486767949,-0.563191821,0.126921469,0.133622939,0.120351002,0.333696833,0.318490602 +U87MG,-0.035910602,0.300616697,0.63339007,0.906191586,-0.001384302,-0.114520552,0.018837811,-0.055655568,0.28568822,0.443091607,0.124887571,0.149844429,-0.021415695,0.964195544,-0.261279475,0.23022462,0.410106788,0.479862314,-3.965053175,0.071642356,0.43975538,3.029740043,0.290484688,0.020060961,0.358859853,0.70062579,0.063385992,-0.244134802,0.141744977,0.334991616,-0.614174596,-0.14338199,-0.197287284,-0.512970646,0.81701112,0.865523476,-0.649392877,0.070314427,-2.878174438,-0.016086082,0.418359222,0.767403324 +CAKI2,0.209813569,0.291953205,0.609083081,0.621485526,-0.729108546,-0.12184471,0.094676507,0.122394868,-0.697542528,0.04075406,0.547359597,1.026445451,1.234268386,0.418105898,0.145251294,1.045985577,-0.033739586,0.989543112,-2.182637335,-0.262803445,0.197342508,-0.296472529,0.069861409,-0.561006253,0.440945412,0.948375156,-0.106706287,-0.278349434,0.567056175,0.851626554,-0.532306593,0.312527335,0.407486649,1.369475331,1.237495294,2.284030584,-0.772725947,0.193254667,-0.098464062,0.091393369,0.272610172,0.598566889 +OE19,0.279110982,0.520475661,0.372911952,0.850172525,0.095005011,0.760028791,0.560588089,0.147160893,0.878388242,0.643026807,0.877592848,1.095609891,1.019547484,0.809820633,0.365043908,0.935114709,0.884132919,1.122507335,,0.643384002,0.851619516,0.236110984,0.668889234,0.677692146,0.897444085,0.551178668,0.289817784,0.69449197,1.320472503,0.781966217,0.024086543,0.41637805,1.029958811,1.201601439,0.824574742,0.621489137,0.557215858,0.569816455,,0.581337335,0.461596946,0.379447313 +JHH2,0.01608088,0.262450893,-0.211645162,0.434721154,-0.32209744,0.106923123,0.067251586,-0.385562912,-0.045336462,-0.024279925,0.770511736,0.730316989,0.86860686,0.111625532,-0.158957787,0.914695052,0.333378248,1.134431074,,0.00882229,0.928771033,0.897222848,0.739484114,-0.511927056,0.687674207,0.935299416,0.210763326,-0.889860662,0.217961048,0.564514564,-1.33121548,-0.430106801,0.91155419,1.219529838,,0.890872848,0.433062293,-0.135468124,,0.028854806,0.455278966,0.188416514 +IM95,0.115488775,0.09464677,-0.139343946,0.158491181,0.738529358,0.531144344,-0.006888913,0.288362181,0.300426534,0.406517991,0.275146863,-0.092850581,-0.30846754,-0.109612527,0.126684614,0.655027477,0.33299629,0.371128677,,0.69724536,0.386865345,-0.139322448,0.076801458,0.420085752,0.319878877,0.147058272,0.210176121,0.169125483,0.144253606,0.053455083,0.378844293,0.361250942,0.484229967,0.742263436,0.132525557,0.075953569,-0.609850617,0.305166747,,0.337875255,0.279328902,-0.194109303 +MV411,0.254690093,0.464680565,0.669951177,0.221969763,0.00052648,-0.147421915,0.024755755,-0.146796833,0.135447216,0.535571831,0.29678385,0.620763545,0.529551639,0.322591248,0.392096635,0.446497848,-0.22129738,-0.522355944,-0.001640886,0.560170699,0.581446265,0.660064842,0.275361783,0.262069598,0.446851769,0.575544399,-0.397912856,0.78311345,0.463706262,-0.095964773,0.306921158,0.447612302,0.529731143,0.614210885,0.191267233,0.389190843,0.201665323,0.089771983,0.697025659,0.080322273,0.23901103,0.333930398 +KMRC1,0.18994106,0.250454276,0.3518396,0.056212549,-0.278875052,0.217272847,0.428280835,0.704270898,-0.541532125,-0.556177965,-0.230182461,0.07565887,0.313348756,0.019429387,0.277063608,0.007752374,-0.432289976,-0.208557068,-2.286271725,-0.22322299,0.008411248,-0.508420385,-0.093172292,-0.251016791,0.065097686,0.647679105,0.047652882,0.147747746,0.396530712,0.463597957,-0.220406473,0.45099838,-0.514845225,0.013470626,0.345506117,1.790446677,0.125257139,0.167975409,-0.121523163,0.080733725,0.507183067,1.247482611 +KM12,0.354743484,-1.202529499,-0.522394414,0.488767133,0.447656278,0.014042591,0.040545555,-0.798694985,0.665752732,0.638496842,0.907337119,0.770418665,-0.036979218,0.552483687,0.141920529,0.253726839,1.056589073,0.523933915,-3.750896822,-0.831824088,-0.020156563,-0.475429451,0.013170766,-0.333663262,0.193585412,0.664130641,0.235820489,0.576945995,0.415225459,0.165086676,0.029781564,0.414942969,0.843881512,-0.724808942,0.009161533,-0.143776167,-0.543391301,-0.081434332,-0.926075424,0.203303787,0.114877806,0.435345082 +T84,0.067972029,0.108478898,0.026015782,-0.153112012,0.108780439,0.214557744,0.298387212,0.030592009,-0.490609432,-0.347200874,-0.469501836,0.142742034,-0.234438616,-0.757651795,-0.009670814,-0.088564183,0.011119664,-0.646101927,,0.555665388,0.332574732,0.00313904,0.350423013,0.640927895,0.021954376,-0.21991511,0.161347458,0.413147178,-0.170480302,-0.899085786,0.099599244,-0.596257776,0.388210939,-0.262629245,-0.487514675,-0.224067574,0.107642108,-0.026022245,,-0.00334079,-0.022899698,0.098850334 +CALU1,0.004604848,-0.347906009,0.362074514,-2.970100021,0.345747949,0.260335125,0.319147612,0.225014464,1.505015841,-1.091014702,-1.509940803,-1.079630189,-0.441835925,0.58260214,0.147865775,-0.065211327,-0.77560231,-1.037212942,0,0.729974286,0.109875455,0.150944012,-0.073864184,0.739491057,0.225695293,-0.257673306,-0.288170307,0.434945473,-0.39988355,-0.140694806,-0.149358995,-0.597155837,0.000391941,-0.437112298,-0.629715679,-1.402556607,0.483472402,-0.07642729,0.244233954,0.023280049,-0.5657651,-0.634220359 +LOXIMVI,0.284053925,0.174969706,0.027548606,,0.715397037,0.327000819,-0.11322175,-0.138893098,-0.002450071,0.202120313,-0.053070725,-0.586712381,-0.656819575,-0.281378657,-0.024685958,-0.251678773,-0.02644036,-0.277817697,0.792595175,1.315912682,1.800065247,0.721105902,1.053380676,0.591910988,1.051304616,1.631157469,1.504982905,-0.346915139,-0.235998046,-0.261809716,-1.421585396,-1.18115236,0.503744475,1.201475368,0.589197972,0.023005176,-0.226658695,0.099381085,-0.03344376,0.215498943,0.088554323,-0.18239437 +NCIH2170,-0.128490287,-0.498760337,-0.582663536,-0.110635855,-0.584022816,0.054012543,-0.105138567,-0.102572374,-0.840426088,0.225210208,0.607525869,0.738101724,0.926932563,-0.556536721,0.032322085,0.04740468,0.353545797,0.334014155,,-0.505831413,-0.36936929,-0.322880776,-0.338315648,-0.429729649,0.01254491,0.076809444,0.009612732,-0.046924966,0.465883851,0.688519497,-0.680877648,-0.018321367,-0.561501921,-0.599053297,-0.600005214,-0.599318008,0.289999911,0.038660585,,0.073757822,0.053102747,0.116625505 +SQ1,-0.519119803,-0.53104678,-0.78597697,-0.421296692,0.463126617,0.084381293,0.216716735,0.394220553,0.444005857,0.332178094,0.041229518,-0.313436946,-0.150839642,0.131851781,0.147725366,-0.511203868,0.518650746,-0.284808306,0.517444394,0.340286854,-0.433104436,-0.822717685,-0.084447007,0.634973571,0.152981932,-1.057319815,1.384054223,0.4083451,0.374614195,-0.136964603,0.257543173,0.169928349,0.057180243,-0.083647799,0.04828127,-0.757983425,0.933009095,0.106082768,0.075379694,0.052581136,0.301922215,0.000457316 +AN3CA,0.060801073,-0.597062065,-1.189651014,-0.012432246,0.515814047,0.150331679,-0.383338997,-0.444282633,-0.057546471,0.64915664,0.242017259,-0.113561586,-0.245089327,0.119875973,0.142539027,-0.189829807,-0.216545543,-0.742319725,,0.62389316,0.933478916,0.230486132,-0.084009041,0.218739365,0.370527439,0.452901486,0.647750363,0.172904601,0.168825054,-0.105049998,0.005377205,-0.14616312,-0.018546247,-0.059827092,0.36807542,-1.755417861,-0.095805552,-0.028136718,-0.501141307,-0.109515216,0.29506004,0.681486054 +NCIH2444,-0.229087512,-0.212938612,-0.120197235,-0.44859423,0.184906759,-0.010959896,0.234796105,0.282501641,-0.218419613,-0.314885381,-0.54422628,-0.816427294,-0.268049218,-0.016760177,-0.110248562,-0.548626876,-0.201029196,-0.453919212,,2.096875657,2.861343537,2.829433296,1.777166248,-1.651847988,-2.440852585,-2.784184399,-2.706825943,-3.030511461,-2.83060369,-3.315431533,-3.110789496,-3.631530496,0.62545998,1.589139526,1.859297889,1.070053601,2.282979948,-0.168292829,,0.029631792,-0.237037933,-0.598329951 +UACC257,-0.032580292,0.093916225,0.458907187,0.199842124,0.313366946,0.064018248,-0.33794071,-0.533482131,1.111410594,0.431192292,0.208152932,-0.092977026,-0.136109631,1.378770315,-0.028528034,0.195798634,-0.087384878,0.060833936,1.563088701,-1.432238373,-0.676844972,-0.656913737,-0.798767252,-1.116885747,-0.6938989,-0.402024345,-0.182300252,-0.037210793,-0.261900135,0.117342127,0.928425869,0.644008987,-0.393395312,0.141920006,0.299200999,-0.013602588,-0.329885456,0.049230757,0.119892497,-0.100904726,0.124822356,-0.033270539 +KYSE510,-0.339260912,0.346703603,0.184319549,,0.004591801,0.266617709,0.004962834,-0.887903245,0.691868121,0.410477413,0.447661837,-0.181298759,-0.053450327,0.455935879,0.119668076,0.807497654,0.34781918,0.766519931,-0.74084764,-0.388255966,-0.025256204,-0.729814567,0.547667754,-0.501416454,0.098472537,0.550601052,0.793787622,-0.180485787,0.014975196,0.086357417,0.649461131,0.149351155,1.10864786,0.590750892,-0.086920841,0.39378255,-1.58021543,-0.104049359,-0.002071145,0.174169761,-0.129402726,-0.273080779 +MOLM13,-0.35259625,-0.256866498,-0.059932388,-0.273480572,-0.935968764,-0.26197523,-0.199417279,-0.74569231,-0.55544553,-0.594620293,-0.44568255,-0.124720055,-0.283335994,-0.947300958,-0.317066513,-2.022981568,-0.595106504,-3.596266773,-0.19787311,-0.629045339,-0.937370108,0.455743137,-0.398409046,-0.040777208,-0.619271021,-0.050874285,-0.314879721,0.644559464,0.076224173,-0.328172755,0.410271016,0.555270989,-0.665231851,-0.984948514,-0.769285008,-0.203728954,-0.260270556,-0.079893883,0.931350924,-0.027091769,0.056200653,0.212667478 +HUPT4,0.064017281,-0.154330217,0.421913464,0.361440152,0.792877594,0.234169043,-0.768779632,-1.15055825,0.537120687,1.011309079,0.404483121,-0.343872467,-1.014271821,0.603478495,0.184685292,0.05896855,0.025708726,-0.043640488,,-0.606013493,-0.005921752,-0.304988399,-0.708711249,-0.617440102,0.222275658,-0.012312883,-0.319593152,-0.250966647,0.617215525,0.662974258,0.029478322,0.907810025,0.12678042,0.064103111,-0.07926513,-0.505215182,-0.500156006,-0.06726282,,0.154712891,-0.079853021,-1.238947 +KYSE30,0.209485651,0.255619883,-0.278065386,0.064303163,0.25444662,0.293433934,-0.022472663,0.570663693,0.620514116,-0.19512919,-0.283124334,-0.261126305,-0.194726208,0.382906975,0.197777507,0.7612622,-0.163348905,0.030143598,-0.129781611,-0.081126321,-0.204413655,-0.5017244,-0.137423334,-0.024725807,-0.455310008,-0.388903777,0.232997314,0.525697909,0.030673709,0.176737757,0.405580058,0.537406229,0.580333329,0.102749198,0.046736125,0.188675298,-0.038427936,0.151627926,0.114132831,0.105443679,-0.010172688,-0.441120907 +KYSE150,0.053796843,-0.500542329,-0.430004688,-6.060350555,-0.678911,-0.064585919,0.287883275,0.05373163,-0.375425025,-0.361954301,-0.013153258,0.4765628,0.163519107,-0.21289632,-0.033668136,0.282474133,0.100504072,0.223368093,2.347151695,0.433719209,0.217892589,0.143960609,0.347251624,0.472370877,0.26644988,-0.497561818,0.012207899,0.375529667,0.00250444,-0.43061841,-0.200696033,-0.242446324,1.161894983,0.657040891,0.672993188,0.988264636,-0.883335807,-0.007171511,-0.109252275,-0.112231778,-0.147175311,0.29620436 +PSN1,0.195761371,0.019582177,0.266214284,0.081957895,0.600551349,0.639992884,0.421302911,0.474402974,0.845976315,0.208697816,0.074654668,-0.004514221,-0.196820909,0.525151583,0.18259517,-0.007576954,-0.277113197,0.202472023,,0.472717471,0.519461221,0.551721095,1.47736529,0.43571784,0.214092915,0.006739839,0.462695639,0.637981714,0.334087927,0.242587793,0.171842368,0.090975068,0.439895745,0.254660478,0.743882107,1.044706605,0.543820939,0.215728614,,0.439061274,0.085986253,0.297423641 +NCIH1299,0.111863493,-0.16103431,-0.42755765,-0.753362419,0.208436373,-0.34374059,-0.102254388,-0.034790569,-0.322257135,0.00982519,-0.173958662,-0.590298309,-0.421552127,-0.260708772,0.12377287,-0.305713233,-0.255484895,-0.26920285,,0.392401215,0.352165442,-0.894614224,0.303599483,0.545944423,0.196640489,0.997080862,0.161079593,-0.253095442,-0.644650737,0.021604742,-0.51866902,-0.758659215,-0.306598917,0.40814194,0.199250799,-0.748667945,-0.135306364,0.058270224,0.011022289,0.001251111,0.001511475,0.189920288 +PATU8988T,0.038485653,0.038214937,-0.401776142,0.372312177,0.358148656,0.27523672,0.348969042,-0.019828063,0.132926885,0.304009376,0.257150918,0.184444701,-0.020977587,-0.233196965,0.078913946,-0.830896978,0.640949821,-0.563171846,,0.0199099,-0.200566804,-0.536172524,-0.040222423,0.148156221,0.033200928,0.102722289,0.453305999,0.255666568,0.58107104,-0.238325719,0.068720851,0.344943312,-0.641923151,-1.113232349,-1.271294939,-1.207189176,0.037397086,-0.079811154,,0.061075847,-0.233707457,0.317448582 +IGR37,0.094820429,0.22070476,0.380285965,-2.951735351,0.202345637,-0.291193278,-0.142822134,-0.449115202,1.13443772,1.245755103,0.547029272,0.358844819,0.556726899,1.89311519,0.052214136,-0.173103026,0.568857501,0.311458327,0.257069241,-1.521665735,-0.947512706,-0.656853942,-0.421384885,-0.993436062,-0.419191938,0.067147238,0.011534857,-0.144616357,0.332122709,0.659962264,0.542174685,0.948378598,-0.929330226,-0.873052648,-0.486543737,-0.916252855,-0.18649062,-0.058166895,,0.148622251,0.123206455,0.047640465 +MOLP2,-0.15180314,0.46780767,1.283189376,-0.781371551,0.563356847,0.232652748,-0.385895051,-0.327762523,-0.467403399,0.075609894,-0.129718695,-0.64277217,-0.47161805,-0.759667737,-0.019103225,-0.542903959,-0.702363918,-1.45230071,-0.271250693,-0.350821536,-0.889661122,-1.004590464,-0.439200366,-0.391399972,-0.890497555,-1.979923702,-0.335300147,0.439499048,0.083370402,-0.11834871,0.885287501,1.170187632,-1.161485271,-4.119213634,-2.376225148,-1.033560767,0.060229681,-0.266077404,-0.54483077,-0.22711601,-0.028277523,-0.264732208 +SCC25,-0.299826566,-0.09048047,-0.079294853,-0.690809858,-0.153104782,-0.424352219,0.349031882,0.321406649,-0.842629676,-0.620476827,-0.317663282,-0.328595655,0.113211608,-1.001639727,-0.022483901,-0.256195666,-0.148976673,-0.050560637,,0.00109451,0.12224214,-0.794608608,-0.769071404,0.458202774,0.312385278,-0.479710562,-0.665175555,0.364555408,-0.031302108,-0.161046253,-0.83108955,-0.414354156,-0.313296498,-1.36641211,-1.410651412,-1.332263459,0.476808439,-0.389669813,,-0.102579757,-0.628405393,-0.985163596 +MHHNB11,0.009280821,0.271347566,-0.107093505,0.923082575,-0.345734401,-0.274431465,-0.427379333,-0.411232298,1.635789637,0.529180866,0.873094782,0.538376558,0.71081471,1.999615142,-0.390713369,0.834253668,0.873695341,1.480021409,,-0.135117378,0.458851378,1.461960231,0.787598373,-0.592178328,0.435423162,0.958431786,0.206174697,-0.040421964,-0.438406308,-0.17407455,-0.04991409,-0.714108105,0.706442597,1.400471985,2.099002244,1.928426653,0.197778081,0.039671352,,-0.05807394,0.422402946,0.24115793 +HCC1806,-0.006443186,-0.229823449,0.313854666,0.42564369,0.159292507,-0.189353285,-0.266235919,0.432565594,0.389053916,-0.044208133,-0.482772503,-0.153956658,0.238236963,-0.183983095,0.268534557,0.787785285,-0.001955581,0.975786103,-0.528207007,1.220111388,0.81292792,0.130301832,0.644246793,1.111939531,0.299943362,-0.034579754,0.361147766,0.148547903,0.10992127,-0.495878238,-0.736668512,-0.965476753,1.815524949,1.74374814,1.344613977,1.452919236,0.500824443,0.021781063,-0.787938304,-1.33693745,-0.730510259,-1.296988327 +GRANTA519,0.356082372,0.316558027,2.974897011,0.573467467,-0.4732846,-0.42327411,-0.185370957,0.06881576,-0.812591691,0.929001049,0.586437869,0.369633448,0.837969964,0.226402778,0.204795464,-0.277436543,-0.10934964,0.445846889,-4.947172671,0.947508031,-0.467015647,-1.041690753,-1.374551399,1.012940339,0.020049041,-0.924606294,-0.800360945,0.482172367,-0.112206697,-0.186822215,-1.050216147,-0.773492501,-0.535453402,-3.096655791,-1.903848586,-3.587911272,0.142220314,-0.062560997,,-0.062339445,-1.843308636,-3.274157953 +MONOMAC6,-0.490798259,-1.040566016,-0.76348953,-0.699623008,-0.04681599,-0.057310855,-0.13515528,-0.922503569,-0.882751442,-0.181824737,-0.323093318,-1.014678645,-1.071083133,-1.371172926,-0.002908755,-0.609821367,0.164468789,-1.794140273,0.795367079,0.130004509,0.045519028,0.944134144,-0.517752637,0.215012829,0.274298852,0.295498414,-0.160575851,0.728434126,0.220593051,-0.147241094,0.279559485,-0.053839395,-0.057411392,-0.33180312,-0.737913843,1.0870705,0.527255056,0.269945226,1.688490596,0.345051633,-0.74683869,-1.724189183 +MKN7,-0.113975353,-0.167911002,0.16862296,-0.313746122,0.248913727,-0.070293743,-0.492245789,0.464650346,-0.200661565,-0.586300599,-0.546973071,-0.946466334,-1.130304929,-0.714604141,-0.319343242,-0.751302173,-0.383483607,-0.525091323,,-0.063484143,-0.477095327,-0.279117936,-0.10724144,0.187081949,0.016683994,0.43011305,-0.083825272,-1.13160542,-0.218218977,0.172077714,-1.071980803,-0.473101938,-1.888247414,-0.98988651,-0.493852052,-0.193905714,0.4913166,-0.300918866,,-0.252483582,-0.361581976,-0.134969459 +MOLT13,-0.082124679,0.26817827,-0.075660352,0.276476975,-0.023537499,-0.252410496,-0.231093875,-0.384898058,-0.009339101,0.158293074,0.089279277,0.045815216,0.317867425,-0.047183107,-0.244180983,0.569879303,-0.056699633,0.679898541,2.294283775,-0.775208399,-0.1900061,1.35584517,-0.839676954,-1.241992652,-0.229100552,0.902461274,-0.104862746,-2.592798122,-1.091119232,1.431249644,-2.505028635,-2.265321972,-0.675259349,0.23551914,0.87560005,1.202501386,-0.117850147,-0.025632972,0.000273042,0.064954003,-1.28853668,-3.808513686 +SR786,0.264039665,-0.319954451,0.370529946,0.631601531,0.402522632,-0.168807974,-0.508805018,0.227132229,0.203703467,1.119525043,0.429417728,0.313980632,0.094965936,1.192984309,0.151671091,0.240800429,0.48478448,0.492011036,,0.049962225,-0.016651507,-0.194634086,-1.058289006,0.003300879,0.465391269,0.612839433,-0.543179776,-0.653811974,0.625169034,0.941643822,-0.213352009,0.710417457,-0.009124208,,0.056970155,-0.904174147,-2.113554881,0.122723613,,0.228106097,0.052692164,0.176366364 +SCC15,-0.228467514,-0.344177636,-0.264736121,-0.32792506,0.594448984,0.1756147,0.244896748,0.190180787,0.45215567,-0.006614699,-0.397884091,-0.680077241,-0.49138797,-0.180416618,0.257657701,-0.275405663,-0.06698005,-0.466884483,,0.889173543,0.019394097,-0.11478903,0.211028513,0.940050692,0.083814961,0.11132496,0.35029777,0.372038168,0.119577412,-0.178338163,-0.330041318,-0.075966785,-0.516291531,-0.549635779,-0.595457947,-0.688935942,0.790678863,0.15858504,,0.101886811,0.0887173,-0.094583203 +NCIH2126,-0.156474208,0.179547574,0.004253322,0.059877686,0.981602867,0.528670699,0.19188199,0.198602049,0.205505574,0.192273535,-0.037144955,-0.664657959,-0.678192931,-0.184645013,-0.031578212,-0.30009502,-0.242292228,-0.334099703,,0.589110864,-0.011771399,-0.334231248,0.258999998,0.898049728,0.270733891,-0.088007799,0.162364259,0.752683194,0.342207815,-0.179670337,0.109303996,0.008779525,-0.209210593,-0.763462439,-0.610096344,-0.177038192,1.232452938,0.220535,,0.195460907,0.642022344,0.901459299 +NCIH1385,-0.012223943,0.545578185,-0.16104552,0.01941227,-0.730234849,-0.158277525,0.219560376,0.638544178,-0.295923805,-0.854701319,-0.274794235,0.102430545,0.968001219,-0.320209679,0.167363077,-0.273397984,-0.486146625,-0.53241336,,-2.050663477,-1.507204444,-0.872212252,-1.233549694,-1.854743823,-0.612624822,0.212368761,-0.185211557,-0.990058054,-0.018099017,0.569249011,-0.03864716,-0.088574646,-1.371877152,-1.592414207,-0.999509163,-1.189946597,0.760303372,0.077534002,,0.011482179,0.545116804,0.374116434 +HCC827,0.272498139,0.439488166,0.231393801,-2.080020541,0.424948377,0.683824783,0.133342426,0.499149183,0.538393631,-0.071152213,-0.290236553,-0.324979241,-0.22416229,-0.089421388,0.264110576,-0.426969346,-0.227464603,-1.036860126,-0.830068733,-0.857126738,-0.878838322,-0.214182598,-0.029815718,-0.277006739,-0.413949083,0.154713069,0.208983917,0.409596269,0.039721739,0.131422619,0.775377807,0.454740018,-1.412724707,-1.68626975,-0.742411525,-0.365458357,0.224570108,0.193151172,0.218001978,0.093782923,0.378312261,0.426429778 +RD,0.521461595,0.892867713,0.516505372,0.490882043,0.466025103,0.872750931,0.336641592,0.070752019,0.952152458,0.264778759,1.206859279,0.530680101,0.329607088,0.571103475,0.209949959,0.74057226,1.20982579,1.585295126,,0.62652916,0.571842154,0.96854996,1.079347212,0.674787084,0.32268687,0.489749287,0.539488161,0.941608339,0.031150011,0.103289126,1.315285426,0.40728646,0.914310137,1.265141601,1.737276139,1.733231319,0.684105967,0.491843508,,0.290344188,0.541690266,0.397183261 +TT,-0.187570098,1.025417782,0.308672479,0.338884297,-0.097089775,-0.216261837,-0.336102251,-0.146385274,0.079886258,0.294567506,-0.060876213,-0.226911361,-0.052407918,0.762939914,-0.595355791,0.784017727,0.612344946,0.911469326,,-1.093658372,-0.548567431,0.004062933,-0.49292371,-0.468586534,0.255470449,0.543466632,-0.04829875,-0.717670674,-0.201210194,0.303261346,-0.738003354,-0.994169747,-1.849471069,,0.489923266,0.218098851,0.111417548,0.087137347,,-0.308566574,0.221249821,-0.672125447 +TF1,-0.292847807,0.243629583,0.59739663,-0.490386582,-0.557298702,-0.620819274,-0.234700722,-0.105837987,-0.772405333,-0.399726232,-0.470390637,-0.624438083,-0.359673996,-1.073651386,-0.303543354,-0.368647959,-0.167494317,-0.211692102,0.89678186,0.394083333,-0.101033815,-0.056544931,-0.686352504,0.582607501,-0.005541332,0.513637666,-0.666019102,0.231976046,-0.527463045,-0.596672623,-0.855862717,-1.538997214,-0.159326693,-0.347445641,-0.355627775,-0.183390107,-0.339012443,-0.292228177,0.019656798,-0.195630696,-0.364112024,-0.409730611 +8305C,-0.521872467,-0.428880158,-0.653603569,0.239584602,-0.386162518,-0.025391783,-0.010914715,-0.516377229,0.004528873,-0.49095246,-0.303540592,-0.377348552,-0.548661376,-0.154469219,-0.010128764,0.298707354,-0.760161748,-0.067488504,-1.745598977,0.633007823,-0.075218274,0.639037169,0.739313626,0.454759944,0.428152553,0.153105169,0.378606236,-0.040996063,-0.112331254,-0.014713641,-0.674403937,-0.522909578,-1.564487775,-1.111236817,0.601294345,0.41309692,-0.082461208,-0.143156994,,-0.258822028,-0.056221445,0.036700455 +UACC812,0.015176159,0.099413585,-0.485335528,-1.627455684,0.674023297,0.154063867,0.130774097,0.149719614,-0.007799706,-0.007801778,-0.340690978,-0.879350237,-0.653618574,-0.713098814,-0.03195929,-0.539383345,-0.549689721,-0.264762668,0.104824149,-0.539138881,-0.395203126,-0.792109884,-0.323762092,-0.334320175,0.220901728,-0.574209167,0.041958029,-0.216085275,0.701174254,0.384921686,-0.883595164,1.10259453,-0.527924639,-0.620315477,-1.147859341,-0.218831622,-0.359231585,-0.093696854,0.458711972,-0.449297749,-0.216561265,0.710460518 +ALLSIL,-0.01379052,-0.303065286,0.211491059,0.47489997,-0.058503645,0.056580982,-0.238426188,-0.519459109,0.667628449,0.525358081,0.165412179,-0.006667797,0.07564109,0.585455067,-0.531966329,-0.080336148,0.603225257,0.536660122,0.51470099,-0.190041872,-0.173348031,1.131215099,0.043108461,-0.375798104,-0.34853393,-0.927992436,-0.259530576,0.139134028,-0.481105217,-0.687009582,1.052229126,0.252472159,0.411884946,0.762543067,0.302988246,0.372909858,-0.040321609,-0.267317132,-0.667423338,-0.233194367,-0.070391924,0.136295393 +KASUMI2,-0.335130864,-0.489380873,-0.55569955,-0.141775227,-0.387244326,-0.202760132,0.146585072,-0.30863858,-0.806697934,-0.191196571,0.012895542,0.374742511,0.434973739,-0.526964619,-0.039910509,-0.329446416,0.196822758,-0.103521754,-0.76126226,1.576361286,1.946498738,2.469057582,1.155074236,0.492189726,0.31622623,-1.083516245,-0.441814756,-1.114201343,-1.309054489,-2.11229918,-2.113408183,-2.7968397,0.851896631,1.492415958,0.922813886,1.740381006,1.249215783,-0.123530899,-0.178436855,-0.173219024,0.128702492,0.468388394 +DND41,-0.021369376,-1.1147216,-0.246732161,0.440020141,-0.096045959,-0.391391275,-0.458187366,-0.497650743,0.567898413,0.782035949,0.601605103,0.271770439,0.149149237,0.926737848,0.064531128,0.06166225,-0.403505817,-0.78726959,0.877459161,-0.273042231,-0.024501575,0.338432662,0.211682654,0.309135167,-0.39409045,-1.362460159,-0.128893419,0.474673106,0.024746252,-0.296823048,0.50436453,0.2400276,-0.232913788,-0.335377128,-0.889219545,0.3747553,-0.150403668,0.01226057,-0.676988119,-0.064451053,-0.054936303,-0.02090303 +JEKO1,-0.22680103,0.128345243,-0.289963173,0.156045287,-0.682351588,-0.376915522,-0.420813283,-0.44579475,-0.133379876,0.008724988,0.419520116,0.549370419,0.719402213,0.228651622,-0.416491695,0.022374416,0.174771367,0.941207895,,0.334021576,1.117584386,1.148602875,0.454670285,-0.350545186,0.654698909,1.053116823,-0.146168061,-0.716928832,-0.357153475,-0.326529768,-1.529895654,-1.543247773,0.196051997,1.27800998,1.037327829,0.743139501,0.465119093,-0.347281141,,-0.425585983,0.190479615,0.268702277 +JJN3,-0.514589016,-0.432855001,0.435332024,0.162298222,0.147162362,-0.259551616,-0.259802959,-0.622719843,1.020900295,0.44482663,0.11164389,0.353900783,0.237397424,0.948628485,-0.320138995,-0.337270048,0.700756466,0.314716465,-0.632730376,0.206657045,0.162860079,0.491726055,0.125016093,0.252684557,0.080466312,0.064357992,-0.611100891,0.919033993,0.160632124,-0.40366361,0.147617258,-0.1131073,0.807267226,0.637309323,0.513074991,1.031787563,0.23902653,-0.13064111,0.568167173,-0.17895463,-0.267129115,-0.279610407 +NUDHL1,0.032314659,-1.0801823,-0.368041373,0.02575276,0.238063813,-0.091628302,-0.098815367,-0.045835287,0.152754049,0.608380843,0.13146567,0.041204696,-0.194706351,0.278116216,0.148839673,-0.376746913,0.50599213,-0.422827768,-0.308696305,0.388833601,-0.242984976,-0.195989897,0.698405244,0.627330304,-0.305645478,-0.512141729,-0.046144798,0.693278656,-0.116399852,-0.870982938,0.438483805,-0.211276258,-0.169769605,-0.703343817,-0.4357286,0.217113142,-0.236089922,-0.065726299,0.024323221,-0.014899499,-0.295812796,-0.053190729 +CL14,0.332336832,0.064397082,-0.175300082,-0.166079551,0.543328805,0.247082142,-0.177903644,0.157293958,0.721294363,-0.148122213,-0.110007646,-0.420149482,-0.118875824,0.625064017,0.044412705,0.086430814,0.313778208,-0.146488397,-2.619397771,0.262146763,-0.949520433,-0.709898713,-0.019566922,-0.081591818,-0.19252035,-0.634336334,0.296090038,0.731329705,0.698323526,-0.344920565,1.025494186,0.075630312,0.000651702,-0.649414063,-0.714260218,-0.170016509,0.561720591,0.131813391,,0.167376214,-0.002228213,-0.234769321 +KYO1,-0.069714568,1.324136853,0.697790399,-0.057547976,0.455220568,-0.153152599,-0.496664647,0.331176372,-0.672815249,0.688780104,-0.145272189,-0.730370929,0.220057054,-0.45021792,0.005286126,0.27939178,0.355170535,0.748204911,-0.80401742,-1.604063082,-1.21609421,-0.464666395,-0.520211826,-1.192366588,-0.856202437,0.199446179,0.226190597,-0.371940373,-0.194980986,0.358630473,0.146616167,0.488506767,-1.108589934,-0.789668768,-0.365561631,-0.062286276,-0.760437457,0.025532458,0.014840109,-0.125722695,0.457514059,0.980378631 +JL1,-0.116327414,0.425976563,0.149125976,-0.342272903,0.020441236,0.173326479,0.316495444,0.123669136,0.169421213,-0.395741782,-0.198293634,-0.13604259,-0.185841688,0.209128221,0.224662027,0.309504425,-0.126880225,0.082819526,-1.529247467,-0.723673585,-0.16723462,0.082029981,0.01300918,-0.611220046,0.083299696,0.43886336,-0.184296784,-0.614658612,0.262052074,0.717649121,-0.382564454,0.595991751,-0.179611471,-0.61364557,-0.281702846,-0.111051633,0.198494751,0.107857039,-5.363065125,0.049755876,-0.227123515,-0.408979129 +CAL148,-0.258457001,-0.617595434,-0.679418277,-0.000193983,-0.248201728,0.042428761,-0.04064389,-0.949873672,-0.251483391,-0.584113961,-0.42187931,-0.583811117,-1.107115398,-0.83769756,-0.509478965,0.024539495,-0.79236061,-0.835273106,0.019885864,-0.561001107,0.66679161,0.696193943,-0.192353126,-0.700226946,0.248752779,1.050341693,-0.128846125,-1.162792945,-0.293840208,-0.066126676,-1.264543587,-1.194283692,-0.34512058,-0.234971689,-0.312264374,-0.927637765,0.132682856,-0.442290302,-0.605279958,-0.622864178,0.052855698,-0.719679945 +HPBALL,-0.508995551,-0.708652062,-0.140422378,0.456024497,0.030868631,-0.114180656,-0.389473582,-1.300937838,-0.408339554,0.673794567,0.635566014,0.54693479,0.5387896,0.253076107,-0.182262915,0.06942314,-0.382205975,-0.74391954,0.526851716,-0.396035791,1.900700765,3.023790563,0.615783902,-1.97824719,0.227173936,1.674489054,-0.282885103,-2.834523789,-1.812757232,0.193722378,-3.191383132,-2.950472054,-0.401824613,1.722005051,1.971609464,0.435452559,0.249303692,-0.004192412,-0.354344797,0.009100512,-0.067601367,0.096649862 +SUPT11,-0.113688449,-0.867920668,0.262413522,-0.515059393,-0.715856921,-0.48977063,0.429723972,0.286528258,-0.789335434,-1.151861704,-0.649445994,0.179527205,-0.061421981,-0.719014451,-0.177875633,-0.485841505,-0.280100447,-0.614823056,-0.696018211,0.259155543,0.608718943,1.891252587,0.695744888,0.034016344,0.104061761,0.802962811,-0.309809645,0.462711643,-0.204046066,-0.33725579,-0.352354857,-0.660163407,-0.461491177,0.057651172,0.207343339,0.904495944,0.527107524,0.017963431,-0.042087923,-0.151146014,-0.274398842,-0.637427404 +CL40,0.614941824,0.602204949,0.377384634,0.796965357,0.856790916,0.687885884,0.449313631,0.701820206,0.309013255,0.521047456,0.561907194,0.440010986,0.068547098,0.005265537,0.493964394,0.876498349,0.198497694,0.734128047,-1.114585114,0.797129939,-0.014963901,-0.554341356,0.378606117,0.437471515,-0.210243763,0.456897894,0.638948543,1.103073242,0.625640048,0.478359268,1.014015036,0.635810377,0.024629585,0.206722009,0.112126087,0.336630475,0.845566406,0.454805993,0.90722747,0.506536347,0.581408493,1.047210188 +MDAMB134VI,0.004821373,0.739348638,0.11718642,0.340512476,0.042194153,0.221809645,0.16661539,-0.793494885,0.326397992,0.254751201,0.395925727,0.37145525,-0.561238366,0.283059231,-0.023728694,0.028295455,0.142664676,0.298405043,0.305706315,-0.422464194,0.25590787,0.226183669,-0.1400022,-0.804862446,-0.018545829,0.495587908,0.144457356,-0.756834457,-0.170686722,0.662445181,-0.671494079,-0.408117667,-0.844146948,-0.151475121,0.213727852,-0.334320638,-0.164810399,0.356357928,0.460067397,0.753450433,-0.951308108,-0.206853008 +HCC1500,0.574130252,0.888048363,0.846703595,-2.597610273,0.561724248,1.005426259,1.111161658,0.338318305,0.744379307,-0.291615482,0.249814135,0.346201556,0.204984799,0.047777659,0.747741651,0.637141379,1.059571986,0.390922771,1.980413405,-0.864952296,-0.100785764,1.824747587,-0.095479914,0.288253707,0.029605521,0.355414635,0.339982874,-0.076986089,0.250182141,0.781892059,1.063736754,1.674456008,-0.291426733,-0.560373814,-0.446003961,-0.982858883,0.849902975,0.839022395,0.25005232,-0.100261264,0.493500714,1.662484101 +HCC1599,-0.23159391,0.107465018,-0.008025027,0.531954951,-0.953632132,-0.09683306,-0.034063151,-0.777641766,-0.263419264,-0.185220968,0.149478304,0.577997576,0.429897644,0.030901593,-0.209427923,-0.245496253,0.104410937,0.486599535,-0.038486185,-1.251407931,-0.779374892,-0.403433315,-0.407342309,-1.361129747,-0.397780609,-0.574629918,-0.083959502,-1.283315264,-0.202053568,0.402294417,-0.756776593,-0.029842857,0.06413161,-0.159787484,-0.620758739,0.409323715,-0.291562836,0.225955605,0.217832914,-0.688082307,0.37793967,-0.795125471 +MOTN1,-0.100872306,-0.623696795,0.74044989,-0.246985868,0.094925407,-0.152037642,-0.174771618,-0.736068325,0.81743116,0,0.071884681,-0.009062126,-0.427220129,0.43657693,-0.051928291,-0.433460046,-0.308979067,-0.59870462,,0.540370448,0.134414007,0.422496246,0.360486817,0.494246212,-0.370122926,-0.362575712,-0.434190495,0.49343608,-0.550092867,-1.16651852,0.182785939,-0.352086331,-0.491832173,-0.502058968,0.263172091,0.555467176,-1.128722937,-0.1838516,,0,-0.4368782,-0.231128706 +OCIAML3,-0.167174048,-0.748391468,-0.739577256,-0.005381304,-0.126470625,-0.155704199,0.043821974,-0.463772541,-0.626488556,0.564193863,0.33818721,0.492566681,0.223083238,-0.186644517,0.003385245,-0.493560111,-0.352639981,-0.54053452,,-0.252152835,-0.679593436,-0.653713705,-0.905833921,-0.051301897,-0.081395806,-0.146496616,-0.093652905,-0.353382592,0.125765203,0.237243979,-0.122227827,0.269959283,-0.972701426,-1.026494934,-1.280864915,-1.213678989,-1.098200491,-0.183277034,,-0.194720927,-0.013541292,0.158549597 +SUDHL10,-0.232342997,-1.15312291,-0.358241022,-0.140447262,0.460720773,-0.251219714,-0.999646118,-0.577637182,1.372588028,0.524296068,-0.080501821,-0.485689118,-0.833813781,1.23531297,-0.38278481,-0.255077999,0.346212989,-0.174916186,-0.927178629,1.32427198,0.485745728,1.176989725,0.830578763,0.437760689,-1.081469366,-0.473003271,-1.314220575,-1.485954758,-2.329243602,-2.817539712,1.709957199,0.691601915,0.461517913,0.34360865,0.215820955,0.547356561,-0.797682476,-0.1238386,-0.03386145,-0.32094506,-0.83737829,-1.063259396 +SUDHL4,-0.010048552,-0.616987566,0.005557016,0.207915393,0.766113703,0.388270562,-0.234105916,-0.779064265,0.099565839,-0.124180911,-0.377450411,-1.142875166,-1.716318454,-0.919413362,-0.018829256,-0.387346029,-0.099839797,-0.865671744,0.508755692,0.738990462,-0.243070134,0.738034141,0.411028644,0.779143832,-0.968046793,-1.51422647,-0.894613579,-0.498581717,-1.640418519,-2.335025245,1.855110312,0.979028112,0.84421375,-0.177985164,-1.155402689,-0.623822877,-0.12006227,-0.257845926,-0.039476757,-0.143383411,-0.543221118,-0.473268072 +RH41,-0.0339,0.153340457,0.075883378,,-0.109500043,0.197911637,0.062662573,-0.343518354,-0.679028052,0.269701964,0.252070179,0.251362674,-0.180852413,-0.083735671,-0.203562398,0.507432231,0.592239529,0.652190334,-0.578525462,-0.325541744,1.094190875,1.196274819,0.45998051,-0.729062112,0.301165208,0.994353795,-0.31151946,-0.689607043,-0.635405701,0.182410274,0.19713293,-0.365875393,-0.110520979,1.312178283,1.416202949,0.315568979,-0.710101849,0.010003128,-0.002976641,0.085559662,0.124432928,-0.322827941 +OCILY19,-0.037926307,-0.967356195,-0.094017447,0.342660459,-0.125974906,-0.026231071,0.078579236,-0.788891149,-1.319145873,0.339513959,0.367467581,0.741095309,0.504633702,-1.134155276,-0.109978345,0.100877414,0.313925509,0.204837337,-0.038882195,-0.167723966,-0.349465856,0.325025294,-0.390177214,-0.030338677,-0.327074579,-0.182309111,-0.058826914,0.55632329,0.142687507,-0.116504636,0.795966705,0.418750298,0.470867981,0.243396632,-0.285827984,0.040411342,-0.34476758,-0.062231589,0.225498029,0.084520414,-0.005017361,0.050512254 +MOLM6,-0.520048136,0.220419884,0.09729163,-0.231652519,-0.701610216,-0.2036614,0.515005523,0.336359571,-0.989899963,-0.487823786,-0.187527095,0.180450061,0.564015521,-0.857098688,0.112491753,0.459634145,0.213767205,0.342152598,1.781357925,-0.285270028,-0.348211046,1.341810038,0.042044522,-0.103829639,-0.250152537,0.574487395,0.002193352,0.376129035,-0.108299002,0.066580311,0.901744102,0.161031009,0.719893205,0.611200249,0.428881387,1.146949984,0.234472519,0.073322124,0.053972517,0.002641191,0.578139664,0.971729739 +SKMM2,0.165147409,-0.551188412,0.225739721,0.175040797,-0.276447833,0.11364261,0.838148881,-0.548536496,-0.389390368,-0.197915703,0.195950062,0.252325987,0.060232672,-0.516593102,-0.13724043,-0.575768665,-0.026326253,-0.759619161,,-1.072531873,-1.179205977,-0.351152371,-0.201963492,0.068342462,-0.771654216,-0.709089331,0.120690141,0.50873816,0.005698103,-0.718513201,1.301829179,0.273926949,-1.595778604,,-1.168228428,-1.195476038,-0.820461296,0.002246283,,-0.05047223,0.07084859,0.000251238 +KASUMI6,-0.375023452,-0.366312503,-0.392702315,-0.187877356,-0.966969264,-0.546999274,-0.067708836,-0.346564208,-1.043666702,-0.695287909,-0.275887944,0.530351791,0.508754873,-0.802318507,-0.143046248,0.008237554,-0.301623265,-0.386774823,,-0.573855813,-0.246696326,-0.340686906,-0.470834195,-0.133498685,-0.110226586,0.031995549,-0.071676289,0,-0.209635162,-0.330201693,-0.22910196,-0.268780033,-0.59285327,-0.684404561,-0.284612106,-0.142076893,-0.468209634,-0.201098116,,-0.213601934,0.141368642,0.408123406 +UACC893,-0.010204005,0.081121971,-0.254266724,-1.552155802,-0.419703146,-0.352309097,-0.149449916,0.872871651,-0.220124758,-0.18382176,-0.058365916,0.074371571,0.561173998,0.176704186,-0.057708203,0.260414211,-0.145182402,0.511566128,,-0.715247465,-0.41546375,-0.537239879,-1.208619613,-0.046616176,0.173011159,-0.465904751,-0.683380686,-0.182651121,-0.005698103,0.031816849,-0.837699235,-0.090449282,-0.391273043,,-0.330608588,-0.542391411,1.016575533,-0.127432989,,0.042225422,0.0103581,0.109449898 +MINO,0.313038432,-0.553478314,-0.025332883,0.238868903,0.116684588,0.239375872,0.280680814,-0.289095989,-0.235957832,0.336594062,0.450082694,0.459895819,0.008895451,-0.214157543,-0.039409249,-0.380472195,-0.289508717,-0.799295987,,0,-0.707656588,-0.832562746,-0.660253335,0.159291891,-0.554276282,-0.580506622,0.035852291,0.82342107,-0.433788318,-0.684410712,0.902909352,0.605993428,-0.018540486,-1.190663588,-1.516540741,-1.521727735,-0.47413661,-0.034625313,,0.143766333,-0.321434212,-0.664263638 +CHP126,-0.20979116,0.287271221,1.2622483,0.72510047,0.004025105,0.010036978,-0.525687149,0.16921435,0.390907446,0.783324859,0.331919991,0.608062974,0.217497152,0.825710941,0.145805111,0.181633417,0.423817042,0.598310963,-3.695104402,-0.420595688,0.390242399,0.522027267,0.362934231,-1.094026748,-0.022752909,1.012328108,0.386745878,-0.210773632,0.338269615,0.109338316,0.443349773,-0.459681809,-1.400710718,1.015958467,0.276848891,0.134694973,0.857184109,0.116397196,-0.619877571,0.219194783,-0.015946577,-0.439771995 +COLO680N,-0.591702922,-0.036143917,-0.247553096,0.048857735,-0.014153576,-0.214266699,-0.418097579,-0.338819036,0.169930702,-0.247267505,-0.204234454,-0.373918627,-0.704949177,0.012107268,-0.292203109,0.43631287,-0.552424927,0.220122889,1.388649095,1.169979149,-0.921617318,-1.065561398,-0.344775277,0.515545122,-1.183435575,-0.729452264,-0.346830737,-0.06825739,-0.339273868,-0.497790375,-0.843774069,-0.432262886,0.906750768,0.113263869,0.166990852,-0.454907672,0.517816987,-0.180981685,-0.92930991,-0.542369906,-0.450082344,-0.329679122 +COLO678,-0.114997594,-0.635262062,-0.850091473,0.008751778,-0.46851198,-0.377697733,0.428390804,-0.50032778,-0.465548418,-1.175085093,-0.521435992,-0.167612934,-0.192406827,-0.888627847,-0.172186739,-0.849361615,-0.714060322,-1.167789235,-0.064396494,-1.897448448,-1.670884741,-1.990685922,-2.282395454,-1.459794017,-2.845550461,-0.999060648,-1.075764966,-1.037606591,0.165888846,0.373576203,-0.501502024,0.795298919,-2.076418611,-2.803575171,-2.226744431,-3.476621774,-0.493363093,-0.300974879,-0.683869052,-0.333196719,-0.658627627,-0.897956943 +LAMA84,-0.03345746,0.360745372,0.16882965,0.18389672,0.46778814,-0.034647287,-0.20925256,-0.071309948,-0.376699187,0.552802458,0.494379716,-0.073986635,-0.285895021,-0.311687772,-0.374347203,0.159944344,0.472180217,0.787902136,,0.281590146,0.049786437,-0.197527639,-0.039384304,0.433567382,0.020642738,0.027442005,0.158598593,0.387978094,-0.134116351,-0.011784854,0.436692749,-0.102292284,0.93902843,0.332458743,0.368833712,0.524660374,0.166740261,-0.069878673,,0.023220072,0.004391628,0.063240409 +CMLT1,-0.109355145,-0.239029515,0.011350284,0.427135595,0.019693705,-0.308114483,-0.134071099,-0.180537844,0.205763744,0.385666768,0.857690655,0.917930118,0.271081887,1.633522655,-0.203430602,0.74720443,0.456654739,1.023900001,3.276844729,0.168899728,-0.4954343,-0.685726967,-0.092096147,0.503344864,-0.379737121,0.194526367,0.440117552,0.02185653,0.297523998,0.135468854,-0.009733461,-0.157690611,-2.493334219,0.312078303,0.729648807,0.775715222,-1.098098465,0.265267776,0,0.132100237,-0.100568994,-0.203176575 +EHEB,0.082378315,0.025128502,0.610201804,0.397447776,0.951669096,0.317355195,0.398762548,0.31334181,0.429589417,1.466214432,0.960330406,-0.206820621,1.039918945,1.283527399,0.045128473,-0.245240558,1.147204065,0,-3.502326829,0.544153471,-0.483103426,-0.33552527,1.292325413,0.411171031,-1.306655319,-1.046094207,0.208238012,1.036303305,-0.401207899,-0.772529874,0.631514863,0.99953654,-0.019622946,-1.931694919,-0.845758763,0.272414754,-0.803604723,0.112243541,,0.329216759,0.179828614,0.112385987 +CAL54,0.077177842,0.297423326,-0.049311387,-0.241146486,0.008650182,0.307148066,-0.09880912,0.327005288,0.530371153,-0.278192724,-0.045062671,-0.219895432,-0.115231047,0.571899639,0.132067337,-0.406046443,-0.339844874,-0.415756419,-3.268343407,-1.20225331,-1.518851004,-1.615605156,-0.468819719,-1.236193284,-1.147407083,-0.15413901,-0.026667191,-0.030643987,-0.00289903,0.147360049,0.708762617,1.187151446,-2.210540071,-1.563899379,-1.618140505,0.251373033,0.147989979,0.049189848,-0.169157671,-0.059088441,0.040804613,-0.212798422 +BV173,-0.241778624,-0.806714612,-0.511592676,0.231248356,0.006501399,-0.043268226,-0.191698141,-0.793023321,0.132927931,0.593899767,0.343070285,0.254426747,0.383912498,-0.116692848,-0.459190083,0.211474045,0.462332884,0.475484554,-0.375790036,-1.540370055,-1.10653906,-0.426405018,-0.362881149,-1.025054558,-0.54803525,-0.22271207,-0.272097967,0.227327171,0.26679644,-0.137457637,0.857564067,0.778395711,-0.170443071,-0.370365224,-0.57706932,0.857589871,-1.267641383,-0.059511044,-0.128691613,0.02399511,-0.267176207,-0.311289194 +DOHH2,-0.279302748,-1.366688589,-0.740323606,,-0.124654153,-0.338240457,-0.062211708,-0.892926615,-0.638326335,-0.088038051,-0.184562217,0.000776308,-0.416362186,-0.367312911,-0.230215058,-0.864703101,-0.064516168,-1.015646749,0.871691742,0.011724803,-1.863875994,-1.588937451,-0.944251242,0.051486559,-0.825462822,-1.601680415,-0.615937032,0.406563869,-0.404171649,-1.064806098,0.493766517,-0.148645773,-0.000391941,-0.78229401,-1.453107586,-0.568105653,-1.693673939,-0.336902054,-0.141501582,-0.367338902,-0.922880483,-0.719457153 +EOL1,0.918478488,0.206844889,0.473881866,0.633356811,0.618936227,0.843648967,0.4765349,-0.185861436,-0.223473736,1.047686242,0.946094146,0.671153043,0.703026951,-0.910537805,0.799268816,0.645351363,0.877445897,-0.015004985,1.749994932,0.131750362,0.850551278,0.139970972,1.271804802,1.000752828,1.000531015,1.073771317,0.375219886,1.520789198,1.129817231,0.119089639,1.509089191,1.190699434,0.073929971,-0.478840569,-0.811885682,-0.768656308,0.323984639,0.938814362,4.894331732,1.046160337,0.08829256,0.162253878 +LP1,-0.087023246,-0.751518602,-0.228561919,0.567982095,-0.378770055,-0.44754143,-0.17819243,-0.233395664,-0.911792085,0.001189304,0.381891546,0.515543268,0.843662468,-0.738772412,-0.181259313,-0.213195514,-0.196411342,-0.087477367,-0.481670139,-0.96290804,0.759079282,2.153358109,-0.166217045,-1.716393536,0.527665288,2.107502792,0.008255932,-2.543404466,-0.56492645,1.393031185,-2.543132169,-1.794922819,-0.43612114,-0.628485663,0.583334401,0.241383508,-1.07437228,0.019619437,0.085115517,0.033700145,0.109331241,-0.263020033 +LXF289,0.009503462,0.042190772,0.539365982,-0.170959761,-0.271309889,-0.001750527,0.420139517,0.369153386,-0.188205255,-0.668622764,-0.196031123,-0.056901254,0,-0.415414381,0.005661427,0.287393897,-0.225914878,0.466187898,,0.058531754,-0.07688241,-0.857521986,-0.56189684,0.091479367,-0.437433894,-0.430045323,0.190714349,-0.092624057,-0.329311177,0.013983222,0.158532048,0.471450158,1.019018267,0.536724224,-0.018747376,0.202360964,0.700320309,-0.031421889,,0.004339417,0.074647374,-0.1518256 +MONOMAC1,-0.621586433,-0.459052594,-0.541092261,-0.965449413,-0.584006032,-0.422237102,-0.131270637,-0.663333067,-1.414456301,-0.102472987,-0.169156783,-0.374545546,-0.31440038,-1.152276839,-0.338042596,-1.137765765,-0.283668785,-1.657818102,1.1221396,0.625529199,0.152328336,-0.105207119,0.089528976,0.399497013,0.248329297,0.631144524,-0.058309373,0.157350584,-0.019715153,-0.456728791,-0.257628144,-0.500320941,0.162868013,-0.294778231,-0.609833156,-0.708282999,0.325094678,0.035541598,0.771559613,-0.056613115,-0.478739198,-1.04180522 +PL21,0.010398755,-0.487339756,-0.263068603,0.313765307,-0.087966751,-0.159004428,-0.442795747,-1.213685371,0.120857861,0.726086964,0.422619609,0.297936511,0.11190193,0.783364794,-0.211588691,-0.059272819,0.510329216,-0.360837502,-1.350450929,1.482076449,0.981330417,0.355195437,0.861507258,1.297878205,0.639593129,0.627318983,-0.670793278,0.847491173,-0.163575621,-1.471316662,-1.12256317,-1.838865406,0.937167866,0.54490045,0.811133715,0.425819348,0.043811038,0.044998147,1.359474885,0.114379714,-0.369318746,-0.676866254 +PF382,-0.088611064,-0.8995822,-0.668339817,0.514560747,-0.016524321,-0.499974491,-0.769173047,-1.389375634,0.734153436,1.277755339,0.386500484,0.116671542,-0.508358425,1.260018235,-0.451007114,0.356922307,0.508422776,0.648635224,,0.462878288,0.207644815,-0.067270957,-0.321371816,0.105019557,0.183758561,-0.096038928,-0.396506705,0.082404152,0.04192049,-0.488236271,-0.153737669,-0.329718297,1.094149552,1.274278849,0.69891616,0.289253171,-0.191802629,-0.278978081,,-0.114604121,-0.89528484,-1.367942315 +OCIAML2,-0.461036339,-0.243104051,-0.480419755,1.118905663,-0.000438485,-0.337269018,-0.225431531,0.045048906,0.079976128,-0.089065688,0.155999389,0.135941274,0.47881674,0.102272608,-0.306888982,-0.33185843,0.209698673,-0.112910217,-3.978448027,0.245281804,0.092420433,0.342630398,-0.088128025,0.089210944,0.049862939,-0.942546017,-0.245500622,-0.170928033,-0.492635238,0.078472429,-0.38841425,-0.989174986,-0.474991501,-0.565480775,-0.387304986,-1.763523112,-0.033786661,-0.393408834,-0.564379283,0.003405275,-0.674150942,-1.927448916 +MHHCALL3,-0.465134441,-1.046527486,-0.805144051,-0.783740986,-0.865130251,-0.755109436,-0.208475267,-0.840858163,-1.201406747,-0.979801518,-1.078760655,-0.687654455,-0.453414335,-1.252566707,-0.757927806,-0.952352895,-0.51110277,-0.93226816,0.183816943,-0.948688317,-0.805221329,0.139195232,-0.491057569,-0.928175254,-0.779969122,-1.478631649,-0.496710356,-0.365867344,-0.681538403,-0.968940698,0.096835482,-0.305516549,-0.921176446,-0.902777088,-1.291229826,-0.42566394,-0.681231752,-0.637925926,-1.332762024,-0.766495006,-0.533362451,-0.206020191 +JURLMK1,-0.334775693,-0.64717949,-0.042243214,0.189152239,-0.107951297,-0.326112512,-0.556913095,-0.764332639,-0.566362922,0.884120303,0.494636867,0.054052771,0.1175753,0.214537986,-0.13116112,0.419208304,-0.096667487,0.403657941,-1.102803654,-0.605608618,-0.461150077,-0.256012901,-0.305087636,-0.437360286,0.132492034,0.241127111,0.014839495,-0.150341571,0.075687858,0.094364997,-0.871850767,-0.6408289,0.070929885,0.208973697,0.108384636,0.454724371,-0.812276312,-0.291627162,-0.191976605,-0.40375037,-0.089224584,0.057671524 +OCIAML5,-0.323549649,-0.347622881,-0.311075468,-0.149452293,-0.82401915,-0.826996232,0.228730177,-0.272826096,-0.546081279,-0.592002738,-0.449572611,-0.156949876,-0.260292549,-0.928865467,-0.352206404,-0.680686379,-0.201104939,-0.488920417,0.131546405,2.214905913,1.755616576,3.113793079,0.761324583,0.450010975,0.445880388,-1.427736694,-1.188249162,-1.916043189,-1.520552207,-1.671985057,-3.21080856,-3.26777287,0.798124319,0.998251088,1.489953703,1.917582038,0.615866854,-0.44681774,-0.981749526,-0.595175654,-0.144676378,0.483491772 +KE37,-0.10938802,-0.375529375,-0.254102621,0.255339054,-1.059392311,-0.885771428,-0.412575563,-0.452572723,-0.794065696,-0.790149276,-0.002760844,0.130526367,0.751946361,-0.188148438,-0.822904672,-0.102607633,0.009987032,0.488944144,-2.296466641,1.738127721,2.529663514,2.243422627,1.179803226,-0.52622311,0.190142467,-0.583830372,-1.60698675,-3.0858975,-2.688887071,-2.937711713,-3.958995423,-4.780194218,0.403615056,2.142038266,1.962213363,0.484035347,1.09072424,-0.334136054,-0.613101396,-0.179114083,-0.347386956,-0.09751334 +JK1,0.056144623,-0.047446647,-0.1584158,0.173267216,-0.470715967,-0.198472878,0.506790738,0.717657366,-0.524245575,-0.855388718,-0.285998543,0.597912207,0.535507658,-0.687222086,-0.117840221,-0.194303998,0.188538076,0.261755895,,0.237816624,0.783525183,0.805523498,0.342505371,0.307772857,0.595921705,0.54652431,0.27374537,0.034859077,0.02827362,-0.280909954,-1.294084862,-1.046805592,0.269675994,0.644531596,0.59197924,0.680228667,0.400564513,-0.17225141,,0.015936355,0.002634826,-0.004237132 +RI1,0.037611926,-0.198216408,0.140927136,0.443894812,-0.158922245,-0.006605662,0.059018272,-0.861492184,-0.530067413,0.455784975,0.830500811,0.901725748,0.417407023,0.190189824,-0.062290703,-0.061937289,0.369074678,0.028471616,,-0.304667417,-1.517106725,-1.402460145,-1.283090508,-0.104819006,-0.917379667,-1.345006539,-0.151852291,0.890476267,-0.073252351,-0.400442311,0.66996526,0.490494988,-0.010373314,-0.989062184,-1.577542462,-1.427656872,0.623091898,-0.105531246,,0.111693929,-0.602770745,-1.15945983 +KARPAS422,-1.857697896,-0.678270811,-0.591791395,0.157866768,0.247810472,-0.275768035,-0.193616818,0.270051156,0.60209457,0.032522204,-0.312125065,-0.850405089,-0.151981834,0.012313082,0.039333998,-1.192666443,0.435801421,-0.87101197,3.473194765,-0.27708379,-0.23498634,2.331592895,1.129875036,-0.393216724,-1.5231038,-1.887767555,-1.177203675,-1.197196641,-2.08108043,-2.562195727,2.222361569,1.371748971,-1.016452003,-1.08378667,-0.216307158,1.458957645,-0.125774644,-0.054362912,-0.062884331,-0.068345518,-0.106568365,0.300925235 +L540,-0.128535519,-0.193029749,0.339063212,0.333873023,0.935312836,0.085229342,-0.675445405,-1.825370449,0.474634568,0.893461953,0.256925106,-0.316420939,-1.210062622,0.60970156,0.02549721,-0.136785185,-0.205558481,-0.142011162,,-0.540162536,-0.048851897,-0.221010809,-0.798967722,-0.706801764,0.037837854,-0.056689718,-0.371160845,-0.407896734,0.639169772,0.644016044,0.169540701,0.611009674,-0.099874801,0.176350486,-0.051327621,-0.487000247,-0.715557322,-0.062558363,,-0.001705838,-0.278285465,-0.448473197 +CAL78,-0.41092936,-0.256336887,0.164294261,-0.495783497,-0.440518277,-0.149091067,-0.063052768,-0.568242585,0.247252395,-0.392857647,-0.469900824,-0.526568801,-0.116954752,0.078915866,-0.605667321,0.078663107,0.048168911,-0.127048999,-1.471803168,0.000719118,0.490188379,0.991782041,0.265998012,-0.003209871,-0.621018803,0.3647432,-0.006124782,-0.207216609,-0.301799775,-0.085173473,-0.783206571,-0.556998538,-0.050620593,0.166677922,-0.225517253,-0.756248112,0.167204309,-0.384811072,0.072125932,-0.03502348,-0.211961188,0.379745371 +HDQP1,-0.038076712,-0.527611354,-0.442697713,0,0.291279875,-0.11395527,-0.565305851,0.062576044,0.293847232,0.203203563,-0.128932968,-0.683172798,-0.539283963,0.222961984,-0.659505359,-0.024539495,-0.205048818,-0.414505574,-1.051700581,0.191230574,-0.359449066,-0.423908781,-0.275854733,0.31609249,-0.324294471,-0.453892903,-0.002131819,-0.105782661,-0.147706202,-0.289211396,0.560956504,0.00911454,-0.890706541,-0.582703068,-1.085283428,-0.569941744,-0.144283985,-0.419358694,0.228605994,1.797563016,0.248545575,0.125842914 +MHHCALL4,0.377863696,-0.174213964,-0.147836133,0.344585396,0.313158005,0.387529538,0.294956195,-0.251334127,-0.005365728,0.189055705,0.368240756,0.502132103,0.279563921,-0.269906914,0.098561042,0.23966709,0.322875675,0.113190311,,-0.344202073,-0.561460101,-0.453917477,-0.028340308,-0.196070375,-0.294837471,-0.099319709,0.122787582,0.497121406,0.184457635,0.024217962,1.277591218,0.609830855,0.188735763,-0.391342669,-0.132853173,0,-0.186014318,0.106033563,,0.278924355,0.316670577,0.64142331 +MUTZ5,0.069141493,-0.241034529,-0.964739157,-0.296376025,-0.168398355,-0.076858798,0.27294443,-0.326175999,-0.40708267,0.432122219,0.324351276,0.435436106,0.28863834,-0.267164821,0.118690067,-0.293053899,0.584602518,-0.10925889,0.215666109,-0.287391582,-0.493955964,1.936013859,-0.422154874,-0.454763159,-0.461091563,0.237564528,0.000580758,0.525101946,-0.227797272,-0.166063455,1.044268765,0.533260029,-0.11260336,-0.127171041,-0.490028092,1.551491092,-0.580800916,-0.082619565,0.080243915,0.089747673,0.068304509,0.341988224 +HDLM2,-0.101757794,-0.030662786,0.745242466,-0.557302071,-0.187306616,-0.240100875,-0.166933244,0.323146387,-0.036082041,-0.258456576,-0.267692791,-0.959809438,-0.712025354,-0.355268851,-0.074599624,0.294735026,-0.404454631,0.030496123,2.433757639,1.402706689,0.653939906,1.122005048,0.750864564,0.597174156,-0.218939257,-0.122513394,-0.246014518,-0.099978365,-0.284961057,-0.256097632,-0.331607496,-0.250968693,0.945271489,0.91504256,1.169129567,1.563308031,0.308147978,-0.206300641,-0.32988475,-0.121406571,-0.58107406,-0.465239127 +KOPN8,-0.544669565,-0.93510784,-0.569825499,-0.000508094,-0.184623496,-0.642669826,-0.006454262,-0.392950504,-0.203126063,-0.18975424,-0.093210536,0.142302099,-0.435626083,-0.226491267,-0.24986533,-0.5049372,-0.573579152,-0.77113121,2.588746862,0.024251913,-0.446821622,0.476272287,-0.663454177,-0.014142793,-0.799792108,-0.995052096,-0.657208754,0.317516714,-0.543051094,-0.711258193,0.225362728,-0.590007568,0.563937439,-0.54781027,-1.068852775,-0.393012079,-0.139379708,-0.254939639,-0.643258982,-0.299477062,-0.555324319,-0.828536743 +SCLC21H,-0.13992291,0.059044534,-0.377365169,,-0.17597921,-0.133372553,0.188158783,-0.585888601,-0.092755943,0.2974966,0.360096341,0.444663717,0.433844934,0.331786943,-0.140192224,0.325516508,0.316263078,0.616703761,-0.794492151,0.004425256,1.372640393,1.086128565,0.177227795,-0.607236768,0.709468802,1.883024141,0.598471924,-1.077640653,-0.56231662,-0.003100137,-1.442431471,-1.937669936,0.273106867,1.616208914,0.690038909,-0.413786719,0.135873844,0.034659801,-0.009074844,-0.399557604,0.227419774,0.121897881 +CALU3,-0.71820887,-0.629893804,-0.520022115,-4.404702097,0.442406424,-0.15385921,-0.118825422,-0.270994097,-0.457666035,0,-0.282069383,-0.620465749,-0.819536859,-0.463337604,0.199073989,-0.376215845,-0.659808026,-0.860732365,0.328379572,0.232104857,-0.123774204,-0.175882832,-0.184294985,-0.191956363,-0.263547327,-0.138114478,0.216367861,-0.307770926,0.012224021,0.024823196,-0.538082879,0.044517293,-0.606419476,-0.581038629,-0.986904668,-0.604690077,-0.60040989,-0.180322427,-0.591955679,-0.125674277,-0.011850452,0.214886199 +NCIH1435,0.135055815,0.129633705,-0.099977156,0.213420079,-0.331754218,0.239500386,0.280188466,-0.161094489,0.418687886,-0.018706492,-0.080467274,0.149214511,0.077578163,0.736022692,-0.066605612,0.007629989,0.285101439,0.011241694,,0.385610073,-0.214495435,-1.144135815,-0.970432948,0.507603118,-0.118771203,-1.258722736,0.140659973,0.382499037,-0.290297107,-0.632811779,0.359390685,0.031234085,0.323077618,0.037810771,0.111546473,-0.958040609,1.018513082,0.033252423,0.111761997,0.001701751,0.132355804,0.159814242 +NCIH2009,-0.061579535,-0.079436687,-0.023636779,,0.41844706,0.269989992,-0.596777589,0.382873173,1.210358138,0.26347767,-0.063199976,-0.437783993,-1.023962421,0.866023106,0.00803991,0.423864407,0.138917504,0.5942427,-1.502927615,0.290639306,0.122977692,-1.0647578,-0.230950335,0.202270095,0.322636531,0.624088105,0.37159251,-0.33914584,0.294104208,0.549515597,-0.773856132,-0.142920684,0.465361695,0.527988192,0.134034349,-0.906626611,0.41115098,0.039482798,-0.116658299,-0.208343205,-0.19993325,-0.535497499 +NCIH1869,0.218502776,0.049663843,0.192477944,0.26297274,0.20199247,0.196672421,-0.034197068,0.027894233,-0.427312531,0.50145179,0.530390394,0.107799971,0.344322922,-0.187972136,0.277905306,-0.12004712,0.111547927,-0.273465017,,-0.155763757,-0.177623902,-0.172720882,0.315947875,-0.27415049,-0.015141953,0.089111468,0.514963989,-0.240872129,0.125635657,0.026788259,0.706510889,0.640821432,-0.399820248,-0.683301902,-0.639863058,-0.024446501,0.837302086,0.214694303,,0.220464319,0.109449647,0.089864682 +HS852T,0.085674276,0.150142275,-0.140595641,0.321943102,-0.134116845,-0.013550962,0.550877353,0.509156278,0.629985254,-0.432157129,-0.525755029,0.201395934,0.170486558,0.429781512,0.107283498,0.318778193,0.303482583,-0.005708053,,-0.451106768,1.48390597,1.93941652,1.381526308,-1.24849645,0.205416215,0.717784799,1.484024333,-1.856487686,-0.9173968,0.427940889,-2.17023007,-1.669766021,-0.627836609,1.445390057,1.807511151,0.181829244,-0.572681451,0.134946392,0.051311674,-0.000307134,-0.297836947,-1.122226138 +HCC1419,-0.029021526,0.8928049,0.721078983,1.47976356,-0.121846788,0.093814659,0.08939648,0.065379936,0.508040317,-0.193073291,0.372583195,0.698604375,0.611006433,0.636813173,-0.057365735,0.808759732,0.989066552,0.768389107,-0.18034416,0.310600115,-0.006088602,-0.091635489,-0.057800079,-0.045557112,-0.136407199,-0.190508988,-0.952389974,0.622098655,-0.678794299,-0.213781738,0.580456393,0.386019788,0.499723416,1.07214444,0.65889943,1.052385102,-0.110042614,0.125406696,0.194857827,0.449507992,-0.672727431,-0.010827121 +BT483,-0.298587231,0.53028052,-0.001176844,-1.313018859,-0.952087577,-0.378226265,-0.51141492,-0.542498555,-0.720704499,0.07431752,0.60323937,0.18541817,0.487436165,0.070342537,-0.503744719,-1.056171923,-0.316138794,-0.553443695,-2.129145323,-2.443272148,-1.643220401,-1.033452133,-1.277300902,-2.725533728,-0.271879387,0.319414931,-0.091682141,-1.684701751,-0.535755322,0.330167637,-0.746500474,0.071752859,-1.448032828,-1.618621512,-0.842334745,-0.654406023,-0.345816809,-0.120197078,-0.405993375,0.130776868,-0.762968777,0.372933142 +HS934T,0.205082174,0.035984444,0.632153156,0.40800958,0.06634522,0.28891288,0.115648071,0.166534302,0.310576556,0.325934231,0.058660099,-0.090841654,-0.041696931,0.506669498,0.049441997,-0.985145951,0.60883089,-0.521699107,,0.552416132,1.619022726,1.614147048,1.133678975,-0.041768699,1.206657909,1.215394616,0.377705546,-1.470784472,-0.061261158,0.364654268,-2.678599774,-1.562720326,-0.293161656,0.436499354,0.21286412,0.121599954,0.613494707,0.237745939,,0.280667374,0.187272951,0.005274871 +HCC4006,-0.231351771,-0.664274965,0.077055296,-0.645781153,-0.471501383,-0.643651531,0.230669152,1.186927066,-0.686696674,-0.928637659,-1.171090606,-0.184935917,0.859544755,-1.067911441,0.026842057,0.250699496,-0.658430268,-0.214345083,-0.314267649,0.270771091,-0.332362307,-1.297955977,-0.725420974,0.332776835,-0.932053405,-0.179218311,0.402608083,0.473841115,0.008391715,-0.366224506,-1.247468773,-0.388553001,0.807952992,0.427570442,0.007714382,-0.364980948,-0.153376442,-0.071550459,,0.093794985,-0.485652298,-0.699208414 +HCC1428,-0.014877093,0.895661875,1.094795994,-0.315892421,-0.098344559,0.058392655,0.094460297,0.181649231,0.189246699,0.241282305,0.004142707,0.359092562,0.233145384,0.129248945,0.180525901,2.523190978,0.494369908,1.112978858,0.224153782,0.012528718,0.2292154,-0.024919853,-0.196276506,0.045557112,0.276567415,-0.027418256,-0.699381934,0.50957657,0.312123798,-0.381758806,0.462353931,0.229606566,0.827174242,0.51127451,-0.043949795,-0.028777759,0.455112536,0.222572814,0.040082259,-0.338807249,-0.005475143,-1.998358599 +KU812,-0.210841327,-0.034260483,-0.05119765,-0.205492245,-0.183932303,-0.308076439,0,-0.198102495,-0.989582158,-0.424516656,0.062710658,-0.000307717,-0.056225817,-0.962898538,0.094778587,-0.361481201,-0.041792078,-0.160675895,,0.828907005,0.762286835,0.699688971,-0.323505002,0.797765318,0.645683089,0.525748052,-0.205655763,-0.213439493,-0.153194714,-0.401161675,-1.334271354,-1.287070929,0.935627788,0.164879471,-0.257487068,-0.499876611,-0.146276468,-0.139998601,,-0.058798507,-0.068490646,-0.16213308 +SHP77,-0.017847415,-0.115651324,-0.097081435,1.301694377,-0.633805749,-1.370155839,0.030559011,-0.215618316,0.009133678,0.182064578,0.476455009,0.960877607,0.883281924,0.945424141,-0.207421667,0.640183359,0.427556546,1.1918097,-1.38803334,-0.145771553,-0.551199421,-0.163121676,0.02296456,-0.266924123,-0.61208622,-0.464956115,0.16011102,0.300648053,-0.173522493,-0.489015727,0.540856294,-0.026027453,1.080569798,0.80820107,0.540045243,1.006747507,-1.609689944,-0.163891226,-4.367865567,-0.138238013,-0.054716056,0.316863957 +TE441T,-0.158995492,0.644207826,0.326836168,-0.117081904,0.336017313,0.435157237,-0.133278356,-0.410940124,0.605492342,0.046515487,0.409652806,0.33337188,-0.514663366,0.496610753,-0.120003247,0.129227176,0.375509642,0.400566346,,0.280609533,0.227409339,0.111408503,0.104577882,0.131321698,-0.087515207,0.14979316,-0.336238637,0.409454884,-0.2595146,-0.115332562,0.452913907,-0.237084713,-0.537205341,-0.028307771,0.093497465,0.276023594,-0.139946363,0.169054974,,-0.029241829,0.207739745,0.646370832 +NB1,0.384824328,0.924368097,0.83700015,0.645177303,-0.41448211,-0.062155837,0.312123068,0.19577394,0.475799728,0.131556559,0.860859542,1.334261751,1.44338934,0.752602867,0.115737567,1.285494888,0.787598525,1.541814384,,0.017635813,0.611920326,1.123753774,1.122322223,-0.011094357,0.570562464,0.794241488,0.906081787,0.475039446,0.40033881,0.064288918,0.46975784,-0.128203684,1.337000557,1.351607038,1.834478013,2.009119123,0.131596956,0.441861654,,0.395611357,0.522497789,0.224144962 +PFEIFFER,-1.770187603,-0.962368989,-0.659298444,-0.844832976,0.351462278,-0.165459626,-0.5729175,-0.672094604,0.326305538,0.567211896,-0.228488378,-0.70436734,-1.102125219,-0.090506062,-0.099692715,-0.116035949,-0.089014676,-0.509565409,2.431913375,0.167974205,-0.184835125,0.843060898,0.093060357,0.202797402,-0.461896925,-0.605345657,-0.451812664,-1.520352296,-1.753390181,-1.587248012,1.429095072,1.892711628,0.606130824,0.713611384,0.693647594,0.408519011,0.827732808,-0.160937093,-0.131336632,0.150195888,-0.418313035,-0.463638768 +ZR7530,0.150795376,0.99958142,0.328480404,0.632874619,-0.06566657,-0.191858846,0.28665903,-0.064293033,1.676781046,0.52259201,0.829081683,1.102948194,1.322143782,1.654067804,0.085807045,0.803610947,0.388656084,1.638288811,2.83887343,0.553715114,0.682158919,0.863094668,0.758299131,0.535116314,0.893693397,-0.405068254,0.018040653,0.102761538,0.277829964,-0.094592641,-0.498425803,-0.820111868,0.832389405,1.578192012,1.787330179,2.288016175,1.33863189,0.356255164,0.050239465,0.588139957,0.403721486,0.271837208 +HS863T,-0.142454738,0.094139558,0.197713159,-0.04298104,0.556047343,-0.143969582,-0.448876248,0.04535994,0.329524588,0.184710969,-0.412275945,-0.72169316,-0.951775212,0.099052112,-0.207644316,0.260754674,0.042692066,0.55033936,,0.98825593,0.832337378,0.570003991,0.538044204,0.843525298,0.08366705,0.436861951,-0.162660756,-0.404181772,-0.347528094,-0.361650801,-0.66356199,-0.216187948,0.983533194,0.770021469,0.893178755,0.541180879,0.541001032,0.079685848,,-0.106078179,0.286137434,0.795612968 +NCIH841,-0.139209122,-0.641185416,-0.282604409,-0.074966326,-0.023725083,-0.194226445,-0.017151754,-0.085649837,0.507516905,-0.367000032,-0.20139102,-0.345826224,-0.129589783,0.223572288,-0.084073112,-0.211185722,-0.401370503,-0.125289078,,0.28389776,0.122015346,-0.154607579,0.157306153,0.544044092,-0.24687047,-0.455785588,-0.410863307,0.0401981,-0.260780416,-0.513304741,0.08688453,-0.133718284,0.676134201,0.430609101,0.272383369,0.647386944,-0.207750079,-0.229242852,,-0.309719368,-0.186505373,0.27783705 +NCIH1944,0.082840413,0.61637438,-0.099202673,-0.179953226,-0.296909887,-0.283190232,-0.492943896,0.859804498,-0.146717257,0.569897143,0.409983774,0.169208259,0.51989031,0.411235857,-0.251542571,0.099974628,-0.857264608,0.404931053,,-1.346255812,-2.126712777,-2.339208966,0.112435505,-0.51412177,-1.116571961,0.02440614,0.630646909,0.06952442,0.351348463,0.44152093,0.574853812,0.514086083,-1.61871149,-1.907645171,-1.08544075,-0.969565687,-0.123401283,0.166554198,-0.116161616,-0.100754337,0.025362131,0.227001924 +NCIH2405,-0.238851887,0.099957661,0.035966518,-0.402817531,-0.164057439,0.178374976,0.03593638,0.456077714,-0.419665897,-0.730330274,-1.029084788,-0.923382084,-0.648265934,-0.275475053,-0.042557871,-0.167767234,-0.453754013,-0.17155696,,-0.293944785,-0.292047126,-0.243516264,-0.440768541,0.116765094,-0.184564258,-0.276010306,-0.410851003,-0.058843584,-0.172700352,-0.10647077,-0.580746259,-0.20291473,-0.276835016,-0.27690488,-0.098463025,0.022484257,0.772618474,-0.108173865,,-0.094672741,-0.100771048,0.064286739 +DEL,-0.367927836,0.19167573,0.909953453,0.666641004,0.125687232,-0.235907473,-0.356579318,0.312800249,1.276009103,0.569688726,0.484339346,-0.220841779,0.843275761,1.416646577,0.03904999,-0.546622186,0.386180228,0.203285101,1.722783055,0.741902125,-0.370928718,-0.497394813,-0.050332795,0.832798083,-0.089697227,0.210430762,0.245148212,0.206480705,0.392554837,0.143491672,0.514430873,0.598549776,-1.286993079,-0.401422954,-1.014428504,-0.39460525,0.987224131,0.28985724,0.010979435,0.5021794,0.420326579,0.166947382 +BEN,-0.915346884,0.944903656,-0.081640105,,-0.341935334,-0.079226935,-0.061388801,-0.689418791,0.480041827,-0.131114727,0.766263023,0.603915832,0.262109085,0.590660918,-0.669364437,0.483699794,1.234178876,1.669377181,-0.560601194,-1.247796624,0.500878,0.477603325,0.201697041,-1.361179208,0.568031964,1.314945813,0.531405167,-1.605781799,0.165732822,-0.140069511,-0.993765538,-0.675571692,1.076223418,1.527332675,0.829180252,0.321080795,-0.61178093,-0.127157761,0.007811363,-0.202005183,0.274833472,0.292447803 +COLO320,0.139107082,0.316672097,0.325247384,0.27491733,-0.437969749,-0.137534141,0.291380873,0.128566785,-0.159460257,-0.356594703,0.034241129,0.434144225,0.501754867,-0.018250911,-0.02155273,0.863126577,0.359167265,0.727496895,1.025943635,-7.41E-05,0.93270353,1.122051787,0.925938615,0.149775041,0.627979919,0.909917323,0.080119013,0.126404338,0.130481902,-0.344670484,-0.123573724,-0.775178405,1.010579185,1.588756886,1.725631586,1.266575885,-1.089658076,0.10990688,0.180911244,0.135977628,-0.128435824,-0.506610856 +RPMI8402,-0.163643426,0.175841441,0.359320105,0.257017684,-0.028786496,-0.424231726,-0.172551143,-0.779210136,-0.520015242,0.572230166,0.275037786,0.439970545,-0.03838161,-0.249890897,-0.130356019,0.117296476,0.168756303,0.010538517,1.285167134,0.1651919,1.169025103,2.27537661,0.101562251,-1.096117608,0.448288054,1.224591993,-0.452679383,-2.135812413,-0.888906879,0.82560144,-1.901593243,-1.565461656,0.269940297,1.556342099,1.147845781,0.685386525,-0.053398105,-0.015368206,0.223514846,0.000307134,-0.324920328,-0.383916137 +SUDHL1,-0.000790036,-0.602166236,0.119433926,0.579105165,0.520152031,-0.427711041,-1.598028537,-0.771013549,1.578009388,1.504156801,0.73371941,-0.522046143,-0.86892688,2.588715711,-0.728415111,-0.399114329,1.087975452,0.822435627,-0.978678096,0.366773092,-0.439725337,-0.813168364,-0.48028315,0.024999145,0.009539876,-0.1183786,-0.218238576,0.36067975,0.497366787,0.06704307,0.630126452,0.473244658,0.382358121,-0.042604245,-0.455436865,-0.644214717,-0.021577703,-0.026735773,-0.710282968,0.117238445,-0.571027784,-1.225007451 +P12ICHIKAWA,-0.315639442,-0.062013573,0.639095771,-0.381634524,-0.545389989,-0.593518091,-0.52605016,-0.928267762,-0.245678511,0.384960078,0.034301996,0.094448052,-0.079702757,0.102558264,-0.640404082,-0.135215604,-0.068954244,0.361607925,,-0.63842048,-0.376176816,0.06434244,0.745479004,-0.414053246,-0.942472757,-1.397958772,-0.295024702,0.111702644,-0.626380711,-0.556981492,0.498876061,0.362497772,-0.1783725,-0.226340478,0.303968213,0.461578612,-1.410505421,-0.498484284,,-0.417722396,-0.28351082,0.264748808 +BFTC909,0.209435436,0.183865012,0.154793373,0.130598624,0.565982546,0.210056741,0.009070899,0.01323389,1.107277417,0.097266177,-0.068265205,-0.361670333,-0.36993755,0.699038563,0.068772311,0.103527989,-0.008056857,0.082086962,-3.855788839,1.109348639,0.467151791,-0.332874966,-0.254328877,0.713995382,0.23045152,0.405154953,-0.372382868,0.237586903,0.186411986,-0.224188146,-0.449203386,-0.154947626,0.775580375,0.946141537,0.855310953,0.321314802,-0.369044918,0.112303812,-0.173938227,-0.037670856,0.333375745,0.85607065 +MHHES1,-0.197033002,0.609160263,0.452985802,0.346087868,-0.33438385,-0.15657263,-0.350545786,-0.646116843,0.153374093,0.540787225,0.825982914,0.58547223,0.240538574,1.288274752,-0.315487853,0.815741276,0.374557241,1.368885534,-1.421760234,0.412984468,0.336178875,0.927960675,0.610840283,0.454268637,0.243646491,0.480775607,-0.572698209,0.392027078,-0.425351987,-0.858273184,-0.53053635,-1.145527068,1.817757429,1.319470602,1.880068888,1.619469897,0.021673047,-0.146119112,0,-0.034281129,-0.374469584,-0.771929603 +JVM3,0,0.115572231,0.263866419,0.343794176,0.006547567,-0.02268808,-0.164702426,-0.861113953,0.31792776,0.566201555,0.636654285,0.682438761,-0.14566089,1.171441669,-0.208757411,0.526098494,0.146757833,1.038275246,,-0.543149906,0.180912857,0.313200583,0.136813805,-0.556575518,0.095571233,0.698866582,0.159603159,0.273037544,7.92E-06,0.08274318,0.676600048,-0.042918992,0.94757224,0.317075994,0.957450787,0.541296186,-1.020455045,-0.122211905,,-0.056370895,-0.483376574,-0.537478684 +NOMO1,-0.446647244,-0.33346813,-0.106971052,-0.408438821,-0.35262134,-0.467393335,-0.310195761,-1.170355501,0.023728868,-0.347931054,-0.22993809,0.239214055,-0.403452505,-0.202364778,-0.545009029,-0.39435543,0.30853686,0.082173842,0.146587037,-0.294121208,0.008342083,-0.127046518,-0.082692577,0.479390649,0.610506973,0.890567629,0.210994377,0.915889609,0.445866266,-0.000904383,-0.724606757,-0.751446845,0.613784087,0.450730926,0.28566385,1.565566851,-0.252769206,0.151632297,1.219432527,0.240497117,-0.160659793,-0.692195974 +NCIH727,0.052897163,0.41827325,0.318560977,0.126828443,0.385997141,0.535612757,0.085574914,-0.820485646,0.883560178,0.180912592,0.343144455,0.027801753,-0.272042842,0.787657101,-0.06915077,0.206054296,0.484327556,0.065127873,,-0.808819623,-0.813845272,-0.671100327,-0.575059992,-0.644191866,-0.473636798,-0.940312326,0.131356997,0.145980718,0.194115005,0.246930267,0.715602243,1.17286532,-0.438629323,-0.545621545,-0.659958591,-0.788342005,-1.985855826,-0.041716686,,-0.037037188,0.416487343,0.889837329 +HCC2935,0.035184715,0.377521054,0.079936192,0.268652325,-0.229139063,-0.097984828,-0.012992243,0.486500013,-0.763219263,0.201026301,0.353372725,0.224469446,0.49388386,-0.154578274,0.164155009,0.997942325,-0.445349329,0.704595702,1.576227171,0.351868252,-0.983837236,-1.16096052,-0.98619505,0.348177853,-0.778218908,-0.649127921,-0.399991082,0.560768763,-0.064354457,0.032937253,0.158891576,0.562843366,0.069147243,0.003622024,-0.041211986,-0.298137182,0.516063473,0.107695696,-0.252020805,0.120526751,0.037318194,-0.692640431 +MKN45,0.022061953,-0.451899369,-0.616438421,,-0.184131437,0.22871497,0.373078227,0.320927238,-1.182815415,-0.771676577,-0.450219461,-0.179361484,-0.114753569,-1.507934944,0.092284317,-1.202054866,-0.415568976,-1.662194203,0.613261733,-0.299334291,-1.000978674,-1.049453261,-0.665371416,0.28497799,-0.308001975,-0.537081505,0.1090672,0.256789762,0.012477643,0.357674093,-0.750633486,0.084990237,-1.564575777,-1.53631113,-1.580179236,-1.278058464,-0.710403876,-0.056088854,-0.080053357,0.121672107,0.443163822,1.304289602 +8505C,-0.305748527,-0.071837835,0.275760177,-0.344829497,0.001052873,-0.294092059,-0.046744005,-0.048018523,0.770959406,-0.281265828,-0.452949229,-0.660722537,-1.262558161,0.479669729,-0.292510642,-0.08459306,-0.319041277,0.422118899,,0.797138486,0.099811875,0.430545959,0.221947993,0.544767858,-0.097899952,-0.019090128,-0.306227129,-0.359144818,-0.258185155,-0.396258334,-0.925693363,-0.607602169,0.01195634,0.208664354,0.866210361,1.051264468,0.116809923,-0.363390303,,-0.273403552,-0.398464029,-0.533720534 +KCL22,0.133721028,0.310977806,0.885526799,0.534559213,-0.496774835,-0.288629945,0.015449522,0.034599037,-0.734276879,0.468774085,0.328151745,0.754286342,1.093750744,0.104020951,-0.192096358,-0.029992709,0.931374615,0.625394459,-0.127599285,-0.193099036,-0.676770599,0.25685498,-0.476430991,0.028200803,-0.23986912,-0.858807349,0.078547766,0.715063746,-0.138146646,-0.48539282,0.776176364,0.188898371,0.239734442,-0.121095637,-0.657825736,0.106793897,-0.765279317,0.055040281,-0.346450728,0.024671546,0.230630606,0.127556551 +CADOES1,-0.147057313,-0.030226684,-0.206290268,-0.008829722,-0.107776471,-0.101523767,-0.105797987,-0.087266724,-0.09571539,-0.59061584,-0.12446513,0.113919707,0.200218165,0.487804122,-0.16907328,-0.306675939,0.531323995,0.511848277,3.262106081,-1.047456493,-0.541306706,-0.470238143,-0.434602698,-0.150271287,-1.12014704,0.162937883,0.159568132,0.140200672,-0.061606856,-0.645922781,0.092602433,0.482487102,0.082471506,-0.415522792,-0.577878481,-0.073143935,-0.257856276,0.057412666,-0.089678791,-0.193591018,-0.149912923,-0.422153946 +S117,-0.189029378,-0.19862933,-0.258817201,-0.104264337,0.004141991,-0.33393892,-0.601431023,-0.527193963,0.879910626,0.271631057,0.114011872,-0.193177698,0.14599148,0.868364151,-0.102238394,0.4339621,0.202669224,0.782893229,,0.142500488,0.41772701,1.033985756,0.302457629,-0.128075596,0.212304254,0.639575939,0.102913312,-0.507155082,-0.25555082,0.126050661,-0.710660258,-0.641868405,0.212710879,1.019106654,1.194733157,0.464895315,-0.213412127,-0.105887287,,-0.142596973,-0.178238573,-0.171783542 +EM2,-0.068969856,-1.247137331,-0.757871609,0.558735798,-0.417055449,-0.36224326,0.392185217,-1.027979004,-0.633899581,0.307629825,0.779224801,0.561240358,0.229542497,-0.07509059,-0.50448013,-0.48265063,0.465427138,-1.392541051,-2.944255063,0.404804501,0.181961945,-0.014366143,-0.385685801,0.820027386,0.33859948,0.727030961,0.929444674,0.951044189,0.613955804,0.376816439,0.871711997,0.345119974,1.931936643,1.300601326,0.418556067,0.324034301,-0.699049044,0.459164931,,0.016140973,0.387622165,0.886891032 +OPM2,-0.118379882,-0.052583728,0.26694343,0.090029165,-0.378706935,-0.502452327,0.470521819,0.865351984,-0.976041195,-0.101659536,-0.265131309,-0.053597624,1.044911013,-1.225885017,0.126973645,0.187844372,-0.060908545,-0.372777983,-0.822486288,-1.084212171,0.148834889,0.82790506,-0.198766998,-1.912308586,0.493517969,1.428252661,0.110655857,-2.611707024,0.354683406,1.742676664,-1.768386014,-0.048846433,-0.885277559,-1.030941605,-0.543888202,0.94663888,-0.644236962,0.135577401,0.018214503,0.126162854,0.421419168,0.014735228 +CAL62,0,-0.793097375,-0.438243049,-2.967520766,0.177648924,-0.111580123,-0.166161018,-0.493203605,-0.005567628,0.00027778,0.177172583,0.294393965,-0.612882523,-0.130640763,-0.032485069,-1.77920168,0.903470816,-0.879371588,4.091335058,0.554596409,0.61619596,0.18681122,-0.41242122,0.125246305,0.496877626,0.262184741,-0.343956168,0.258976094,-0.154814296,-0.131606813,0.011360028,-0.492950679,-1.127457339,-0.608228893,-0.971167203,-1.683430063,-0.096552463,-0.15806211,0.022970309,0.020508074,-0.562245474,-0.442705206 +LCLC103H,-0.12757996,-0.082962042,-0.372106626,-0.115356589,0.780849843,-0.244160968,-0.425333225,0.126148854,0.293747103,0.321593613,-0.482445689,-0.821549782,-0.153078584,0.237772767,0.001361932,-0.322549849,-0.046192961,-0.428706332,,1.295869394,0.36089701,-0.313512614,0.413503703,0.630472179,0.046716545,-0.878034789,1.08911472,0.012185345,0.02975242,-0.17164379,-0.392666749,-0.151777164,0.000480501,0.988809038,0.930547994,0.099098002,0.104850913,-0.048970122,-0.347724554,-0.175290695,0.015635187,-0.012726593 +JURKAT,-0.012333925,-0.905188606,-0.605845134,0.380169919,0.072321624,-0.555570226,-1.324786692,-1.021743098,-1.579313803,0.702243147,0.187433988,-0.414395428,-0.822524697,-1.417411654,-0.535417526,-0.535689192,0.000930388,-0.20109586,0.280006596,-0.923050665,-0.294158338,0.113824769,-0.448643623,-0.784974954,-0.433624514,-1.261834317,-0.390419513,-0.38550373,-0.244707678,-0.219418616,-0.051749672,-0.005846883,-0.679013145,0.011181115,-1.014889463,0.769771283,-0.567249724,-0.45735127,-0.816824478,-0.401646611,-0.785042873,-1.077013095 +697,0.054659221,-0.066333098,-0.054626938,-1.506574326,-0.067920712,0.045844226,0.188294112,0.151668375,-1.087521607,0.233188836,0.13905628,0.447929736,0.516862934,-0.674725099,-0.027612767,0.227088091,0.260120875,0.210052085,-0.032151994,1.968745784,2.339264999,2.20935259,1.242667498,1.036617926,0.639920261,0.193505954,-0.612546638,-0.326415791,-1.142918297,-2.051978187,-2.11395589,-3.165797244,2.064893979,1.891035661,1.764738116,1.163508851,1.453415327,0.088446665,0.030282904,0.044259449,-0.098216675,0.003305821 +MHHCALL2,-0.927508478,-1.978786555,-1.28173155,-0.598533568,-0.695370876,-0.76572137,-0.879591812,-1.048094244,-0.856441324,-0.195126785,-0.655802254,-0.945982847,-0.648388059,-0.750052437,-0.90603311,-0.841052137,-0.508251818,-0.644767654,0.218618097,-0.602864616,-1.472417841,-0.727074332,-0.607265975,-0.760972745,-1.408596868,-1.912966485,-0.542890629,-0.384214083,-0.622211364,-0.923683362,-0.268017906,-0.610717746,-0.34091358,-0.571420855,-1.40313789,0.50195609,-1.39665331,-0.794779462,-1.52121667,-0.982379117,-0.927575348,-0.788828037 +M07E,0.068165952,0.411625183,-0.295806345,0.115042239,-0.344419117,0.257713334,0.489750802,0.546258317,-0.655893179,-0.189851708,0.356881471,0.586785873,0.709596475,-0.786872436,0.171688373,0.037101269,0.431531397,0.022607191,,-0.549166051,-0.666179055,-0.265769078,-0.036973408,-0.077780901,-0.469094975,0.003876773,0.318636558,0.845524049,0.022543751,-0.394201313,1.10117842,0.246182236,-1.149424263,-1.106318113,-1.071692132,-0.246152224,0.12976328,0.222032892,,0.127505847,0.470502997,0.835734163 +L428,-0.414826097,-0.101770756,0.889168775,0.115417508,-0.417825677,0.265857406,0.096244886,-0.159357277,-0.420118807,-0.605184248,-0.372963977,-0.554817786,-0.384364154,-0.751821029,0.10005199,-0.711249991,-0.605986009,-1.291198553,0.380090319,-1.544619818,-1.716046149,-2.969130096,-0.65590484,-1.385736341,-1.606010007,-1.778724921,-0.871502719,-2.118138636,-1.301346669,-1.439918184,1.391643037,2.495069192,-1.675868719,-3.021900734,-2.149853425,-1.861929031,-1.218857933,-0.248448518,-0.060660366,-0.317982118,0.238861694,0.51835927 +MOLT16,0.018053483,-0.452086993,0.195864521,0.460387952,-0.216745753,0.043513596,-0.258560554,-0.475441348,0.378463117,0.39801586,0.400730167,0.407087456,0.030177197,0.609335885,-0.279410888,-0.198898935,0.406389791,0.195354168,0.855556943,0.47808909,-0.272643965,1.277086533,-0.10301037,0.384180429,-0.360958857,-1.150047449,-0.198657531,0.802153689,-0.018782339,-0.011056972,0.042876869,-0.072529184,0.551656413,-0.126013126,-0.967464369,0.857364662,-1.101521971,-0.205192551,-0.572390271,-0.090011336,-0.338378943,-0.188737432 +NB4,-0.551604364,-0.033335649,0.030511187,0.784258855,-0.431378062,0.161060565,-0.400699404,-2.001425632,0.045463469,0.863713396,0.567857433,0.555389556,-0.769454111,-0.151700289,-0.093346402,0.265837264,0.252185782,0.429204584,-7.871570203,-0.174593728,-0.59565964,0.301633719,-0.389054635,-0.399614878,-0.61854967,-0.935290905,-0.492956753,0.644742444,0.366999936,-0.631368508,1.1007282,0.577442834,0.016299885,0.29286863,-0.525159368,1.433803259,-0.190482139,-0.053246075,-0.26852462,0.182537725,-0.293386294,-0.51018557 +LCLC97TM1,0.050433102,-0.276645156,-0.063902615,-0.121331191,-0.273231603,-0.195354015,-0.102908881,0.655281047,0.065713601,-0.0804513,-0.025020567,0.238539366,0.341668131,0.30196459,-0.288212004,-0.670739015,0.024777562,-0.15738256,,0.949777957,0.263342274,-0.095384112,0.018098329,0.583454355,0.277057447,0.356419387,0.202289961,-0.011084229,0.180242052,0.184311128,-0.728457688,-0.299673963,0,0.144673456,0.122898015,0.002300444,0.198784228,-0.051202879,,0.118978796,-0.371715884,-0.600056093 +2313287,0.142696733,-0.146872544,-0.094702794,0.291189213,0.446693712,0.380964098,0.013045485,-0.155299978,0.958635933,0.467060726,0.480087255,0.263923167,-0.304383451,1.219046444,0.05258695,0.446614422,0.497017211,0.267310917,1.436303694,0.342392003,0.805865485,0.782846928,0.508982511,0.075950127,0.724653114,0.586402692,-0.190720077,-0.107301888,0.56582037,0.417898883,0.060543012,0.315845509,0.815992511,1.094269101,0.867294846,0.551033691,-0.34271115,0.164600456,0.252103943,0.127840817,0.126071681,0.872088187 +BHT101,0.126429851,-0.012077969,-0.517637468,0.673167067,0.645950925,0.245760465,0.093530438,0.364278714,0.636785842,0.070937843,0.139159839,-0.100563586,0.130199942,0.389806742,0.401772529,-0.197911777,0.283662549,-0.132386554,4.992682646,0.268748069,0.352519575,0.53133921,0.525604311,0.511812192,0.429809443,0.14278757,0.924976749,0.867534358,-0.277452293,-0.143830315,0.930199519,0.257177849,0.294061095,1.22683932,0.691832385,0.370267389,0.230169438,0.50884262,-0.270256007,0.429935357,0.285937128,0.748835673 +JVM2,-0.013618972,0.142626329,0.808152684,0.088745461,0.323299852,-0.194603189,-0.181593383,-0.214431851,1.043307672,0.601490499,0.310229976,0.24678893,-0.414243852,1.306867159,-0.063464554,0.143828489,0.265848827,0.541756783,,1.030847255,0.395019946,0.493174688,0.844989883,0.445745307,-0.326920278,-0.811731022,-0.368787604,0.225168413,-0.308992419,-0.814979829,0.466241706,0.050922523,0.412056827,0.054478972,1.171037112,1.398423292,-1.07794865,-0.160533551,,0.022643609,-0.133895669,0.268145041 +CAL51,0.247190215,-0.724900461,-0.844204198,-1.063467998,-0.140854019,-0.123967879,-0.30810301,0.00923966,0.62520065,0.414688617,0.135597548,0.178447568,-0.249906947,0.186967455,-0.349456845,-0.225590712,0.176777298,0.299726711,-2.096643819,1.544729556,0.572110719,0.106166488,0.535329838,0.741247932,0.282494851,-0.386076985,0.243994633,0.671723911,-0.495731422,-0.813368268,0.437691906,-0.114495749,1.205949937,0.343745403,0.33304473,0.963429788,-0.478755145,-0.061932208,0.064312285,-0.611285357,-1.604072276,-0.214915003 +L363,0.263988347,-0.121180175,0.741210133,0.445059884,1.159382467,0.579755465,-0.032193646,-0.546530251,0.393859026,1.099726458,0.422446326,-0.129692426,-0.493805662,0.160411942,0.095289925,0.22496318,0.484410382,0.326596673,0.942185553,0.386770289,0.053490538,1.065860871,0.705101453,0.349608782,-0.018508415,0.095238365,0.069552563,0.938239563,0.152458186,-0.323691587,1.027182165,0.374328056,0.45391035,0.012635048,-0.156261012,0.621842134,0.257158965,0.316006972,0.343152558,0.199513296,0.097652112,-0.466712754 +KMH2,-0.142588351,0.143391296,0.832993137,0.018110839,-0.442292846,-0.128699555,0.174849026,-0.234528248,-0.498547438,-0.444835946,-0.096843714,0.234430891,0.014625377,-0.06509308,-0.179068572,0.417773036,-0.015350893,0.372249725,1.470734042,-0.928146603,-0.428210201,-0.307908804,-0.044084775,-0.911723848,-0.451449947,-0.184739467,0.345146062,0.305309814,-0.178092992,-0.296675949,0.902579952,0.455747021,-0.015337059,0.157322018,0.004318703,0.007609739,-0.855264805,-0.204343976,-0.076894227,-0.216991913,-0.103428102,-0.154676125 +SIMA,0.200844374,0.236202191,-0.379243285,0.92970652,-0.703494759,-0.466612411,0.115585909,-0.503454682,0.610514139,0.93108634,1.051650883,1.076918836,0.559188515,1.632034301,-0.192026815,0.698080193,0.792135422,1.552876881,,0.543142842,0.80946521,0.856940842,0.324358831,0.097776536,0.551990613,0.871128169,0.096010184,-0.213788451,-0.232714003,-0.420167065,-0.330933746,-1.080313021,1.249721608,2.292555897,2.300136691,1.60967823,-0.006480076,-0.002246283,,-0.046266759,-0.20568814,-1.006285803 +NUDUL1,0.053266124,-1.1631122,-0.694549436,0.311602777,-1.031057208,-1.055959546,0.032980008,0.77700058,-0.64857584,-0.753888065,-0.394636456,0.475587154,1.159032542,-0.297760909,-0.265621606,0.800624075,0.427216107,0.841208901,,-0.252516407,-0.452591067,-0.595615656,-0.837381586,-0.219845854,-0.44301638,-0.496040124,-0.207205699,0.14011016,0.246752542,0.036947799,0.009464144,0.347290015,1.215279975,0.891218216,0.375532507,-0.102785294,-0.304066573,-0.154889631,,-0.163465157,-0.123112442,-0.41082418 +SUDHL6,0.032097839,-1.277721588,-0.533121894,-0.572077938,0.000438485,-0.097599403,-0.262869138,-1.087045427,-0.153296693,0.543291154,0.383620783,0.177157642,-0.337227067,0.128127523,-0.008022542,-0.742875068,0.225194713,-0.581144053,1.597994022,-0.126532066,-0.076170911,1.193703074,0.304800737,-0.282536232,-0.60843289,-0.666155345,-0.529046903,-1.376718525,-1.570832019,-1.761224789,1.519831738,2.006047541,0.286906094,-0.117444197,-0.577647455,0.11108396,-0.120907531,-0.224456726,-0.158476693,-0.037078383,-0.257815283,-0.106332617 +KARPAS620,-0.063082177,-0.031197455,0.22408569,-0.158616537,0.223716853,-0.16563751,-0.015124271,0.689836796,-0.654384746,-0.176751742,-0.697045873,-0.47687116,0.335281573,-1.167675158,-0.095824276,0.062801952,-0.202507249,-0.076043905,,0.545717667,-0.210740919,-0.974331358,-0.425146663,0.698580068,-0.254379735,-1.11205044,-0.124919725,0.787050765,0.095191531,-0.632795517,0.189779539,0.204393726,0.83801781,-0.535688995,-1.01403928,-0.706054011,-0.162550897,-0.151968949,,-0.141504868,-0.22486087,-0.54117139 +REC1,0.151815782,-0.315067195,-0.648377822,0.193388188,0.359877827,-0.053571293,0.250488778,-0.128719357,0.462127935,0.204292593,0.156996872,0.188984384,-0.070791241,0.158418932,0.046322204,0.016622963,-0.004976417,0.246373822,,0.132393656,-1.063502261,-1.181278185,-0.561332494,0.358248036,-0.746174035,-0.906391017,-0.067188872,0.559748899,-0.0848392,-0.976616863,0.911206963,0.395925809,-0.031169712,-0.644442089,-0.627304885,-0.49281312,-0.189030452,-0.121792128,,-0.070342194,-0.514645121,-0.923503505 +OCIM1,0.535113901,0.302634878,0.793559562,0.302843315,0.014785123,-0.242121007,0.693036936,-0.284141338,0.111548639,0.591387182,0.65761617,0.700631739,0.477719238,0.49290769,0.080173963,0.275669563,1.26350217,1.20033392,,0.414722965,0.38765719,0.190843528,0.021379971,0.666596196,0.312228511,-0.136442093,-0.002726631,0.954650454,0.168181723,-0.018634403,0.904943022,0.611341179,1.678825378,0.836397342,0.318275376,0.251391913,-0.319678567,0.352402377,,0.337420739,0.337264043,0.396067595 +MEC1,-0.069910699,-0.600114011,0.05660096,0,-0.228032626,-0.307287376,-0.260070224,-0.117834287,-0.26645812,0.119724812,0.080859732,0.343488794,0.210113442,0.176738166,-0.299098982,-0.28232189,-0.05880035,-0.119943033,,-0.774612514,-0.732168626,-0.7495112,-0.362970333,-0.525087307,-0.29669666,-0.209948142,-0.224694172,-0.114364161,-0.229553873,-0.072228857,0.031834296,0.401819304,-0.686349759,-0.425013155,-0.293706434,-0.310669977,-1.378604252,-0.295961687,,-0.039042623,-0.216483049,0.004237132 +SIGM5,0.266903352,-0.908537452,-0.205489237,0.311560207,0.189432479,-0.048418968,0.259876577,-0.023442,-0.737695964,0.257051892,0.300193009,0.578219623,0.381700817,-0.942998824,0.116132551,-0.555242411,0.445180445,-0.541757824,,0.140480679,0.467162996,0.107386535,0.242122623,0.239292954,0.339132666,0.41003582,0.240894469,0.434107905,0.547980858,0.103448739,0.386415197,0.279370815,-0.370018653,-0.333971961,-0.757000235,-0.574213997,-0.111098365,0.267304498,,0.094266998,-0.164996924,-0.589072677 +SUDHL5,0.130091937,-0.713964122,0.121964925,0.253026603,0.715449786,0.301258078,0.192954955,0.209046538,-0.264370657,-0.566674028,-0.84438745,-0.925269962,-0.412461162,-1.168273928,-0.124048229,-1.109010263,-0.530404439,-1.531493264,,0.615253543,-0.360598587,-0.794791253,-0.081229442,0.826791692,-0.406597302,-0.568287911,-0.366559143,0.803821752,-0.230051458,-0.827591146,0.528513378,0.232225445,-0.815934068,-2.094891025,-1.712324593,-1.519925233,-0.252475649,0.030764838,-0.006236748,0.123002401,-0.257032663,-0.629507508 +BCPAP,-0.181361048,0.15172902,0.181113144,-0.02501148,0.75127239,-0.212445344,-0.621708259,-0.85045891,0.457249778,-0.251749876,-0.659773115,-0.835060861,-1.366495985,0.636999049,-0.212957521,-0.13225878,-0.390300766,0.122745361,2.446373226,0.956931674,1.371543841,0.729910462,0.106285831,0.346038219,0.714801074,-0.417588755,-0.288192656,-0.712096808,-0.563602202,-0.562374195,-1.539043836,-1.558971862,0.701251605,1.24925274,0.844435499,0.546898365,0.503350545,-0.385277797,-0.813283381,-0.155559468,-0.585496545,-0.489333861 +CL11,0.000643415,-0.156714426,0.048808809,,0.705088983,0.136023463,-0.002147175,0.275016509,0.392918166,0.049678064,0.169983462,-0.17916674,-0.133761446,0.325234775,-0.05579657,0.079813842,0.212034062,0.142037169,-2.252562998,0.172651627,-0.318328536,-0.36350929,-0.280090371,0.233206238,-0.123628706,-0.182068352,-0.136924656,0.414217112,0.118783745,-0.177573873,0.628872962,0.252653554,-0.332012272,-0.556910236,-0.652932387,-0.533556707,0.544123135,-0.103828756,-8.622294199,-0.064807313,-0.500522813,-1.875892473 +TT2609C02,-0.138839812,-0.183811252,0.267912024,-0.47040434,-0.985931087,-0.456247685,-0.046768393,-0.024114153,-1.246643205,-0.430839468,-0.198050795,0.561327023,0.573633871,-0.247628065,-0.071626063,-0.165252717,-0.465682169,-0.245523621,,-0.237458859,0.025105814,0.10425109,-0.179407398,-0.185462023,-0.143967225,-0.203529869,-0.361275464,-0.286817548,-0.257989099,-0.016966688,-0.072115732,-0.48222205,-0.07687889,,0.20715257,0.345514207,-0.730341001,0.00365661,,-0.120569855,-0.202509666,-0.032773133 +CL34,-0.102001877,-0.412790785,-0.565193056,1.163787171,0.457615687,-0.351228046,-0.714876594,-0.415070794,0.397934444,0.601850048,0.400531328,-0.370028673,-0.524904717,0.537065,-0.061271999,-0.063429004,0.034463795,-0.204659822,-0.12703665,0.488046485,-0.024657112,-0.428986298,0.420267329,0.376181276,-0.221081447,-0.079320138,-0.002768698,0.316320785,0.008025428,-0.402697842,-0.341402705,-0.103617386,-0.123245539,-0.067039962,-0.455581177,-0.050572074,-1.089995511,-0.143341552,-0.17336339,-0.3540304,-0.097027804,0.377668662 +RCHACV,-0.050026313,-0.057058301,-0.335242036,0.209336784,-0.55477658,-0.377777214,-0.538777616,-0.266053986,-0.949832796,-0.26105147,0.123051349,0.511624728,0.832571133,-0.67672226,-0.168021368,0.300818115,0.102679325,0.261847742,0.165527988,-0.859601756,0.92564709,2.558952766,0.111033691,-1.596442332,0.324776386,2.145392061,-0.372967544,-2.659577879,-1.390935097,0.665953693,-3.327902555,-2.690425984,-0.326602868,0.891428948,1.308493322,-0.164694796,-0.63018469,-0.188672734,0.295075617,-0.144229385,-0.324090545,-0.629132829 +CAL120,0.471156229,0.083043236,0.267316747,-4.795348793,0.056711759,0.285179714,0.361133167,0.402037894,-0.025750275,-0.040425488,0.055836059,0.175612801,0.288568682,0.041595215,0.699643581,-0.506197608,-0.170883265,0.235686127,-2.632029134,0.834225086,0.877559782,0.84995856,0.615209878,0.847757928,0.250735269,0.815447264,0.305336484,-0.134067585,0.182611538,0.37366952,-0.658380506,-0.060061931,-0.847262588,0.20137729,-0.432985118,-0.721774577,0.03125602,0.128934888,-1.677065936,0.424888793,0.742751997,-0.428596755 +RH18,-0.050137057,0.267190146,-0.093300766,-0.39707362,0.227069657,0.094867439,0.16471587,0.167388822,-1.182166881,-0.217373541,-0.38872391,-0.530958939,-0.443011601,-1.14581493,0.162935595,-0.019666597,-0.774587792,-0.068092506,,-0.498604296,-0.999221286,-1.02298465,-0.943993047,-0.055659762,-0.737443357,-1.019084825,-0.119988952,-0.113624685,-0.046698905,-0.151018669,0.339886408,0.938227183,-0.834642548,-1.081495755,-0.467503427,-0.795157615,-0.568706098,-0.063357124,,-0.064858042,0.327676823,0.406292454 +MOLM16,-0.292007308,0.273568749,0.072319326,-2.079366912,0.016126925,0.219239096,0.594840775,-0.78467321,-0.749642774,0.155678778,0.071203631,0.117736371,-0.439764676,-0.696643461,0.309851213,-0.616963454,0.100949006,-0.439928433,1.663557543,-0.180182916,-0.620075509,-1.022055234,-0.673288722,-0.20901541,-0.540655938,-0.037523086,-0.648149801,0.983459742,-0.053764001,-0.172819188,0.649511246,0.412171721,-0.514683989,-0.785739741,-1.243004072,-0.210033661,-0.019766607,-0.12630101,0.611346846,-0.20777909,0.17118687,0.179483284 +F36P,0.388222396,0.588701093,0.789485983,,0.286051615,0.143665928,-0.490903675,-0.823971244,0.827491683,0.667977133,0.666519938,0.129649203,0.021114375,0.874173449,-1.036987096,0.298773002,0.692596415,1.242063347,-0.758031064,0.096673247,-0.234110901,-0.442391587,0.205015315,0.437438697,-0.404426991,0.043676766,1.052629007,0.717073603,-0.314752102,-1.438193304,0.350361279,-0.778378721,0.577973575,-0.035579297,-0.027797538,0.036237023,-0.816840737,-0.006710761,-0.047768687,-0.029273725,-0.036649533,-0.14708716 +EJM,-0.754500116,-0.680383949,0.152891518,-0.858605468,-0.08060287,-0.389594383,0.222492408,-0.263088011,-0.379035173,-0.909553173,-1.267031046,-0.6236143,-0.52268067,-0.668946467,-0.124327523,-0.600560963,-0.150126933,-0.719729362,-1.807698044,0.014524169,-0.34690979,-0.465280041,-1.303231349,0.439432458,-0.187915714,-0.276314656,-1.104160825,0.64450987,-0.186909059,-0.361022368,0.039500358,-0.108232793,-0.631322863,-0.742521794,-1.149966149,-1.998510506,0.156600547,-0.133084024,-0.103873115,-0.094494958,-0.387380221,-0.656802701 +WSUDLCL2,0.397268811,-0.412525094,0.160767999,0.249516814,0.784612886,0.381123331,-0.301253838,-0.383976951,1.189278559,0.928405342,0.44821761,0.102799565,0.017849356,1.153077262,0.103609554,0.604083925,0.480540552,0.528888723,,1.137574369,0.287417924,0.599667039,0.865362537,1.0044618,-0.360318112,-1.087611737,-0.195253389,-1.328100597,-2.022189039,-1.858668066,2.258696857,1.607544175,2.029756662,1.280511923,0.647549386,2.082763377,0.47179617,0.204204759,0.139517166,0.162233819,-0.142891181,-0.000457316 +JIMT1,-0.200399401,0.358340746,0.572224186,0.350545464,-0.310538932,-0.402184887,-0.303739572,0.329278003,0.364928992,0.007801778,-0.281273375,-0.207349278,-0.047575031,0.227424031,0.123306038,-0.080235919,0.611240333,0.676217732,0.992369089,-0.759402575,-0.934564194,-0.485093784,-0.437285859,-0.959541995,-0.63638428,-0.252171025,0.067234488,0.020591939,0.037694753,-0.153559779,0.568125966,0.316822154,0.564366027,0.389445475,0.336498366,0.37013733,-0.665851977,-0.339397344,-0.276372094,-0.211002374,0.339065573,0.510448574 +ML1,-1.871356368,0.604553716,0.247240238,-0.432421494,-0.581466935,-0.232621654,0.044990426,0.377288394,-0.510474426,-0.215801144,0.138108752,0.291971641,0.715401784,-0.226374009,0.01790874,0.186787871,-0.321265799,0.494136292,0.075221559,-0.933007359,-0.570957895,2.002113797,0.126870135,-0.18898389,-0.21212374,0.954507428,-0.300588226,0.214480618,0.416948638,0.068224455,-0.279544694,0.137364688,-0.754879791,-0.507386532,0.389309818,0.159333536,0.635823037,-0.059878706,0.859263601,0.092872952,-0.00149333,0.189375765 +AMO1,-0.042222585,0.000679956,0.293684804,0.004917032,0.321636363,0.044908728,-0.057405288,-0.074798512,-0.870225998,0.205575312,0.091244487,-0.017575362,0.083621107,-0.580162484,0.176514055,-0.370232632,0.013147502,-0.74670574,-0.543901859,-0.046503154,0.295373445,-0.007494649,-0.147891818,0.029775431,0.051349471,-0.320645917,-0.263905857,0.592768923,0.184535746,-0.470070749,0.759156653,0.673126805,0.03869599,-0.507402878,-0.883283473,-1.196692409,-0.906267868,0.024555764,0.095535048,0.059207339,-0.122445437,0.069567666 +MOLP8,0.110840003,0.032003396,0.378364914,0.100050146,0.691802938,-0.216797893,-0.339300675,0.142874221,0.817647125,0.438920028,-0.489867003,-0.567882632,-0.085393508,0.800625211,0.111656582,0.049108952,0.259255315,0.010489312,2.172945976,1.174474784,0.75666975,0.532754305,0.587644914,0.852483545,0.200241056,-0.092217093,-0.208375233,0.576067343,0.052902924,-0.454879966,0.617560438,0.253950461,0.339695121,0.188865832,-0.033747691,0.083630204,-0.429887714,0.031997504,0.319947243,0.127889071,-0.076156834,0.047621172 +JHUEM7,-0.150516742,-0.104983904,0.136585904,-0.727620909,0.250275728,0.512555702,0.324731573,-0.843085417,-0.398733207,-0.861083034,-0.578372473,-0.740937406,-1.034559836,-0.811842055,0.093309663,-0.789051651,-0.708779763,-1.291598097,-2.129143805,-0.235007421,-0.174977966,0.093213149,-0.563771422,-0.414532614,0.232855831,-0.03837127,-0.507746106,-0.159485577,0.261507927,0.69215157,-0.280399525,0.035323468,-0.308331624,-1.0925834,-0.133235353,-1.10866113,-0.052515075,-0.101494542,-0.30723646,0.006641828,0.205899621,0.452366779 +OE21,0.388678931,0.071890013,-0.158419981,0.01461256,0.284775414,0.182695579,0.632831654,-0.837018781,0.004066561,0.068991237,0.275364301,0.346706074,0.317146693,-0.047162643,0.270933402,0.423320484,-0.285449833,-0.039871186,,0.071509632,0.330936971,-0.134612808,0.341124405,0.197918716,0.094253292,-0.175953844,0.31718911,0.374460883,0.041823134,0.00308816,0.1897602,0.591244848,0.682899431,-0.204362384,0.003461982,-0.022484257,0.852291871,0.350170439,,0.16637496,0.226402558,0.412668092 +NCIH2073,-0.155037803,-0.109858749,-0.706829219,-0.751667414,0.005013248,0.101280151,-0.114366708,0.003536763,-0.855679468,-0.610314476,-0.528898135,-0.208498137,0.162414965,-1.358602192,-0.063344006,-0.448191642,-0.586733506,-0.701469833,8.545099958,0.674961533,0.060094953,0.632825974,-0.276282873,0.290426047,0.042951638,-0.256536177,0.521434945,0.005051058,0.113290807,0.742445562,-0.132651403,0.623008903,-0.53712041,-1.438079154,-0.840411403,0.423969367,0.865168378,0.327411776,0.156407459,0.553079359,0.45269112,0.615356798 +MOLT3,-0.058256744,-0.66748979,-0.287479091,0.64950819,0.101182729,-0.171201143,-0.383022678,-0.834597735,0.448975197,0.728765801,0.869392102,0.341562052,-0.294161418,0.949838143,-0.221663551,-0.74508914,0.394565992,-0.200614074,,-0.590026335,-0.549317316,-0.869474608,-0.863743778,-0.617594466,-0.44694873,-0.393163386,-0.096384733,0.166397759,0.039589249,-0.124048515,0.796380459,0.801890434,-0.575081923,-1.329145927,-0.866655083,-0.838083116,-0.999538477,-0.084169283,,-0.131873542,-0.286030728,-0.4885942 +OVCAR5,0.367180256,1.028717736,0.47431481,0.720494738,-0.11347985,-0.1034334,-0.085341984,-0.212872196,-0.315856432,1.198206656,1.010456808,0.792661247,0.454685555,0.328655862,0.144466813,2.872469759,-0.231496862,2.86882352,,0.367834269,0.329572908,0.44531914,0.332244272,-0.02751681,0.230065695,0.429084182,0.311798229,-0.362959673,0.434392664,0.794391625,-0.621964475,0.141561584,2.638993387,3.001816378,3.109391715,3.350338207,0.182984437,0.315436158,,0.286392202,0.356293068,0.303924707 +UO31,0.381281004,0.042234871,0.228576861,0.069893545,0.284073336,0.438560501,0.287006346,0.587524968,-0.250784852,0.069498544,0.018996487,-0.034462045,0.031281712,-0.044323401,0.82099413,0.028925715,0.679911255,-0.055883937,,0.742759864,0.402631388,0.615154336,0.512906273,0.485421632,0.468850911,0.482133403,0.62910594,0.184114487,0.47548932,0.531084133,0.213516005,0.268288966,-0.011293738,,0.399330173,0.881145841,0.116451276,0.559154366,,0.339637435,0.167436588,-0.089490261 +SF539,-0.393441907,-0.367223556,-0.195009521,-0.03004628,-0.058883276,-0.159023425,0.254073873,-0.46258703,-0.464304831,-0.214061743,-0.218782093,-0.425579275,-0.489990404,-0.862587772,0.200354619,-0.425050841,-0.513276861,-0.541446848,,-0.171402841,0.569131142,0.938427891,-0.432846027,-0.151500232,0.384575917,0.471725665,-0.009379942,-0.344483056,-0.257985299,0.076363883,-0.184419944,-0.426576691,-0.190675932,0.532843345,0.503420742,-0.210377191,-0.373949308,-0.132877072,,-0.155644274,-0.082643026,-0.264723014 +SNB75,0.043758005,0.227318398,0.092529234,-0.063035026,-0.567856744,-0.258962954,0.409938603,0.350426817,-0.295516246,-0.232001129,-0.032060358,0.833007759,0.673252176,0.11113696,0.039917293,0.265186118,0.103494455,0.228789717,,0.04658262,-0.044579229,0.256883151,0.120893769,-0.259561069,-0.159143473,-0.132821794,-0.334564358,-0.091829381,0.081030199,0.376376255,0.426700008,0.516975141,-0.118271745,,0.047749495,0,-1.584702755,0.113183531,,0.154640131,0.161031799,0.281635093 diff --git a/src/python/EDA/LASSO.ipynb b/src/python/EDA/LASSO.ipynb new file mode 100644 index 0000000..9c449ac --- /dev/null +++ b/src/python/EDA/LASSO.ipynb @@ -0,0 +1,155896 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn import linear_model\n", + "from scipy.stats import pearsonr\n", + "from sklearn.metrics import mean_squared_error\n", + "from sklearn.metrics import mean_absolute_error\n", + "from sklearn.model_selection import KFold\n", + "from sklearn.linear_model import LassoCV\n", + "from sklearn.linear_model import MultiTaskLassoCV\n", + "from yellowbrick.datasets import load_concrete\n", + "from yellowbrick.regressor import AlphaSelection\n", + "from yellowbrick.regressor.alphas import alphas\n", + "\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Merge datasets based on cancer cell line name;\n", + "### concatenate the two dataframes and match based on cancer cell lines; \n", + "### save them into two new dataframes- MET and GCP; \n", + "### split GCP and MET into train and test set respectively.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(259, 42)\n", + "(259, 225)\n", + "(604, 42)\n", + "225\n" + ] + } + ], + "source": [ + "md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name=\"All\")\n", + "mt = md.drop(['Tissue', 'Medium','Culture'], axis=1)\n", + "hm = pd.read_csv('GCP_proteomics_remapped.csv')\n", + "merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line')\n", + "MET = merge_tb.iloc[:,1:226]\n", + "GCP = merge_tb.iloc[:,227:269]\n", + "\n", + "GCP = np.nan_to_num(GCP, nan=0)\n", + "MET = np.nan_to_num(MET, nan=0)\n", + "\n", + "Xtrain, Xtest, Ytrain, Ytest =train_test_split(GCP, MET, test_size=0.3, random_state=0)\n", + "print(Xtest.shape)\n", + "print(Ytest.shape)\n", + "print(Xtrain.shape)\n", + "print(Ytrain.shape[1])\n", + "\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tuning the alpha" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.29535576858546925, 0.3086718717777268, 0.30165608047685216, 0.2802928144020006, 0.3078989366913929, 0.2721896080318638, 0.2754615439847901, 0.30045833661849397, 0.30944776753819836, 0.30887479577318205, 0.30821000960686656, 0.29542288661628263, 0.3178345924931083, 0.30385532050845604, 0.2810695872641437, 0.32102750773106387]\n", + "0.1\n" + ] + } + ], + "source": [ + "\n", + "alphas = [10**-6, 10**-5,10**-4,10**-3,10**-2,10**-1,1,2,3,4,5,6,7,8,9,10]\n", + "\n", + "mdl = list()\n", + "error = list()\n", + "for i,a in enumerate(alphas):\n", + " for j in range(Ytrain.shape[1]):\n", + " x=linear_model.Lasso(alpha=a).fit(Xtrain, Ytrain[:, j])\n", + " mdl.append(x)\n", + " ypred = mdl[i].predict(Xtest)\n", + " error.append(mean_squared_error(ypred,Ytest[:, j]))\n", + "print(error)\n", + "minmse_index = error.index(min(error))\n", + "best_alpha = alphas[minmse_index]\n", + "print(best_alpha)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Fit train sets in Lasso with best alpha to generate models" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1)]\n", + "42\n" + ] + } + ], + "source": [ + "GCP2MET_models = []\n", + "for i in range(Ytrain.shape[1]):\n", + " mdl_G2M =linear_model.Lasso(alpha=best_alpha).fit(Xtrain, Ytrain[:, i])\n", + "# mdl_G2M =linear_model.Lasso(alpha=0.01).fit(Xtrain, Ytrain[:, i])\n", + " GCP2MET_models.append(mdl_G2M)\n", + "print(GCP2MET_models)\n", + "\n", + "\n", + "MET2GCP_models = []\n", + "\n", + "for j in range(Xtrain.shape[1]):\n", + " mdl_M2G = linear_model.Lasso(alpha=best_alpha).fit(Ytrain, Xtrain[:,j])\n", + " MET2GCP_models.append(mdl_M2G)\n", + "print(len(MET2GCP_models))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### To evaluate models and get correlation coefficient, pvalue, and mse value." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " GCP2MET_models\n", + "0 0.102515\n", + "1 0.103831\n", + "2 0.229669\n", + "3 0.117125\n", + "4 0.096677\n", + ".. ...\n", + "220 0.158821\n", + "221 0.175441\n", + "222 0.265369\n", + "223 0.336896\n", + "224 0.276710\n", + "\n", + "[225 rows x 1 columns]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + } + ], + "source": [ + "def evaluate_models(models, Xtest, Ytest):\n", + " \"\"\"\n", + " evaluate_models returns results from the model predictions, including the pearson\n", + " correlation coefficient, p-Values, and MSE.\n", + "\n", + " :param models: A list of scikit-learn model objects.\n", + " :param Xtest: A numpy array or pandas dataframe containing validation set input data.\n", + " :param Ytest: A numpy array or pandas dataframe containing validation set output data.\n", + " :return pred_resul: A dictionary containing the final MSE, pValue, or rValue.\n", + " \n", + " \"\"\"\n", + " \n", + " predictions = []\n", + " rValue = list()\n", + " pValue = list()\n", + " MSE = list()\n", + " for i in range(len(models)):\n", + " mdl = models[i]\n", + " Ypred = mdl.predict(Xtest)\n", + " predictions.append(Ypred) \n", + "\n", + " r, pvalue = pearsonr(Ypred, Ytest[:, i])\n", + " rValue.append(r)\n", + " pValue.append(pvalue)\n", + " \n", + " mse = mean_squared_error(Ypred, Ytest[:, i])\n", + " MSE.append(mse)\n", + "\n", + " df_MSE = pd.DataFrame(MSE)\n", + " df_pValue = pd.DataFrame(pValue)\n", + " df_rValue = pd.DataFrame(rValue)\n", + " \n", + " return df_MSE, df_pValue, df_rValue\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## GCP_to_MET\n", + "### perform 3-fold cross validation to find model that generate the smallest mse value." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mse1,p1,pearson1 = evaluate_models(GCP2MET_models, Xtest, Ytest)\n", + "mse1.columns = [\"GCP2MET_models\"]\n", + "print(mse1)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0 1 2 3 4 5 6 \\\n", + "mse1 0.090688 0.100590 0.319667 0.099910 0.095076 0.127956 0.042826 \n", + "mse2 0.109095 0.099824 0.319886 0.119748 0.096999 0.142412 0.036458 \n", + "mse3 0.093519 0.097830 0.257600 0.121908 0.088356 0.132511 0.037524 \n", + "\n", + " 7 8 9 ... 215 216 217 \\\n", + "mse1 0.072612 0.240407 0.099335 ... 0.139757 0.204598 0.196593 \n", + "mse2 0.065665 0.321116 0.104720 ... 0.099919 0.193543 0.179228 \n", + "mse3 0.065863 0.209724 0.092994 ... 0.121639 0.197970 0.180656 \n", + "\n", + " 218 219 220 221 222 223 224 \n", + "mse1 0.219824 0.166362 0.128087 0.163653 0.296058 0.345228 0.283334 \n", + "mse2 0.237738 0.191032 0.155435 0.185951 0.291920 0.367647 0.283155 \n", + "mse3 0.254368 0.198601 0.159200 0.197116 0.286553 0.322971 0.252365 \n", + "\n", + "[3 rows x 225 columns]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + } + ], + "source": [ + "kf = KFold(n_splits=3)\n", + "\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse_result = pd.DataFrame()\n", + "pvalue_result = pd.DataFrame()\n", + "rvalue_result = pd.DataFrame()\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + "# print(\"TRAIN:\", train_index, \"TEST:\", test_index)\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_GCP2MET_models = []\n", + " final_metrics = []\n", + " for i in range(y_train.shape[1]):\n", + " mdl_G2M = linear_model.Lasso(alpha=best_alpha).fit(X_train, y_train[:, i])\n", + "# mdl_G2M = linear_model.Lasso(alpha=0.01).fit(X_train, y_train[:, i])\n", + " v_GCP2MET_models.append(mdl_G2M)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_GCP2MET_models, X_test, y_test)\n", + " mse_result = pd.concat([mse_result,df_MSE],axis = 1)\n", + " pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + " rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "mse_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse_result = mse_result.T\n", + "print(mse_result) " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " GCP2MET_models v_GCP2MET_models\n", + "0 0.102515 0.090688\n", + "1 0.103831 0.097830\n", + "2 0.229669 0.257600\n", + "3 0.117125 0.099910\n", + "4 0.096677 0.088356\n", + ".. ... ...\n", + "220 0.158821 0.128087\n", + "221 0.175441 0.163653\n", + "222 0.265369 0.286553\n", + "223 0.336896 0.322971\n", + "224 0.276710 0.252365\n", + "\n", + "[225 rows x 2 columns]\n" + ] + } + ], + "source": [ + "minMSE = mse_result.idxmin()\n", + "# print(minMSE)\n", + "\n", + "mse_min = pd.DataFrame()\n", + "MSE_min = list()\n", + "for index in mse_result:\n", + " v = mse_result[index][minMSE[index]]\n", + " MSE_min.append(v)\n", + "# print(v)\n", + "mse_min = pd.DataFrame(MSE_min)\n", + "mse_min.columns = [\"v_GCP2MET_models\"]\n", + "# print(mse_min)\n", + "raw = mse1.join(mse_min)\n", + "print(raw)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Generate new list of model" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1)]\n" + ] + } + ], + "source": [ + "new_GCP2MET = list()\n", + "for index, row in raw.iterrows():\n", + " if row['GCP2MET_models'] < row['v_GCP2MET_models']:\n", + " \n", + " new_GCP2MET.append(GCP2MET_models[index])\n", + " else:\n", + " new_GCP2MET.append(v_GCP2MET_models[index])\n", + " \n", + " \n", + "print(new_GCP2MET)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Evaluate if the correlation coefficient generated with the list of best model is significant or not" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " GCP2MET_p GCP2MET_r GCP2MET_r_0.05\n", + "0 NaN NaN NaN\n", + "1 NaN NaN NaN\n", + "2 NaN NaN NaN\n", + "3 NaN NaN NaN\n", + "4 NaN NaN NaN\n", + ".. ... ... ...\n", + "220 NaN NaN NaN\n", + "221 NaN NaN NaN\n", + "222 NaN NaN NaN\n", + "223 NaN NaN NaN\n", + "224 NaN NaN NaN\n", + "\n", + "[225 rows x 3 columns]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + } + ], + "source": [ + "mse_G2M,p_G2M,pearson_G2M = evaluate_models(new_GCP2MET, Xtest, Ytest)\n", + "p_G2M.columns = [\"GCP2MET_p\"]\n", + "pearson_G2M.columns = [\"GCP2MET_r\"]\n", + "raw_G2M = p_G2M.join(pearson_G2M)\n", + "pearson_G2M.columns = [\"GCP2MET_r_0.05\"]\n", + "new_G2M = raw_G2M.join(pearson_G2M)\n", + "\n", + "for index, row in new_G2M.iterrows():\n", + " if row['GCP2MET_p'] >= 0.05:\n", + " row['GCP2MET_r_0.05'] = 'NaN'\n", + "\n", + "print(new_G2M) \n", + "new_G2M.to_csv('LASSO_G2M.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## MET TO GCP (repeat the same process above)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + } + ], + "source": [ + "mse2,p2,pearson2 = evaluate_models(MET2GCP_models, Ytest, Xtest)\n", + "mse2.columns = [\"MET2GCP_models\"]\n", + "\n", + "kf = KFold(n_splits=3)\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse2_result = pd.DataFrame()\n", + "# pvalue_result = pd.DataFrame()\n", + "# rvalue_result = pd.DataFrame()\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_MET2GCP_models = []\n", + " metrics = []\n", + " for i in range(X_train.shape[1]):\n", + " mdl_M2G = linear_model.Lasso(alpha=best_alpha).fit(y_train, X_train[:, i])\n", + " v_MET2GCP_models.append(mdl_M2G)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_MET2GCP_models, y_test, X_test)\n", + " mse2_result = pd.concat([mse2_result,df_MSE],axis = 1)\n", + "# pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + "# rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "mse2_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse2_result = mse2_result.T\n", + "# print(mse2_result) " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1), Lasso(alpha=0.1)]\n" + ] + } + ], + "source": [ + "minMSE2 = mse2_result.idxmin()\n", + "# print(minMSE)\n", + "\n", + "mse2_min = pd.DataFrame()\n", + "MSE2_min = list()\n", + "for index in mse2_result:\n", + " v = mse2_result[index][minMSE2[index]]\n", + " MSE2_min.append(v)\n", + "# print(v)\n", + "mse2_min = pd.DataFrame(MSE2_min)\n", + "mse2_min.columns = [\"v_MET2GCP_models\"]\n", + "# print(mse2_min)\n", + "raw2 = mse2.join(mse2_min)\n", + "\n", + "new_MET2GCP = list()\n", + "for index, row in raw2.iterrows():\n", + " if row['MET2GCP_models'] < row['v_MET2GCP_models']:\n", + " \n", + " new_MET2GCP.append(MET2GCP_models[index])\n", + " else:\n", + " new_MET2GCP.append(v_MET2GCP_models[index])\n", + " \n", + " \n", + "print(new_MET2GCP)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + " MET2GCP_p MET2GCP_r MET2GCP_r_0.05\n", + "0 NaN NaN NaN\n", + "1 7.056391e-01 0.023581 NaN\n", + "2 NaN NaN NaN\n", + "3 NaN NaN NaN\n", + "4 NaN NaN NaN\n", + "5 NaN NaN NaN\n", + "6 NaN NaN NaN\n", + "7 1.434600e-02 0.151991 0.151991\n", + "8 NaN NaN NaN\n", + "9 2.815549e-03 0.184906 0.184906\n", + "10 5.065424e-08 0.330614 0.330614\n", + "11 5.696340e-09 0.352025 0.352025\n", + "12 NaN NaN NaN\n", + "13 NaN NaN NaN\n", + "14 NaN NaN NaN\n", + "15 NaN NaN NaN\n", + "16 2.473313e-04 0.225875 0.225875\n", + "17 NaN NaN NaN\n", + "18 3.408210e-01 0.059423 NaN\n", + "19 3.898113e-02 0.128364 0.128364\n", + "20 NaN NaN NaN\n", + "21 NaN NaN NaN\n", + "22 NaN NaN NaN\n", + "23 NaN NaN NaN\n", + "24 NaN NaN NaN\n", + "25 NaN NaN NaN\n", + "26 1.916601e-01 0.081390 NaN\n", + "27 NaN NaN NaN\n", + "28 NaN NaN NaN\n", + "29 NaN NaN NaN\n", + "30 2.662581e-01 0.069331 NaN\n", + "31 NaN NaN NaN\n", + "32 NaN NaN NaN\n", + "33 NaN NaN NaN\n", + "34 NaN NaN NaN\n", + "35 NaN NaN NaN\n", + "36 NaN NaN NaN\n", + "37 NaN NaN NaN\n", + "38 4.753491e-01 0.044547 NaN\n", + "39 NaN NaN NaN\n", + "40 7.063988e-01 -0.023517 NaN\n", + "41 7.521105e-01 0.019720 NaN\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n", + "/Users/narnij/opt/anaconda3/lib/python3.8/site-packages/scipy/stats/stats.py:3845: PearsonRConstantInputWarning: An input array is constant; the correlation coefficent is not defined.\n", + " warnings.warn(PearsonRConstantInputWarning())\n" + ] + } + ], + "source": [ + "mse_M2G,p_M2G,pearson_M2G = evaluate_models(new_MET2GCP, Ytest, Xtest)\n", + "p_M2G.columns = [\"MET2GCP_p\"]\n", + "pearson_M2G.columns = [\"MET2GCP_r\"]\n", + "raw_M2G = p_M2G.join(pearson_M2G)\n", + "pearson_M2G.columns = [\"MET2GCP_r_0.05\"]\n", + "new_M2G = raw_M2G.join(pearson_M2G)\n", + "\n", + "for index, row in new_M2G.iterrows():\n", + " if row['MET2GCP_p'] >= 0.05:\n", + " row['MET2GCP_r_0.05'] = 'NaN'\n", + "\n", + "print(new_M2G) \n", + "new_M2G.to_csv('LASSO_M2G.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/src/python/EDA/LASSO_correlation.ipynb b/src/python/EDA/LASSO_correlation.ipynb new file mode 100644 index 0000000..258de86 --- /dev/null +++ b/src/python/EDA/LASSO_correlation.ipynb @@ -0,0 +1,10346 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn import linear_model\n", + "from scipy.stats import pearsonr\n", + "from sklearn.metrics import mean_squared_error\n", + "from sklearn.metrics import mean_absolute_error\n", + "from sklearn.model_selection import KFold\n", + "from sklearn.linear_model import LassoCV\n", + "from sklearn.linear_model import MultiTaskLassoCV\n", + "from yellowbrick.datasets import load_concrete\n", + "from yellowbrick.regressor import AlphaSelection\n", + "from yellowbrick.regressor.alphas import alphas\n", + "from heapq import nsmallest\n", + "import sys\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Merge datasets based on cancer cell line name;\n", + "### concatenate the two dataframes and match based on cancer cell lines; \n", + "### save them into two new dataframes- MET and GCP; \n", + "### split GCP and MET into train and test set respectively.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(604,)\n", + "(604,)\n" + ] + } + ], + "source": [ + "md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name=\"All\")\n", + "mt = md.drop(['Tissue', 'Medium','Culture'], axis=1)\n", + "hm = pd.read_csv('GCP_proteomics_remapped.csv')\n", + "merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line')\n", + "MET = merge_tb.iloc[:,1:226]\n", + "GCP = merge_tb.iloc[:,227:269]\n", + "\n", + "metab = MET.columns\n", + "metab_name = pd.DataFrame(metab)\n", + "his = GCP.columns\n", + "his_name = pd.DataFrame(his)\n", + "\n", + "GCP = np.nan_to_num(GCP, nan=0)\n", + "MET = np.nan_to_num(MET, nan=0)\n", + "\n", + "Xtrain, Xtest, Ytrain, Ytest =train_test_split(GCP, MET, test_size=0.3, random_state=0)\n", + "# print(Xtest.shape)\n", + "# print(Ytest.shape)\n", + "# print(Xtrain.shape)\n", + "# print(Ytrain.shape)\n", + "\n", + "x = Xtrain[:,1]\n", + "print(x.shape)\n", + "y = Ytrain[:,50]\n", + "print(y.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Tuning the alpha" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# alphas = [10**-6, 10**-5,10**-4,10**-3,10**-2,10**-1,1,2,3,4,5,6,7,8,9,10]\n", + "# min_mses_G2M = []\n", + "# best_alpha_G2M = []\n", + "# for j in range(Ytrain.shape[1]):\n", + "# min_mses = sys.maxsize\n", + "# alpha_value = 100\n", + "# for i,a in enumerate(alphas):\n", + "# x = linear_model.Lasso(alpha=a, max_iter=10000, tol=0.0001).fit(Xtrain, Ytrain[:, j])\n", + "# ypred = x.predict(Xtest)\n", + "# mse = mean_squared_error(ypred,Ytest[:, j])\n", + "# if mse < min_mses:\n", + "# min_mses = mse\n", + "# alpha_value = a\n", + "# min_mses_G2M.append(min_mses)\n", + "# best_alpha_G2M.append(alpha_value)\n", + "# print(best_alpha_G2M)\n", + "\n", + "# min_mses_M2G = []\n", + "# best_alpha_M2G = []\n", + "# for k in range(Xtrain.shape[1]):\n", + "# min_mses = sys.maxsize\n", + "# alpha_value = 100\n", + "# for i,a in enumerate(alphas):\n", + "# x = linear_model.Lasso(alpha=a,max_iter=10000, tol=0.0001).fit(Ytrain, Xtrain[:, k])\n", + "# xpred = x.predict(Ytest)\n", + "# mse = mean_squared_error(xpred,Xtest[:, k])\n", + "# if mse < min_mses:\n", + "# min_mses = mse\n", + "# alpha_value = a\n", + "# min_mses_M2G.append(min_mses)\n", + "# best_alpha_M2G.append(alpha_value)\n", + "# print(best_alpha_M2G)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1.e-02 1.e-02 1.e-06 ... 1.e-02 1.e-02 1.e-02]\n", + " [1.e-02 1.e-02 1.e-06 ... 1.e-06 1.e-03 1.e-02]\n", + " [1.e-06 1.e-01 1.e-06 ... 1.e-01 1.e-06 1.e-01]\n", + " ...\n", + " [1.e-03 1.e-03 1.e-03 ... 1.e-02 1.e-01 1.e-01]\n", + " [1.e-02 1.e-03 1.e-03 ... 1.e-02 1.e-01 1.e-01]\n", + " [1.e-02 1.e-02 1.e-06 ... 1.e-06 1.e-01 1.e-01]]\n" + ] + } + ], + "source": [ + "alphas = [10**-6, 10**-5,10**-4,10**-3,10**-2,10**-1,1,2,3,4,5,6,7,8,9,10]\n", + "min_mses_G2M = []\n", + "best_alpha_G2M = np.zeros([42, 225])\n", + "for k in range(Xtrain.shape[1]):\n", + " for j in range(Ytrain.shape[1]):\n", + " min_mses = sys.maxsize\n", + " alpha_value = 100\n", + " for i,a in enumerate(alphas):\n", + " x = linear_model.Lasso(alpha=a, max_iter=10000, tol=0.0001).fit(Xtrain[:,k].reshape(-1,1), Ytrain[:, j])\n", + " ypred = x.predict(Xtest[:,k].reshape(-1,1))\n", + " mse = mean_squared_error(Ytest[:, j], ypred)\n", + " if mse < min_mses:\n", + " min_mses = mse\n", + " alpha_value = a\n", + " else:\n", + " alpha_value = alpha_value\n", + " min_mses_G2M.append(min_mses)\n", + " best_alpha_G2M[k,j] = alpha_value\n", + "print(best_alpha_G2M.shape)\n", + "\n", + "min_mses_M2G = []\n", + "best_alpha_M2G = np.zeros([225, 42]) \n", + "for j in range(Ytrain.shape[1]):\n", + " for k in range(Xtrain.shape[1]):\n", + " min_mses = sys.maxsize\n", + " alpha_value = 100\n", + " for i,a in enumerate(alphas):\n", + " x = linear_model.Lasso(alpha=a,max_iter=10000, tol=0.0001).fit(Ytrain[:,j].reshape(-1,1), Xtrain[:, k])\n", + " xpred = x.predict(Ytest[:,j].reshape(-1,1))\n", + " mse = mean_squared_error(Xtest[:, k], xpred)\n", + " if mse < min_mses:\n", + " min_mses = mse\n", + " alpha_value = a\n", + " else:\n", + " alpha_value = alpha_value\n", + " min_mses_M2G.append(min_mses)\n", + " best_alpha_M2G[j,k] = alpha_value\n", + "print(best_alpha_M2G)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Fit train sets in Lasso with best alpha to generate models" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(42, 225)\n", + " 0 1 \\\n", + "0 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "1 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "2 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "3 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "4 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "222 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "223 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "224 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "\n", + " 2 3 \\\n", + "0 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "1 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "2 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "3 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "4 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "222 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "223 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "224 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "\n", + " 4 5 \\\n", + "0 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "1 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "2 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "3 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "4 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "221 Lasso(alpha=0.0001, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "222 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "223 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "224 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "\n", + " 6 7 \\\n", + "0 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "1 Lasso(alpha=0.0001, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "2 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "3 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "4 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "221 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "222 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "223 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "224 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "\n", + " 8 9 \\\n", + "0 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "1 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "2 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "3 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "4 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "222 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "223 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "224 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "\n", + " ... 32 \\\n", + "0 ... Lasso(alpha=0.01, max_iter=10000) \n", + "1 ... Lasso(alpha=1e-06, max_iter=10000) \n", + "2 ... Lasso(alpha=1e-06, max_iter=10000) \n", + "3 ... Lasso(alpha=0.1, max_iter=10000) \n", + "4 ... Lasso(alpha=0.01, max_iter=10000) \n", + ".. ... ... \n", + "220 ... Lasso(alpha=1e-06, max_iter=10000) \n", + "221 ... Lasso(alpha=0.1, max_iter=10000) \n", + "222 ... Lasso(alpha=0.1, max_iter=10000) \n", + "223 ... Lasso(alpha=0.1, max_iter=10000) \n", + "224 ... Lasso(alpha=0.01, max_iter=10000) \n", + "\n", + " 33 34 \\\n", + "0 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "1 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "2 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "3 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "4 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "222 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "223 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "224 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "\n", + " 35 36 \\\n", + "0 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "1 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.0001, max_iter=10000) \n", + "2 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "3 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "4 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "222 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "223 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "224 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "\n", + " 37 38 \\\n", + "0 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "1 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "2 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "3 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "4 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "222 Lasso(alpha=0.001, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "223 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "224 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "\n", + " 39 40 \\\n", + "0 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "1 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.001, max_iter=10000) \n", + "2 Lasso(alpha=0.1, max_iter=10000) Lasso(alpha=1e-06, max_iter=10000) \n", + "3 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "4 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + ".. ... ... \n", + "220 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "221 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.01, max_iter=10000) \n", + "222 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "223 Lasso(alpha=0.01, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "224 Lasso(alpha=1e-06, max_iter=10000) Lasso(alpha=0.1, max_iter=10000) \n", + "\n", + " 41 \n", + "0 Lasso(alpha=0.01, max_iter=10000) \n", + "1 Lasso(alpha=0.01, max_iter=10000) \n", + "2 Lasso(alpha=0.1, max_iter=10000) \n", + "3 Lasso(alpha=1e-06, max_iter=10000) \n", + "4 Lasso(alpha=0.01, max_iter=10000) \n", + ".. ... \n", + "220 Lasso(alpha=1e-06, max_iter=10000) \n", + "221 Lasso(alpha=0.1, max_iter=10000) \n", + "222 Lasso(alpha=0.1, max_iter=10000) \n", + "223 Lasso(alpha=0.1, max_iter=10000) \n", + "224 Lasso(alpha=0.1, max_iter=10000) \n", + "\n", + "[225 rows x 42 columns]\n", + "[ 5.59942566e-02 1.65928198e-01 4.71117366e-02 -3.15478400e-02\n", + " -2.65203575e-02 1.09661560e-01 -2.05490651e-02 1.02881514e-01\n", + " 1.63876847e-01 1.38088308e-01 -2.07280699e-03 8.28383377e-02\n", + " 3.65067395e-02 3.96806844e-02 4.71539122e-02 1.08264656e-01\n", + " 1.24821498e-01 -6.77554732e-02 2.37382412e-02 -7.71222291e-03\n", + " 4.83034476e-03 8.56334383e-02 8.52769046e-02 6.90403659e-02\n", + " 4.93372560e-03 1.00217713e-01 8.59095182e-02 8.95988959e-02\n", + " -4.29675553e-02 1.51418869e-01 4.87767866e-02 5.37803477e-02\n", + " -3.62262479e-03 9.91225402e-02 9.36830456e-02 6.18045025e-02\n", + " -4.96962581e-02 1.50521229e-02 -1.42356156e-02 -1.97025909e-02\n", + " 4.73421015e-02 7.72926386e-02 8.68369210e-03 -1.03786492e-02\n", + " 4.27876574e-02 -3.25981727e-02 -1.97710939e-02 2.73201020e-02\n", + " 5.19949949e-02 1.26356541e-01 2.65047259e-01 6.88063025e-02\n", + " 5.16874971e-02 2.99907041e-02 1.07014302e-01 2.46449860e-02\n", + " 2.95515891e-02 -2.66441998e-02 -2.02205291e-02 1.83126980e-01\n", + " 1.41098085e-01 1.59929822e-01 5.03720586e-03 2.08562244e-02\n", + " 3.87503960e-02 5.42486535e-02 9.33033860e-02 -6.60315070e-03\n", + " 3.65772309e-02 -1.08367343e-02 -2.33226901e-02 1.87484784e-01\n", + " 8.93351047e-02 -5.18829846e-02 5.62588829e-02 5.84855778e-02\n", + " -4.00805275e-02 -1.10346451e-01 3.86421235e-02 -6.84644068e-03\n", + " -6.93393360e-03 1.79207536e-01 7.42293899e-03 1.06041620e-01\n", + " -4.20212597e-02 1.07428621e-01 1.21951074e-01 5.76576760e-02\n", + " 9.85525039e-02 3.64136191e-02 1.89802252e-01 8.08083031e-02\n", + " 5.68654077e-02 -4.73158143e-02 1.81857020e-01 3.24325520e-02\n", + " -2.89925893e-02 1.00848795e-01 6.68941248e-02 -3.13464273e-02\n", + " 1.43175147e-01 1.30478910e-01 6.65830676e-02 7.98030867e-03\n", + " -3.68708099e-02 3.15920632e-02 6.26790936e-02 5.01192064e-02\n", + " 3.26505137e-05 7.43288955e-02 2.04301912e-03 1.53836813e-02\n", + " 1.00417952e-01 2.15443340e-03 7.83697935e-03 2.14356206e-01\n", + " -1.79727366e-02 4.98052857e-02 1.03056103e-01 6.43713238e-03\n", + " -3.24213972e-02 1.73983552e-01 1.16333929e-01 6.46313935e-04\n", + " 5.67914166e-02 5.86645804e-02 1.48740947e-02 4.01671053e-02\n", + " 1.00428372e-01 -2.03200722e-02 1.34543970e-01 1.33225469e-02\n", + " 7.99769414e-02 7.71683192e-02 2.87525401e-02 7.52855709e-02\n", + " -3.62242372e-02 3.11728329e-02 4.04256071e-02 6.70283469e-02\n", + " 8.97284650e-02 1.56378882e-01 4.52700901e-02 3.50384889e-02\n", + " 4.62573682e-02 3.20876288e-03 -2.21904124e-02 1.76811085e-01\n", + " 1.13815346e-01 2.84831613e-02 1.54706771e-02 7.92886902e-02\n", + " 2.71904335e-02 5.79551917e-02 -3.31903208e-02 2.33204846e-01\n", + " 3.64396682e-02 1.22556605e-01 8.25531704e-02 1.46615267e-02\n", + " 4.63519003e-02 -1.29838902e-02 1.04929624e-01 -1.21122817e-02\n", + " 7.22245316e-02 1.47193697e-01 5.72030906e-02 1.20531638e-02\n", + " 1.36691762e-01 5.51350960e-02 1.43327802e-01 3.12145312e-02\n", + " 1.31170024e-01 1.01042890e-01 1.00283512e-01 -8.37792473e-03\n", + " -4.20053122e-02 4.57751430e-02 -2.45008817e-02 3.68878086e-03\n", + " -4.76625249e-02 -2.55131947e-02 7.65858350e-02 5.37125804e-02\n", + " 3.31830424e-02 -2.61312129e-02 -1.28633488e-02 5.36039102e-02\n", + " 7.80016694e-02 -1.97260549e-02 4.64114131e-03 4.59375594e-03\n", + " 1.50302917e-01 2.41716891e-02 1.66759361e-01 1.31149086e-01\n", + " 9.28510277e-02 -2.51413100e-02 8.59073508e-02 2.65047259e-01\n", + " -1.48193724e-02 1.00417952e-01 4.47446355e-02 8.98131342e-02\n", + " -1.66531047e-02 1.57320622e-02 9.13911088e-02 1.04752864e-03\n", + " 1.11047925e-01 -2.28224294e-02 3.17404410e-03 -8.98816798e-03\n", + " 1.00282537e-01 9.71429134e-02 8.25482390e-02 5.51092061e-02\n", + " 5.17017942e-02 2.34621414e-02 -2.48687895e-02 1.40496332e-01\n", + " 4.64728991e-02 7.19273142e-02 1.07474115e-02 7.22999943e-02\n", + " -1.36066608e-02 -1.96037637e-02 4.90878835e-02 6.93309793e-03\n", + " -1.61562045e-02 1.48894221e-01 1.17804546e-01 1.56343468e-01\n", + " 5.54578852e-02 1.68713436e-01 -4.85680170e-02 7.96632968e-03\n", + " -6.42425927e-02 1.19887593e-01 -2.44330946e-02 8.21379546e-03\n", + " 1.88777907e-02 -2.90187577e-02 1.66656477e-01 -8.31685865e-03\n", + " 3.56971913e-02 -2.43600977e-02 8.22325685e-02 1.20037564e-01\n", + " 1.37717435e-02 7.61620511e-02 8.27913699e-02 5.05822626e-02\n", + " 3.82828060e-02 8.30237233e-02 7.95218986e-02 5.59553024e-02\n", + " 2.74033771e-03 8.20976704e-02 3.29050138e-02]\n" + ] + } + ], + "source": [ + "GCP2MET_models = pd.DataFrame()\n", + "for i in range(Xtrain.shape[1]):\n", + " for j in range(Ytrain.shape[1]):\n", + " mdl_G2M =linear_model.Lasso(alpha=best_alpha_G2M[i,j],max_iter=10000, tol=0.0001).fit(Xtrain[:,i].reshape(-1,1), Ytrain[:, j])\n", + " GCP2MET_models.at[i,j] = mdl_G2M\n", + "print(GCP2MET_models.shape)\n", + "\n", + "MET2GCP_models = pd.DataFrame() \n", + "for i in range(Ytrain.shape[1]):\n", + " for j in range(Xtrain.shape[1]):\n", + " mdl_M2G = linear_model.Lasso(alpha=best_alpha_M2G[i,j],max_iter=10000, tol=0.0001).fit(Ytrain[:,i].reshape(-1,1), Xtrain[:,j])\n", + " MET2GCP_models.at[i,j]= mdl_M2G\n", + "print(MET2GCP_models)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### To evaluate models and get correlation coefficient, pvalue, and mse value." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for col in df:\n", + " if col == 'views':\n", + " continue\n", + " for i, row_value in df[col].iteritems():\n", + " df[col][i] = row_value * df['views'][i]" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-05, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.0001, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.001, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=0.01, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=1e-06, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n", + "Lasso(alpha=0.1, max_iter=10000)\n" + ] + }, + { + "data": { + "text/plain": [ + "(Empty DataFrame\n", + " Columns: []\n", + " Index: [],\n", + " Empty DataFrame\n", + " Columns: []\n", + " Index: [],\n", + " Empty DataFrame\n", + " Columns: []\n", + " Index: [])" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def evaluate_models(models, Xtest, Ytest):\n", + " \"\"\"\n", + " evaluate_models returns results from the model predictions, including the pearson\n", + " correlation coefficient, p-Values, and MSE.\n", + "\n", + " :param models: A list of scikit-learn model objects.\n", + " :param Xtest: A numpy array or pandas dataframe containing validation set input data.\n", + " :param Ytest: A numpy array or pandas dataframe containing validation set output data.\n", + " :return pred_resul: A dictionary containing the final MSE, pValue, or rValue.\n", + " \n", + " \"\"\"\n", + " \n", + " predictions = []\n", + " rValue = list()\n", + " pValue = list()\n", + " MSE = list()\n", + " for col in models:\n", + " for i,row_value in models[col].iteritems():\n", + "# mdl = models[col][i]\n", + " Ypred = row_value.predict(Xtest[:,i].reshape(-1,1)) \n", + " \n", + " r, pvalue = pearsonr(Ypred, Ytest[:, col])\n", + " rValue.append(r)\n", + " pValue.append(pvalue)\n", + " \n", + " mse = mean_squared_error(Ytest[:, i], Ypred)\n", + " MSE.append(mse)\n", + " \n", + " df_MSE = pd.DataFrame(MSE)\n", + " df_pValue = pd.DataFrame(pValue)\n", + " df_rValue = pd.DataFrame(rValue)\n", + " \n", + " return df_MSE, df_pValue, df_rValue\n", + "\n", + "evaluate_models(GCP2MET_models,Xtest, Ytest)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## GCP_to_MET\n", + "### perform 3-fold cross validation to find model that generate the smallest mse value." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'Series' object has no attribute 'predict'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mmse1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mp1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mpearson1\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mevaluate_models\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mGCP2MET_models\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mXtest\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mYtest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mmse1\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m\"GCP2MET_models\"\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;31m# print(mse1)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mevaluate_models\u001b[0;34m(models, Xtest, Ytest)\u001b[0m\n\u001b[1;32m 17\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodels\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 18\u001b[0m \u001b[0mmdl\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmodels\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 19\u001b[0;31m \u001b[0mYpred\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmdl\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpredict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mXtest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 20\u001b[0m \u001b[0mpredictions\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mYpred\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/core/generic.py\u001b[0m in \u001b[0;36m__getattr__\u001b[0;34m(self, name)\u001b[0m\n\u001b[1;32m 5272\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_info_axis\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_can_hold_identifiers_and_holds_name\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5273\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 5274\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mobject\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__getattribute__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5275\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5276\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m__setattr__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m->\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mAttributeError\u001b[0m: 'Series' object has no attribute 'predict'" + ] + } + ], + "source": [ + "mse1,p1,pearson1 = evaluate_models(GCP2MET_models, Xtest, Ytest)\n", + "mse1.columns = [\"GCP2MET_models\"]\n", + "# print(mse1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "kf = KFold(n_splits=3)\n", + "\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse_result = pd.DataFrame()\n", + "pvalue_result = pd.DataFrame()\n", + "rvalue_result = pd.DataFrame()\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_GCP2MET_models = []\n", + " final_metrics = []\n", + " for i in range(y_train.shape[1]):\n", + " mdl_G2M = linear_model.Lasso(alpha=best_alpha_G2M[i],max_iter=10000, tol=0.0001).fit(X_train, y_train[:, i])\n", + " v_GCP2MET_models.append(mdl_G2M)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_GCP2MET_models, X_test, y_test)\n", + " mse_result = pd.concat([mse_result,df_MSE],axis = 1)\n", + " pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + " rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "mse_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse_result = mse_result.T\n", + "print(mse_result) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "minMSE = mse_result.idxmin()\n", + "# print(minMSE)\n", + "\n", + "mse_min = pd.DataFrame()\n", + "MSE_min = list()\n", + "for index in mse_result:\n", + " v = mse_result[index][minMSE[index]]\n", + " MSE_min.append(v)\n", + "# print(v)\n", + "mse_min = pd.DataFrame(MSE_min)\n", + "mse_min.columns = [\"v_GCP2MET_models\"]\n", + "# print(mse_min)\n", + "raw = mse1.join(mse_min)\n", + "print(raw)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Generate new list of model" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": false + }, + "outputs": [], + "source": [ + "new_GCP2MET = list()\n", + "for index, row in raw.iterrows():\n", + " if row['GCP2MET_models'] < row['v_GCP2MET_models']:\n", + " new_GCP2MET.append(GCP2MET_models[index])\n", + " else:\n", + " new_GCP2MET.append(v_GCP2MET_models[index])\n", + " \n", + "print(new_GCP2MET)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Evaluate if the correlation coefficient generated with the list of best model is significant or not" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "mse_G2M,p_G2M,pearson_G2M = evaluate_models(new_GCP2MET, Xtest, Ytest)\n", + "metab_name.columns = [\"METAB_NAME\"]\n", + "p_G2M.columns = [\"GCP2MET_p\"]\n", + "pearson_G2M.columns = [\"GCP2MET_r\"]\n", + "raw_G2M = pd.concat([pearson_G2M,p_G2M],axis = 1)\n", + "pearson_G2M.columns = [\"GCP2MET_r_0.05\"]\n", + "heat_G2M = pd.concat([pearson_G2M, raw_G2M],axis = 1)\n", + "print(heat_G2M)\n", + "for index, row in heat_G2M.iterrows():\n", + " if row['GCP2MET_p'] >= 0.05:\n", + " row['GCP2MET_r_0.05'] = 'NaN'\n", + "new_G2M = pd.concat([metab_name, heat_G2M],axis = 1)\n", + "top10_G2M = new_G2M.nsmallest(10, ['GCP2MET_p'])\n", + "print (top10_G2M)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### MET TO GCP (repeat the same process above)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mse2,p2,pearson2 = evaluate_models(MET2GCP_models, Ytest, Xtest)\n", + "mse2.columns = [\"MET2GCP_models\"]\n", + "\n", + "kf = KFold(n_splits=3)\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse2_result = pd.DataFrame()\n", + "\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_MET2GCP_models = []\n", + " metrics = []\n", + " for i in range(X_train.shape[1]):\n", + " mdl_M2G = linear_model.Lasso(alpha=best_alpha_M2G[i],max_iter=10000, tol=0.0001).fit(y_train, X_train[:, i])\n", + " v_MET2GCP_models.append(mdl_M2G)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_MET2GCP_models, y_test, X_test)\n", + " mse2_result = pd.concat([mse2_result,df_MSE],axis = 1)\n", + "# pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + "# rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "mse2_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse2_result = mse2_result.T\n", + "# print(mse2_result) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "minMSE2 = mse2_result.idxmin()\n", + "# print(minMSE)\n", + "\n", + "mse2_min = pd.DataFrame()\n", + "MSE2_min = list()\n", + "for index in mse2_result:\n", + " v = mse2_result[index][minMSE2[index]]\n", + " MSE2_min.append(v)\n", + "# print(v)\n", + "mse2_min = pd.DataFrame(MSE2_min)\n", + "mse2_min.columns = [\"v_MET2GCP_models\"]\n", + "# print(mse2_min)\n", + "raw2 = mse2.join(mse2_min)\n", + "\n", + "new_MET2GCP = list()\n", + "for index, row in raw2.iterrows():\n", + " if row['MET2GCP_models'] < row['v_MET2GCP_models']:\n", + " \n", + " new_MET2GCP.append(MET2GCP_models[index])\n", + " else:\n", + " new_MET2GCP.append(v_MET2GCP_models[index])\n", + " \n", + " \n", + "print(new_MET2GCP)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "mse_M2G,p_M2G,pearson_M2G = evaluate_models(new_MET2GCP, Ytest, Xtest)\n", + "his_name.columns = [\"HIS_NAME\"]\n", + "p_M2G.columns = [\"MET2GCP_p\"]\n", + "pearson_M2G.columns = [\"MET2GCP_r\"]\n", + "raw_M2G = pd.concat([pearson_M2G, p_M2G],axis = 1)\n", + "pearson_M2G.columns = [\"MET2GCP_r_0.05\"]\n", + "heat_M2G = pd.concat([pearson_M2G, raw_M2G],axis = 1)\n", + "for index, row in heat_M2G.iterrows():\n", + " if row['MET2GCP_p'] >= 0.05:\n", + " row['MET2GCP_r_0.05'] = 'NaN'\n", + "print(heat_M2G)\n", + "new_M2G = pd.concat([his_name, heat_M2G],axis = 1)\n", + "print(new_M2G)\n", + "top10_M2G = new_M2G.nsmallest(10, ['MET2GCP_p'])\n", + "print (top10_M2G)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "with sns.axes_style(\"darkgrid\"):\n", + " f, G2M_heatmap = plt.subplots(figsize=(5, 100))\n", + " G2M_heatmap = sns.heatmap(heat_G2M, annot=True, vmin = -1, vmax= 1)\n", + "with sns.axes_style(\"darkgrid\"):\n", + " f, M2G_heatmap = plt.subplots(figsize=(5, 15))\n", + " M2G_heatmap = sns.heatmap(heat_M2G, annot=True, vmin = -1, vmax= 1)\n", + "G2M_heatmap.figure.savefig(\"G2M_heatmap.png\")\n", + "M2G_heatmap.figure.savefig(\"M2G_heatmap.png\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "corr_G2M = np.zeros([42, 225])\n", + "for i in range(GCP.shape[1]):\n", + " for j in range(MET.shape[1]):\n", + " r_1, pvalue1 = pearsonr(MET[:,j], GCP[:, i])\n", + " r1 = round(r_1, 2)\n", + " corr_G2M[i][j] = r1\n", + "print(corr_G2M)\n", + "\n", + "corr_M2G = np.zeros([225, 42])\n", + "for i in range(MET.shape[1]):\n", + " for j in range(GCP.shape[1]):\n", + " r_2, pvalue2 = pearsonr(MET[:,i], GCP[:, j])\n", + " r2 = round(r_2, 2)\n", + " corr_M2G[i][j] = r2\n", + "with sns.axes_style(\"darkgrid\"):\n", + " f, G2M_heatmap = plt.subplots(figsize=(50, 50))\n", + " corr_G2M_heatmap = sns.heatmap(corr_G2M, annot=True, vmin = -1, vmax= 1)\n", + "with sns.axes_style(\"darkgrid\"):\n", + " f, M2G_heatmap = plt.subplots(figsize=(50, 50))\n", + " corr_M2G_heatmap = sns.heatmap(corr_M2G, annot=True, vmin = -1, vmax= 1)\n", + "corr_G2M_heatmap.figure.savefig(\"corr_G2M_heatmap.png\")\n", + "corr_M2G_heatmap.figure.savefig(\"corr_M2G_heatmap.png\")\n", + "np.savetxt(\"G2M_corr_LASSO.csv\", corr_G2M, delimiter=\",\")\n", + "np.savetxt(\"M2G_corr_LASSO.csv\", corr_M2G, delimiter=\",\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/src/python/EDA/Linear_regression.csv b/src/python/EDA/Linear_regression.csv new file mode 100644 index 0000000..6e64494 --- /dev/null +++ b/src/python/EDA/Linear_regression.csv @@ -0,0 +1,226 @@ +,GCP2MET_p,GCP2MET_r,GCP2MET_r_0.05 +0,0.15596101235631651,0.08841408170712407, +1,0.2683289819823082,0.06903242224474643, +2,4.13580524042827e-06,0.2816550268096376,0.2816550268096376 +3,0.43845498472580147,0.04834973402136666, +4,0.48958378752706705,0.04312345731011802, +5,0.10561219473074844,0.10078347572841731, +6,0.04150202990258827,0.12676666662016062,0.12676666662016062 +7,0.9405284155006844,0.004658281464585169, +8,5.072949592209412e-08,0.3305993642096282,0.3305993642096282 +9,0.4756190074780041,0.04451979555199381, +10,0.7940258840497885,0.0163008886119214, +11,7.564639555110568e-06,0.2741733985937681,0.2741733985937681 +12,0.006061612319241815,0.17010874599466366,0.17010874599466366 +13,3.6394410660969657e-07,0.30977429960255487,0.30977429960255487 +14,0.0002590493406188238,0.22516265826268486,0.22516265826268486 +15,0.00519577520957138,0.17317412998361387,0.17317412998361387 +16,0.7916807740000481,-0.016490806855416956, +17,0.42584785368987194,0.049690503644800064, +18,8.32400983380631e-05,0.24202701455935596,0.24202701455935596 +19,0.15849882164496704,0.08787719939948853, +20,0.0008390412715381138,0.2062732714293588,0.2062732714293588 +21,0.6001061336999053,0.03272474222601174, +22,0.09803587966127486,0.10302719616756181, +23,8.362941171456056e-06,0.2729087635036128,0.2729087635036128 +24,0.3309481375923274,0.06064766049027262, +25,0.0008875552319947536,0.2053277048700342,0.2053277048700342 +26,0.14500948194361105,0.09080968694555822, +27,0.8421944227088326,-0.012430333147194463, +28,0.32232745094052645,-0.06173605538886858, +29,0.10030945722181463,0.10233986712018119, +30,0.0008181175159394652,0.2066967394581407,0.2066967394581407 +31,0.41668978415748015,0.05067895079521502, +32,0.028638775784227855,0.1360074013263466,0.1360074013263466 +33,0.6673863023642659,-0.026827572678882437, +34,0.0005104033946532644,0.21446010960348144,0.21446010960348144 +35,9.732338366393351e-05,0.23977618909749301,0.23977618909749301 +36,0.04480782560043395,0.12479083900277593,0.12479083900277593 +37,0.061697580935414324,0.11626896593409813, +38,0.0063910668264401315,0.16904477991609637,0.16904477991609637 +39,0.615374517410182,-0.03136266749960741, +40,0.060223051992684386,0.116929874868366, +41,0.02114934594290931,0.1431984857169866,0.1431984857169866 +42,2.3505137133291225e-07,0.3145331133808589,0.3145331133808589 +43,0.05107231330175686,0.12135986509530977, +44,0.034457784665787056,0.1314644978752118,0.1314644978752118 +45,0.3825528172192555,0.054481367886225915, +46,0.3549898502648134,0.057705056117661, +47,1.0573614211410752e-05,0.26992730263776954,0.26992730263776954 +48,0.1067894266066992,-0.10044635152440859, +49,0.013834758249558677,0.1527916812280568,0.1527916812280568 +50,0.07125328127952708,0.11227481896125469, +51,0.0084782125519347,0.16326063007134164,0.16326063007134164 +52,0.042623742018105794,0.12608186609340066,0.12608186609340066 +53,0.48400404843733236,0.0436787624391302, +54,0.06851647352658394,0.11337158278612806, +55,0.01952108908459176,0.14504974500878248,0.14504974500878248 +56,0.010828174062519607,0.15810479547750728,0.15810479547750728 +57,0.017778006862024846,0.14718658593077716,0.14718658593077716 +58,0.5069503826758475,-0.04141634154926799, +59,0.10593391036744602,0.10069105296035522, +60,0.4111095806620824,0.05128748228848348, +61,0.01726176122218483,0.1478544719951586,0.1478544719951586 +62,0.008800264269886802,0.16248411598905327,0.16248411598905327 +63,0.9738342479406774,-0.002047983591821366, +64,0.007219804832293508,0.16657086106490548,0.16657086106490548 +65,0.1421405900464953,0.09145988811974223, +66,0.0504545892233836,0.12168205521402956, +67,1.3474319032643662e-05,0.2668082660593777,0.2668082660593777 +68,0.03661738746325065,0.1299439899274829,0.1299439899274829 +69,5.192097865857052e-05,0.24869730090213021,0.24869730090213021 +70,0.0012665767734938568,0.1992469482626063,0.1992469482626063 +71,0.018417948903039685,0.14638173282213196,0.14638173282213196 +72,0.06591975513225576,0.11444581810477542, +73,0.0013002666120890502,0.19879106891519718,0.19879106891519718 +74,0.018415650773259285,0.14638457932679677,0.14638457932679677 +75,0.004059354454703298,0.17798445799342877,0.17798445799342877 +76,0.8124330579069723,-0.014815236075386016, +77,0.029215201313260723,0.13552387248266914,0.13552387248266914 +78,0.1980120394298471,0.08024405283554217, +79,0.12026880206183231,0.09678026266303016, +80,0.0409362631725084,0.1271179938823049,0.1271179938823049 +81,0.9665398908294806,0.0026192068833453437, +82,0.007978444507876783,0.16451920820307966,0.16451920820307966 +83,0.004695843739259663,0.17516013809930223,0.17516013809930223 +84,0.012754328262315553,0.1545721027683497,0.1545721027683497 +85,0.04139418909849767,0.12683332069743009,0.12683332069743009 +86,0.7873336267363054,0.016843262772666276, +87,0.055006623712599456,0.11938063530675919, +88,0.012823711323983975,0.15445385744608675,0.15445385744608675 +89,0.06370417290196785,0.11539014638558848, +90,0.09698384587586344,0.103349528624296, +91,9.334229579184493e-05,0.24037971062066832,0.24037971062066832 +92,6.182143872340265e-05,0.2462525543622664,0.2462525543622664 +93,0.010060964412686653,0.1596686355377826,0.1596686355377826 +94,0.12880407273055,0.09462162549679001, +95,0.0839537437757712,0.10759314139291923, +96,0.2519434985358215,0.07144126758208731, +97,0.09074326232860193,0.10532100083786564, +98,0.6378315436045114,0.02938573529982645, +99,0.015250132649091093,0.15063549808052024,0.15063549808052024 +100,0.3796707173015079,0.054811606626310475, +101,0.311635716142464,0.06311250669772403, +102,0.03015146255378101,0.13475561685862303,0.13475561685862303 +103,0.0011015205602114663,0.20165529529957799,0.20165529529957799 +104,0.5323263091341442,0.038975761631193734, +105,1.0839811922747446e-05,0.2696091756969605,0.2696091756969605 +106,0.968941239862182,0.0024311347822542385, +107,0.0010173787854351147,0.20301380148850567,0.20301380148850567 +108,0.038309482625675434,0.12880485323275792,0.12880485323275792 +109,0.05946851222635137,0.11727324466719985, +110,0.0020074412869660026,0.1911014085878685,0.1911014085878685 +111,0.7710172773693086,0.018171025998217794, +112,0.007704826138662918,0.16523830692899233,0.16523830692899233 +113,0.25156264196169237,0.07149852636533344, +114,0.00372042277992737,0.17965588138525745,0.17965588138525745 +115,0.0002779939380895606,0.22407227229737509,0.22407227229737509 +116,0.7982203629263932,0.015961572033037615, +117,0.13656144252612978,0.0927536074642857, +118,0.03410138915771258,0.13172315792746064,0.13172315792746064 +119,0.3456575179779387,0.05883180764436289, +120,0.6321882079858759,0.029879700640912506, +121,0.7889120229241636,0.01671522919300728, +122,0.7544690601880587,0.019526060435241674, +123,0.34143349002402473,0.059348130350861075, +124,0.7124648630951598,-0.023008702658974225, +125,0.9696800832861593,0.0023732735335636815, +126,0.8579354730340353,-0.011176408135375872, +127,0.5078122050739483,0.041332433466552305, +128,0.9169588982093178,0.006510144925023954, +129,0.9496262182597837,-0.003944641371380109, +130,0.5765568117491989,-0.034856659278632914, +131,0.9397342430003383,0.004720604472835038, +132,0.1319941706001005,0.09384321859079739, +133,0.5799087784715765,-0.03455078436298269, +134,0.019666173456314412,0.14487946010711938,0.14487946010711938 +135,0.014491967275033216,0.15176755114818105,0.15176755114818105 +136,0.2603027849554402,0.07019931889582971, +137,0.2226486889281362,0.07603502957181371, +138,0.010561760974605448,0.1586364015068884,0.1586364015068884 +139,0.04517568828017788,0.1245786124722073,0.1245786124722073 +140,0.01852359354652035,0.1462512119297757,0.1462512119297757 +141,0.2065882922676511,0.07873811524082935, +142,0.017408271545806844,0.14766317586693184,0.14766317586693184 +143,0.7398923767171517,0.020727261019048253, +144,0.0002999279496076135,0.22289315316859126,0.22289315316859126 +145,0.34053538356464774,0.05945843278521548, +146,0.06353833405351028,0.11546190902145032, +147,0.02240290140077534,0.14185559424915195,0.14185559424915195 +148,0.00011061384125312457,0.237916797549408,0.237916797549408 +149,0.0009325622156453431,0.20449215870042117,0.20449215870042117 +150,0.007491324661970052,0.16581539106490506,0.16581539106490506 +151,0.3782410035238733,0.054975995566989906, +152,0.004728269774484887,0.17502568811330058,0.17502568811330058 +153,0.24568054840620324,0.07239059923840628, +154,0.18389106751489162,0.08283061807044811, +155,0.7431569230133517,0.020457596022925875, +156,0.047365318926873144,0.12334450942462527,0.12334450942462527 +157,0.1178227170986685,0.09742079676728976, +158,0.02321706599325786,0.14101780485220708,0.14101780485220708 +159,0.6960085088561925,0.02439217072659124, +160,0.175504786551826,0.08443661443495895, +161,0.5095796083438688,0.04116058893799214, +162,0.018143752399641905,0.1467235597390352,0.1467235597390352 +163,0.0006621099254957032,0.2102123290653007,0.2102123290653007 +164,0.011720386451562167,0.15640484064649346,0.15640484064649346 +165,0.9313885068776596,0.00537583423996337, +166,0.04134267388167358,0.1268652127557216,0.1268652127557216 +167,0.07660462581780036,0.11022583606068928, +168,0.6997885103859766,0.024073359199193678, +169,0.7306504924338824,-0.021492787306168257, +170,0.09000692381504657,0.10556069639069866, +171,0.24528574412798712,0.07245100499890718, +172,0.894642426652994,0.008268793664716676, +173,0.35284877210492815,0.05796189690676056, +174,0.08395796928508652,0.10759168212992617, +175,0.012007053541815225,0.155882865895776,0.155882865895776 +176,0.5803187098969057,0.034513433867378825, +177,0.10789770709240044,0.10013163824973784, +178,0.00032209816387142234,0.22178026921900723,0.22178026921900723 +179,0.33958899025297457,0.059574866326272354, +180,0.11769686912538276,0.09745403081416813, +181,0.028490973680278652,0.1361327247290445,0.1361327247290445 +182,0.0001121385111971435,0.2377170712614345,0.2377170712614345 +183,1.085205436350078e-05,0.26959472404036555,0.26959472404036555 +184,0.0015208728194408298,0.19604882615874647,0.19604882615874647 +185,1.626283641919027e-05,0.2643611747772854,0.2643611747772854 +186,0.00012129948816860713,0.23656807764470067,0.23656807764470067 +187,0.10494142851904661,0.10097689052724658, +188,6.382057636952492e-05,0.2458040494714529,0.2458040494714529 +189,7.768154468485725e-05,0.24301542025496192,0.24301542025496192 +190,0.000171609352860436,0.23142258197423063,0.23142258197423063 +191,0.009164282032346583,0.16163623714577563,0.16163623714577563 +192,0.06906769166997863,0.11314784473221966, +193,0.00030107657290266016,0.22283364299756284,0.22283364299756284 +194,0.001863552985207064,0.19243868983705198,0.19243868983705198 +195,0.7327868055865551,0.021315550062052484, +196,0.01975698244368223,0.14477343218525018,0.14477343218525018 +197,4.5035466561078385e-05,0.25067201759644797,0.25067201759644797 +198,0.017112388821587367,0.1480509681876337,0.1480509681876337 +199,0.19310272741498766,0.08112753714582227, +200,0.01322488689513917,0.15378099006306475,0.15378099006306475 +201,0.010920665799272072,0.1579229369041494,0.1579229369041494 +202,0.04343951237233766,0.12559329645954898,0.12559329645954898 +203,0.29699319275026564,0.06504882698902073, +204,0.5705760095973987,0.03540450325648764, +205,0.6217007060940701,0.03080267507789853, +206,0.06170117027993664,0.11626737307066493, +207,0.05822517554866921,0.11784697479706323, +208,0.3249761720031785,0.06139966300511841, +209,0.006971163480890482,0.16728524845677945,0.16728524845677945 +210,0.356455775594504,0.057529766006664, +211,0.6113339783515341,0.03172165026323853, +212,0.4796054974248857,0.0441189500848891, +213,0.08809350400001988,0.10619098158640856, +214,0.10647139343586658,0.10053713682207777, +215,0.0007084928134123224,0.20909344994685303,0.20909344994685303 +216,0.0514450815977261,0.12116700442010739, +217,0.0010750313098667429,0.20207237065846462,0.20207237065846462 +218,0.06110189635931056,0.11653437913691499, +219,0.0547452581228565,0.11950841254407231, +220,0.08479834120761068,0.10730263048240564, +221,0.021869065201684575,0.14241931927398524,0.14241931927398524 +222,0.005282124228201892,0.17284863402051104,0.17284863402051104 +223,0.4823743862055355,0.04384159865743759, +224,0.0019536938633485435,0.19159037423480568,0.19159037423480568 diff --git a/src/python/EDA/MET2GCP_CORR.ipynb b/src/python/EDA/MET2GCP_CORR.ipynb index dab5d39..1fde710 100644 --- a/src/python/EDA/MET2GCP_CORR.ipynb +++ b/src/python/EDA/MET2GCP_CORR.ipynb @@ -2176,9 +2176,410 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
H3K4me0H3K4me1H3K4me2H3K4ac1H3K9me0K14ac0H3K9me1K14ac0H3K9me2K14ac0H3K9me3K14ac0H3K9ac1K14ac0H3K9me0K14ac1...H3K27ac1K36me0H3K27ac1K36me1H3K27ac1K36me2H3K27ac1K36me3H3.3K27me0K36me0H3K56me0H3K56me1H3K79me0H3K79me1H3K79me2
2-aminoadipateNaNNaNNaNNaNNaNNaNNaNNaN1NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
3-phosphoglycerateNaNNaNNaNNaNNaNNaNNaN1NaNNaN...111NaNNaNNaNNaNNaNNaNNaN
Alpha-glycerophosphateNaNNaN11NaN-1NaNNaNNaN1...NaNNaNNaN1-1NaN1NaN-1-1
4-pyridoxateNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
AconitateNaN1NaNNaN1NaNNaN11NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
..................................................................
C56:3 TAG-1-1NaNNaN-1NaNNaN-1NaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
C56:2 TAG-1-1NaNNaNNaNNaNNaN-1NaNNaN...NaNNaNNaNNaN-1NaNNaNNaNNaNNaN
C58:8 TAG-1-1NaNNaNNaNNaNNaNNaN-1NaN...NaNNaN-1NaNNaNNaN1NaNNaNNaN
C58:7 TAG-1-1NaNNaNNaNNaNNaNNaN-1NaN...NaNNaN-1NaNNaNNaN1NaNNaNNaN
C58:6 TAG-1-1NaNNaNNaNNaNNaN-1-1NaN...NaNNaN-1NaNNaNNaNNaNNaNNaNNaN
\n", + "

225 rows × 42 columns

\n", + "
" + ], + "text/plain": [ + " H3K4me0 H3K4me1 H3K4me2 H3K4ac1 H3K9me0K14ac0 \\\n", + "2-aminoadipate NaN NaN NaN NaN NaN \n", + "3-phosphoglycerate NaN NaN NaN NaN NaN \n", + "Alpha-glycerophosphate NaN NaN 1 1 NaN \n", + "4-pyridoxate NaN NaN NaN NaN NaN \n", + "Aconitate NaN 1 NaN NaN 1 \n", + "... ... ... ... ... ... \n", + "C56:3 TAG -1 -1 NaN NaN -1 \n", + "C56:2 TAG -1 -1 NaN NaN NaN \n", + "C58:8 TAG -1 -1 NaN NaN NaN \n", + "C58:7 TAG -1 -1 NaN NaN NaN \n", + "C58:6 TAG -1 -1 NaN NaN NaN \n", + "\n", + " H3K9me1K14ac0 H3K9me2K14ac0 H3K9me3K14ac0 \\\n", + "2-aminoadipate NaN NaN NaN \n", + "3-phosphoglycerate NaN NaN 1 \n", + "Alpha-glycerophosphate -1 NaN NaN \n", + "4-pyridoxate NaN NaN NaN \n", + "Aconitate NaN NaN 1 \n", + "... ... ... ... \n", + "C56:3 TAG NaN NaN -1 \n", + "C56:2 TAG NaN NaN -1 \n", + "C58:8 TAG NaN NaN NaN \n", + "C58:7 TAG NaN NaN NaN \n", + "C58:6 TAG NaN NaN -1 \n", + "\n", + " H3K9ac1K14ac0 H3K9me0K14ac1 ... H3K27ac1K36me0 \\\n", + "2-aminoadipate 1 NaN ... NaN \n", + "3-phosphoglycerate NaN NaN ... 1 \n", + "Alpha-glycerophosphate NaN 1 ... NaN \n", + "4-pyridoxate NaN NaN ... NaN \n", + "Aconitate 1 NaN ... NaN \n", + "... ... ... ... ... \n", + "C56:3 TAG NaN NaN ... NaN \n", + "C56:2 TAG NaN NaN ... NaN \n", + "C58:8 TAG -1 NaN ... NaN \n", + "C58:7 TAG -1 NaN ... NaN \n", + "C58:6 TAG -1 NaN ... NaN \n", + "\n", + " H3K27ac1K36me1 H3K27ac1K36me2 H3K27ac1K36me3 \\\n", + "2-aminoadipate NaN NaN NaN \n", + "3-phosphoglycerate 1 1 NaN \n", + "Alpha-glycerophosphate NaN NaN 1 \n", + "4-pyridoxate NaN NaN NaN \n", + "Aconitate NaN NaN NaN \n", + "... ... ... ... \n", + "C56:3 TAG NaN NaN NaN \n", + "C56:2 TAG NaN NaN NaN \n", + "C58:8 TAG NaN -1 NaN \n", + "C58:7 TAG NaN -1 NaN \n", + "C58:6 TAG NaN -1 NaN \n", + "\n", + " H3.3K27me0K36me0 H3K56me0 H3K56me1 H3K79me0 H3K79me1 \\\n", + "2-aminoadipate NaN NaN NaN NaN NaN \n", + "3-phosphoglycerate NaN NaN NaN NaN NaN \n", + "Alpha-glycerophosphate -1 NaN 1 NaN -1 \n", + "4-pyridoxate NaN NaN NaN NaN NaN \n", + "Aconitate NaN NaN NaN NaN NaN \n", + "... ... ... ... ... ... \n", + "C56:3 TAG NaN NaN NaN NaN NaN \n", + "C56:2 TAG -1 NaN NaN NaN NaN \n", + "C58:8 TAG NaN NaN 1 NaN NaN \n", + "C58:7 TAG NaN NaN 1 NaN NaN \n", + "C58:6 TAG NaN NaN NaN NaN NaN \n", + "\n", + " H3K79me2 \n", + "2-aminoadipate NaN \n", + "3-phosphoglycerate NaN \n", + "Alpha-glycerophosphate -1 \n", + "4-pyridoxate NaN \n", + "Aconitate NaN \n", + "... ... \n", + "C56:3 TAG NaN \n", + "C56:2 TAG NaN \n", + "C58:8 TAG NaN \n", + "C58:7 TAG NaN \n", + "C58:6 TAG NaN \n", + "\n", + "[225 rows x 42 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "def generate_corrtable(df,mt,hm,corr):\n", " \"\"\"\n", @@ -2209,6 +2610,10 @@ " for c in (df_hm.columns):\n", " if np.isnan(newpvalues[c][r]) == False:\n", " new_corr[c][r] = corr[c][r]\n", + " if (new_corr[c][r]) > 0:\n", + " new_corr[c][r] = 1\n", + " elif (new_corr[c][r] < 0):\n", + " new_corr[c][r] = -1\n", " new_corr.to_csv('new_corr.csv')\n", " return new_corr\n", " \n", diff --git a/src/python/EDA/corr.csv b/src/python/EDA/corr.csv new file mode 100644 index 0000000..cb4e666 --- /dev/null +++ b/src/python/EDA/corr.csv @@ -0,0 +1,226 @@ +,H3K4me0,H3K4me1,H3K4me2,H3K4ac1,H3K9me0K14ac0,H3K9me1K14ac0,H3K9me2K14ac0,H3K9me3K14ac0,H3K9ac1K14ac0,H3K9me0K14ac1,H3K9me1K14ac1,H3K9me2K14ac1,H3K9me3K14ac1,H3K9ac1K14ac1,H3K18ac0K23ac0,H3K18ac1K23ac0,H3K18ac0K23ac1,H3K18ac1K23ac1,H3K18ac0K23ub1,H3K27me0K36me0,H3K27me0K36me1,H3K27me0K36me2,H3K27me0K36me3,H3K27me1K36me0,H3K27me1K36me1,H3K27me1K36me2,H3K27me1K36me3,H3K27me2K36me0,H3K27me2K36me1,H3K27me2K36me2,H3K27me3K36me0,H3K27me3K36me1,H3K27ac1K36me0,H3K27ac1K36me1,H3K27ac1K36me2,H3K27ac1K36me3,H3.3K27me0K36me0,H3K56me0,H3K56me1,H3K79me0,H3K79me1,H3K79me2 +2-aminoadipate,0.01057970886037784,-0.0021257326882899857,-0.04119337857641152,-0.013647997245459712,0.05092332411548106,0.008835506676204644,-0.004897430326168107,-0.026113350109523734,0.11530413339057893,0.008429170491233692,-0.015076697579731763,-0.01574322193489893,-0.08817515795482431,0.07659925980098957,-0.014575980955547565,-0.008393018317853676,0.026148634593900353,0.004068771470790058,0.07283082763488581,0.06545159711348547,0.10641125511029843,0.10006255960026497,0.06310295455888207,0.016540998989601995,0.06109271722891609,0.048129734225293784,0.01652449377065407,-0.0536719203638974,-0.04388620265391038,0.007491999671582064,0.033471411015884966,-0.005939860516253553,0.005170698574555114,0.07212515998676679,0.10213331718427261,0.040593714970034285,-0.04733395131217922,-0.015090300065203994,0.03849637076363528,0.02600360396754287,0.021895033149677917,0.009091890241570585 +3-phosphoglycerate,-0.0015811654692138484,-0.019890222409867268,-0.07145925601434414,-0.08401754247017691,-0.017794825550670888,-0.053067902200615,-0.06487460053389535,0.09079799567796779,0.03409062225278605,-0.03603496060038301,-0.07446555266026951,-0.0705387225342463,-0.012573215204769598,0.018480233241026333,-0.015484677762547276,0.052707486925805666,-0.07910746065343471,0.016749526870307348,-0.029572568274196687,0.08650965255056446,-0.000558755348120012,-0.04903735150833766,0.0430760427387467,0.08936014588373245,0.012633007352773222,-0.014806696022845229,0.07344619974282075,0.05885736039201961,0.025798454233691284,-0.04117848699777371,-0.041017167999127455,-0.06135105326737855,0.07890028558777247,0.09340419884407655,0.09014992928415728,0.026672519461363835,0.027274743138812903,-0.053513503316877764,-0.011798804802610667,-0.041461241066900315,-0.02851845115606883,-0.009319413243138144 +Alpha-glycerophosphate,-0.0024531587526654044,-0.0454343729191863,0.08709684907076769,0.12492126689842678,-0.04679462881516987,-0.09067031513050919,-0.04087715834200786,-0.059713578611187645,0.0024683217376542266,0.09368973114677409,0.10596411649471821,0.12598699973359642,0.07230738688032809,0.06592977777128313,-0.05299337592410294,0.014427336304481765,0.11849870547447927,0.09310518557833602,-0.05973055099521251,0.02610722331808098,0.0009150049035814431,0.11072621438237547,0.031081878859057336,0.023000743142503225,-0.033702662098828724,-0.0009213068688767126,-0.05052892636805459,0.029055137642611577,-0.04723914621006559,-0.05214094712470441,0.06163643979608405,0.02549580700337225,0.0933949957288136,0.051769355163272336,0.05086130433357989,0.10843714444123768,-0.12637586177323318,-0.050834431561577964,0.08133455135136693,-0.069508567875402,-0.05464069338893814,-0.010630711491055548 +4-pyridoxate,-0.03742499917633833,0.042511208349840277,0.057534184927169475,0.05047556570005352,-0.044777785214544064,-0.06486660145155031,0.0010366491205641905,-0.042039591277837136,-0.04788891947400402,0.013348839290885936,0.022194793219906698,0.06190972821785756,0.030272441294501306,0.002926147423294868,-0.028086723322626853,-0.034406154652293366,0.07573608509312459,-0.008330659851369904,0.015069169415733729,-0.010167308954998023,0.03312127702157471,0.028291355329974757,-0.0128612754354367,-0.0029870362991937247,0.0470558499794841,-0.020066623487140278,-0.05206086497384025,0.022173615268975662,0.001739785076439004,0.0013409387611745332,-0.005881289526394328,-0.01576037070691261,-0.017765572795886076,-0.020869991811713815,-0.0038741633963800086,0.007819291173866616,0.004126823307834269,-0.003100347914881825,0.010449979183631133,0.04961490887439416,0.011765141673079139,0.04242608670273421 +Aconitate,-0.010916000303303973,0.06224217793261248,-0.017422368729849286,-0.047795476996276134,0.04519485132507352,0.04286471094241431,-0.03414224974015483,0.09369054599559862,0.07102024768957883,-0.041497072599009255,-0.0800589227026287,-0.08653625706047623,-0.08079213766428986,0.027514856503792238,-0.008396283350905987,0.06534570615182618,-0.044045523255865644,0.03931505837409937,-0.08781681969118763,0.020570791068451038,-0.015939638970786638,-0.040561232362266594,0.05880116728043846,0.030152620637961414,0.018072158203066527,0.03149645319007133,0.1023705943685129,0.002047888126120595,0.05359948484873669,0.043056788182877996,-0.03212245957594108,-0.0011353167162057851,0.009038522576369425,0.04871723468357181,0.06604453790580356,0.035412652199710584,-0.009439738929913276,0.005705272408247284,-0.041540741350614835,-0.04293262058198245,-0.030498233159289005,-0.0058614184991551506 +Adenine,-0.012144024521523767,-0.05736417246870906,0.018703503783974347,0.05030851728461475,-0.020080723617385703,-0.04622319752446889,-0.0038225894953111267,-0.10639807980085456,-0.04945504608820275,0.05173026309298754,0.07873349359533417,0.08368540804869108,0.03756912443815015,0.0009039104909381849,-0.04941870656997447,-0.02273083750721269,0.06396700631321295,0.0027389820253597144,0.07019453931428932,-0.05177710565196878,0.00982575400651188,0.06030908097342107,-0.0018034268083410257,-0.05976297917118081,-0.03040097957596015,-0.04101151381160568,-0.04553765804128035,0.01873786985427602,-0.043542249025874495,-0.036723184468047836,0.07887936041235954,0.005947067873317767,0.041792920262894745,0.018842419592487506,0.008544067236608045,0.022730166604402875,-0.08754152265166468,-0.019569426747200577,-0.06071871899930513,-0.008097917868234656,-0.03523334098226005,-0.03386256794961398 +Adipate,-0.003950092571497177,-0.028594612647727346,0.016446139387870342,0.08254910970527171,0.0008501395214663124,-0.008690381119424212,-0.0017544893025874344,-0.08206548622566037,-0.06538624745017023,0.05197755371190712,0.04218602824490902,0.03130669626553953,-0.039079229852621036,-0.039302871536819994,-0.009939416253699866,-0.03032386779980251,0.011030283829772204,-0.02697795086234252,0.06445532919429556,0.07999441583410692,0.08875687541447229,0.06955464864528411,-0.0014762087163344782,0.04941963999774093,0.046028417114416006,-0.02884242729504663,-0.07281737432163038,0.006410958801674757,-0.06332445362032439,-0.07225191103744853,-0.009794197219933624,-0.06973657277796491,0.09327271925579746,0.04128556605037954,0.0016828544678719963,0.026605824906180273,0.11254148590639093,-0.04050733269536596,0.013079839454991807,0.018268320275873804,-0.06150569291596647,-0.032602598143696565 +Alpha-ketoglutarate,0.02669792020284879,0.07608770551726765,0.007481678373472877,0.010281799226386128,0.013978193242100357,0.022233120039563136,0.014381853817129623,0.02415719802017934,0.06945566049575234,-0.013339624664442603,-0.020946128017578596,0.010050023772444358,-0.03829661363170276,0.06266253107503797,0.0038147408477968627,0.07488446455193663,-0.013439261789358892,0.07644407894168352,-0.03382856762531423,0.022213124347507635,0.050689566888150114,0.03486186696339681,0.06980305568261,-0.005206949296954886,0.052913378387521685,0.06390866882038991,0.0810093049681624,0.011534501345237307,0.046400215693707315,0.032006160751452094,-0.012328798653842043,-0.013998646848859632,0.06206928585779851,0.10869755036657656,0.13866423641349485,0.08793105594540347,-0.047067645490176564,0.0037405580384595044,0.014590803496330426,-0.0391197104144652,0.008989280689361317,0.05829796540779538 +AMP,0.02563513899894147,-0.06545834352627018,0.063393898856451,0.08518648034258625,-0.048031737125587844,-0.11676837388016677,-0.11174427783467111,-0.23410393190351952,-0.012665722870086884,0.19153727074696503,0.21270723838181446,0.18630515676329726,0.10869138875315049,0.0964249280395293,-0.1491601193668348,0.04907432726213703,0.20203301675009958,0.12532235137344602,-0.01702243563402899,-0.1139019510041124,-0.07141194693281858,0.03268381216038285,-0.06256702696218652,-0.11902137267490773,-0.07529543628295152,-0.040802334116850074,-0.12611080874293285,0.014610778315801255,-0.018915665204317977,-0.05366728836809077,0.0950406217360268,0.027248297487192107,0.05743134939308886,0.008144588346859303,-0.024944179691162204,0.01321760495086972,-0.23117370882955732,-0.08776020968570522,0.00019761172109035517,-0.021996406839646068,-0.07929254078755053,-0.07505825425569744 +Citrate,0.00591521777417442,0.06592568194245597,-0.025813962442492885,-0.04898816009398227,0.015234713571833062,0.05656928696732477,-0.002611824928356469,0.05987149137528328,0.05275432438952396,-0.028327176071655243,-0.026966686528921598,-0.02265688473227077,-0.03812587016158355,0.03043206900893408,-0.0081386066233884,0.09226607573061346,-0.0027570479156210745,0.07915112099807878,-0.07756935082457268,0.007161485757323427,0.0018149618241623806,-0.02037123275155148,0.07186962808974516,0.02112742549866784,0.04853356836598952,0.04138541479766861,0.11714634190741582,0.01601456957084422,0.10248990419536705,0.0624333538384077,-0.028493619419539647,0.0008646375314417938,0.038747962037204466,0.07975012775467367,0.07680002826657654,0.06139401912656296,-0.0064279036175246065,0.03966952042452374,0.010624707459029771,-0.035872019002892115,-0.02162894970620966,0.013074835317099276 +Isocitrate,-0.018909239642748477,0.027998348257597366,-0.017076585165920435,-0.025363454173817718,0.015230300776928132,0.009497484255889276,-0.029482197525517534,0.0703293245125557,0.04717995297612817,-0.029856129294420063,-0.0659946836678141,-0.05594144093564576,-0.06213483886208582,0.02330686155743351,-0.022735873550865832,0.08072058390579363,-0.0318686211397536,0.060820174171948606,-0.06833301783203305,0.04218021409121975,0.030127438245392074,0.010563684115530275,0.07838275266821683,0.026237787793161677,0.058355512609384215,0.07461817892904296,0.0845920003478017,-0.018763482284906343,0.05213261838590607,0.05403200043590119,-0.05597640852541185,-0.026781969163976654,0.031385542764867325,0.1088934531352186,0.1109288405761046,0.08392932986632876,-0.021025472808928865,0.0011558695071556284,0.004024915187193376,-0.05584159033502485,-0.03233534219285799,-0.019551417826114855 +CMP,-0.001842407182830571,-0.07141298753995144,0.04822454758657308,0.08576946479683194,-0.016980870435438958,-0.09309050576170759,-0.12145758422919736,-0.2005790648452611,-0.0187362209076349,0.16110802994846163,0.16911710956707574,0.13640522483506773,0.08127408656408808,0.058509858885870646,-0.15595422513096543,0.034640083352734496,0.18497632294216013,0.11971982544419499,0.006923932718412987,-0.08407722675535968,-0.04192311068065743,0.06036215936824749,-0.037470240601412436,-0.07801236140066027,-0.06433319761049705,-0.010992773720674642,-0.11398813144248307,-0.004030858879989998,-0.061530645701174676,-0.08069189423165904,0.08256856302404011,0.008617675121820989,0.04591713593833689,0.019762558204927477,-0.0074222599894784354,0.03220563568766118,-0.20871664681740204,-0.08060476075945129,0.025299014224021383,-0.01407983653315095,-0.08061539764000497,-0.07516035544099176 +Cystathionine,0.017385820158335747,0.017600504654994867,-0.03970237873404702,0.04498855331798747,-0.08162844087976319,-0.09902241815218354,0.02724011959409703,-0.058946512886537676,0.00326829712093261,0.05714880828924434,0.12460779832422754,0.15225398731468265,0.1340136784406326,0.05502921790257414,-0.02502381585591994,0.027760289296683865,0.15396210442460026,0.11249833714863543,-0.0017647464278023946,-0.034120279397905226,0.0694085797703641,0.10874417970044038,-0.010591170565472494,-0.10182423428688159,0.08918360223676917,0.11567383514370126,-0.024810937809981046,-0.0754947860533908,-0.010667844267527097,0.06302473654761946,-0.04927311429152663,-0.060401498558985675,0.04381201428113083,0.1087719163680385,0.08725608334992738,0.0738942003011092,-0.10530916607662714,-0.014288222187779538,0.0032648020616064654,-0.0002348845987457272,0.0002513683752015937,0.007385491079233834 +Cytidine,-0.03162082416394213,-0.0026138175301470197,0.08679786544836743,0.05453989531705662,-0.05112726835533198,-0.0988042794240683,-0.0396532154261994,-0.16419655686925097,0.06407505343781586,0.11003353807528397,0.1439473548287898,0.12699886715602332,0.06173008661312666,0.1249815997396708,-0.11072316661181024,-0.02080215947403285,0.1579026969957665,0.09335248199594838,-0.045513071058310865,-0.08510006840067215,-0.004791423785504335,0.1014533499979447,-0.03051456752497652,-0.1273444119405312,-0.03635303942661717,0.02944936029665425,-0.1404713607584039,-0.05086009107726849,-0.09829749337674662,-0.008677283687618829,0.06448770968317752,0.030311172147650802,-0.00570887056714891,-0.006498251361334126,0.005073432490640373,0.030521402824135953,-0.1577866762617565,-0.06418446823763717,0.034325346177384114,-0.025710478486659305,-0.04183172530683848,-0.044449228449409614 +dCMP,-0.04266682883456771,-0.07447341926926823,0.01682796766688308,0.07153584885659346,-0.0663952577073115,-0.12230781869898341,-0.07110464384026956,-0.15935372442119147,-0.04018908187419461,0.08858829355263621,0.10368791245625762,0.10855789724108461,0.07070429808302696,0.021431033323788064,-0.11484575367400565,0.00955236667126166,0.1473427299907899,0.08172727992505348,0.01591237952537915,-0.021653737989063178,0.03647533297238026,0.0968529768918206,-0.029165388281276204,-0.05165777523225563,-0.030864626428380813,0.0032956752821107567,-0.16504367313924034,-0.030720234326352177,-0.12388297919044365,-0.07805364320672942,0.004755844142097643,-0.06312586050634342,0.047896592800698315,0.012146432916959568,0.024305546696808313,0.01779825786181497,-0.09366500818416515,-0.06342077138264851,-0.03626562988450186,0.002435845270576443,-0.10999820246532876,-0.1460845020648019 +DHAP/G3P,0.0029396860826741353,-0.01972990808069706,-0.046651531298822047,-0.030969494890895097,0.036997577115127564,-0.031020623730278488,-0.0674063953024224,0.0763696917215116,0.057712814555991684,0.010304833643898953,-0.03516725513467289,-0.06603608602181488,-0.047257466878090994,0.062158886586758104,0.02889628413985426,0.02711484439406801,-0.05660889521064809,0.010121215274124507,-0.06221085268147726,0.14724316689592062,0.06374537147081637,-0.02064926124234105,0.07590032624424943,0.12159400038416399,0.06304235539293368,0.03784939857154819,0.08451187186492042,0.07140817253150769,0.03318561915501324,-0.016043750360055075,-0.05964212093044532,-0.057221899654466855,0.08693995797963741,0.08461722676505856,0.11664039300704263,0.06510245653461144,0.005967382199923794,-0.012890307656524765,-0.06740477264326443,-0.03486297778576689,-0.004614496740960744,0.01936642007797231 +Erythrose-4-phosphate,-0.07743582435346814,0.009554210464976592,-0.02883292823823127,-0.06738638569941072,-0.0354762263694039,-0.032922852677277264,-0.02624591921931332,0.017578100877138035,0.0007409523373088944,-0.06372972047459889,-0.056225375677781436,-0.04032459841151021,-0.017937618877159195,-0.007007135030547045,-0.026149409520934218,0.002517412741889349,-0.03808445400558786,0.009150306816575152,-0.012282481961543286,-0.010324882860967138,-0.04234330986106086,-0.04716449415563825,0.031963735586180826,0.009370605195097765,-0.028686740654338485,0.022084361444723026,0.029413112234268304,0.04023506070982572,0.04131050936239247,-0.011377230767798155,-0.030347381520325883,-0.046055244715817754,-0.03189116484234925,-0.006048072719974652,0.011469472175943901,0.04020534207628309,-0.02239984349811357,-0.051147736321620875,0.003384540041536331,-0.06765813656779436,-0.00010550611393612684,0.029617991167995565 +F1P/F6P/G1P/G6P,-0.006405499344642938,0.09055174758482763,-0.0021760596609413574,-0.0668573420032783,-0.014440952357919062,0.017238869568927628,0.042523396766502256,0.08735760504151743,0.032359557088046886,-0.09555153763564081,-0.06760017607864911,-0.05152048755744661,-0.006695388537831615,0.011057910409372974,0.033629829307834216,0.034235160094930515,-0.06632423180389889,0.0205213944173202,-0.053607039297097835,-0.04953828160214193,-0.058072268432819665,-0.08174225606266732,0.01858904540333212,-0.009333461491893572,0.015798339833625427,0.05250844165133658,0.10357383681810893,0.03777676501624604,0.12552970384993825,0.06843185060955582,-0.0400894013739788,0.0024041941085325065,-0.04115974322792407,-0.0067603973297247,0.009015217035504518,0.018952205600010714,-0.019840697513756295,-0.005917663656446968,-0.003305441434234255,-0.08341692442920497,0.03019771208246978,0.07013416107122197 +hexoses (HILIC neg),0.047034870082537455,0.15536081623444184,-0.027420938874288647,-0.0708891015524025,0.012635778929455055,0.12626414149587736,0.12211032213057525,0.21548469112838042,0.026235124575232183,-0.17214606870757465,-0.15581432370993595,-0.10336029612640273,-0.052544774891453525,-0.03926627494547465,0.16295215143871808,0.02196588749897776,-0.14107030875072615,-0.03420318208939616,-0.0005307722318759129,0.035078578412788206,0.06231011771105951,-0.05912503454969093,0.033466296789069865,0.027677681282188154,0.10405046332507796,0.08283865141744665,0.12351469126008105,-0.020052481892550197,0.07712668486196791,0.13194543289160185,-0.09599707444233892,-0.009349899410401442,-0.042140546833847145,0.007208787532071491,0.0459939026827643,-0.009798233751047132,0.17496689059323423,0.05172871656019721,-0.012781900807330797,-0.016983781890012695,0.09217031231294798,0.09604510815367286 +Fumarate/Maleate/Alpha-ketoisovalerate,0.05211585122382587,-0.0033247020292691254,0.03373974021065744,0.03436389079187029,0.03107868152031738,-0.008836812905789729,-0.0718509949226782,-0.09049796356977832,0.06445412829104258,0.11944298734020793,0.10514039159664634,0.06911370123453316,-0.0015098562640236412,0.08523106882283339,-0.06855418491408057,0.0937524098041573,0.09108144833519975,0.11754310025768608,-0.02643480315803801,0.012470035826432007,-0.016851535679950708,-0.0025112578574864484,0.004745894400123205,-0.013409298502297181,-0.028595303792958784,-0.02417092329111438,-0.0060586903155284986,0.0351247549306413,-0.007523607220895944,-0.0635523800675985,0.042967244312622194,-0.0350142345357275,0.1050247227563739,0.08166595826343816,0.06120975723928747,0.05418423603981138,-0.0677603740384354,-0.06621076934104805,0.002075460989721228,-0.04115234317034231,-0.1016975816481612,-0.10312453140538247 +Glucuronate,-0.028953590002978948,0.02490868935330795,-0.06455635234759496,-0.0344286573752136,0.0497126341496319,0.0534884246757328,-0.02194123740338353,0.0016739887585743214,0.03245778543249245,-0.026290635522210677,-0.06765642166553047,-0.10385610119763572,-0.13964156307386108,-0.0066389525759827876,0.02909441092029089,-0.03906677699363772,-0.07008423736107161,-0.07977570390467176,-0.0746043912298827,0.0752781369384774,0.01645164145173754,-0.036214299259157486,0.07835131304669879,0.13261395708150908,0.10698356957626262,0.06459324211869323,0.12125861909054225,0.1087246112999824,0.1322640978617503,0.015870211830180895,-0.015517760016730303,0.0025355944489691188,-0.0070252859749126125,0.005573003829440892,0.007614691909388799,0.04757008636109268,0.042218747007080275,0.07607585612170818,0.03061821762749594,0.06927490459308755,0.00043341013455594425,-0.031115118169944278 +Glutathione oxidized,0.02241438964455995,0.04089542863670713,-0.01421521982378021,0.0010499970905024913,-0.00656738943718005,0.022393507435116092,-0.02124982269476691,0.018570025793736924,0.05753918271067234,-0.011308802537684143,0.003992828126732135,-0.025618004662124702,-0.04207237516156358,0.0813353316346632,-0.013249567282739782,0.047764047958014956,-0.018589862827430557,0.040806023449465635,-0.06421403331889182,0.03464079723649434,0.004932755546595278,-0.05339598016733919,0.06492750403308245,0.03444915378546488,-0.00770464621693547,0.004054491562835699,0.10926948224395966,0.05547491343974623,0.06876973974057099,0.002880457279057329,-0.008062360975191807,-0.02631817011153141,0.04607510406957864,0.05061557486610596,0.07662586045648048,0.02848383667967955,-0.013979337212155952,0.0197833271803994,-0.028838416707301674,-0.03907456974577301,0.026665334612021918,0.04883232156912994 +Glutathione reduced,0.03525836301433889,0.016903294374084762,-0.00560065878626154,-0.010215256254564762,-0.036072760396315906,-0.015580974863117011,-0.059135926491607725,-0.016468283844294607,0.05623259931186337,0.023804304908649192,0.04327130583488771,0.0025186366567685123,-0.004749114208576515,0.09436032246170423,-0.05738886374861118,0.114480545177385,0.005817688386976564,0.10616737743561279,-0.056400150871015596,0.025391555861196687,0.023333686474204196,-0.029703881040290044,0.05098282129872066,0.019407445524701854,0.036058268323970306,0.019626967939785408,0.06693715325585699,0.033012249108345555,0.06577810602016441,-0.008668172160989262,-0.030239113044706948,-0.042268365524246294,0.09727810849042783,0.09476058621567396,0.10847655311031369,0.05502453183785588,-0.06514456901963407,-0.0016317108796659204,-0.032110192026211154,-0.05530336319372564,0.006821796464734246,0.02599432028725669 +GMP,0.016442360480152116,-0.04958625309941554,0.03142540287297755,0.051329653979908796,-0.028356527992571358,-0.09451248857262304,-0.13354715022063327,-0.19434576601412315,0.021267574896685234,0.16712700545622142,0.1725123836918755,0.1374721719305045,0.0686985377031832,0.10770687611958209,-0.14434838559353055,0.03442707920987197,0.19793332820398293,0.12424376329719991,-0.029985478442402326,-0.09151734565105356,-0.04748340823496641,0.03890257368188269,-0.032922130223614274,-0.10519038893906595,-0.03993132029925802,-0.007604605561088475,-0.09772547496734027,-0.013520936239238179,-0.0014138914392372373,-0.027309637309348846,0.05990751032025118,0.015747365824161304,0.043929985986557146,0.029051651640503585,-0.0023789022531637695,0.032481636907952395,-0.209551725999189,-0.06873727297034675,-0.011455395527210985,-0.019015249243988598,-0.06111089589327629,-0.05821326864940972 +Guanosine,-0.06084073519498081,0.05828250717489882,0.04465603029592777,0.006303773251393766,-0.011188201580882559,-0.08061546303957982,-0.009660680823925469,-0.016087733513006196,0.11495361907604082,0.05683166488647789,0.03431381545548211,0.024213031450255697,0.04196668386972017,0.13432878869107,-0.013415354147219956,-0.046112759568896496,0.07783747318506,0.03227768667025326,0.05096204357183734,-0.009272400733172282,0.028011795041044597,0.04251278694994768,-0.018167507490566403,-0.03453003794379069,0.008189352566391198,0.050525794554067936,-0.06872086323694614,-0.03911218611276653,-0.046863802063036857,0.024133242916884,0.021394918726394156,0.018754990412358865,-0.031720392981577826,0.011575920082769475,0.018353469325914588,0.01529333789832395,-0.0380844509980973,0.020205185592816224,0.02683573539019411,-0.00013910443663633286,0.005035919056556965,0.001926662264775507 +Hippurate,0.011636916039018714,0.12994960285617468,-0.0099911150266011,-0.01416202024576385,0.04980902910895733,0.09846084982475634,0.06358989931975487,0.19092677946470968,0.05406167267155151,-0.10887218203362976,-0.13957529697687443,-0.13496396378120779,-0.07762609631346344,-0.02501062207546982,0.1358730225009314,-0.009542085386476683,-0.11405389951502352,-0.06993180781103679,0.021558637828751333,0.06302175176514595,0.032214015009769045,-0.059989310316765125,0.03829520049874625,0.08043079156066774,0.08787133260648135,0.057761933989359644,0.13488361854835335,0.01810090187941314,0.10927288098448931,0.11503496884892772,-0.04767853310298104,0.04230454675710396,-0.04886980006451791,0.0005942847454356724,0.026104206996463906,0.002553210798336075,0.1514670719639246,0.06891399004519144,0.04852306157058804,0.017775188354711466,0.04282374643719122,0.08601369223476572 +Hypoxanthine,0.01714123516356903,0.03531722702876563,0.05430495596642645,0.0731611960243446,-0.02460061865884022,-0.016827740354250803,0.021295384823692354,-0.044202861843401886,-0.05095975077267406,0.04715720673155463,0.06595919381533377,0.07002314099742114,0.08339338551634684,-0.004105945177439535,0.02680824861413931,5.116098185899582e-05,0.09022618729706554,0.026712153970071626,0.01742480860640329,-0.07280541093092019,-0.021988914918550366,-0.011010197631890362,-0.08266985274125076,-0.07362574954921892,0.020006647739960772,-0.004224876322312584,-0.07532676624524247,0.0067424857000454586,0.008236724173538375,0.02223914961735641,0.027400407090966344,0.007145885273921636,-0.02325460852265548,-0.0434774755469727,-0.05004743022469508,-0.033218044423920214,0.02311020248209857,0.010825912484330343,0.060002693750072535,-0.008702814841920455,0.04307470058521575,-0.01650220755804457 +Inosine,0.03975035710782566,0.10392583394761497,0.11474214392474524,0.0421075079603505,0.042949386396421894,0.007806396747835831,0.058685808353945164,-0.00012057373838731425,0.07439035762607511,0.0643845650507016,0.07601715256059577,0.0673317755715871,0.0684908479108055,0.10698487070684431,0.0775341293571258,-0.022915130914409894,0.08723780419986844,0.037644078379170574,-0.024869782911122844,-0.04979612263231445,0.015015730857788503,0.01976842992356105,-0.05405775361978419,-0.06255694185658799,0.011509031170099162,0.06249105727809394,-0.0845975737545417,-0.016551204322488727,0.007341155147514414,0.06993079806819233,0.02670812035757843,0.042607564396125175,-0.06164704935461621,-0.04455399235693993,-0.023130441762117593,-0.02281797046018844,-0.020423439687075173,0.029502979663023298,0.021291521862533965,0.047475416869647596,0.058168023710642,0.010547053988682524 +Kynurenine,-0.054902631856426576,-0.06198551776130025,-0.03623628824456695,0.0004859978728429488,0.023483265485780364,-0.0009471724375842575,-0.03258738366796407,0.0018900729708601963,-0.027618385977758775,-0.014527192511502855,-0.07630210082790839,-0.1062637174221931,-0.08636921134278598,-0.05961320699754177,0.0045821470416209185,-0.04946879693475867,-0.06678199415781885,-0.07607579380833485,0.10333251353277641,0.002174241440529042,0.0028842810065877835,0.02329884549339124,-0.046380574300613306,-0.02209818987026789,-0.025104344571974864,-0.025059308874667115,-0.07751641131439925,-0.06482791990506497,-0.032537441258623165,0.01087020113877485,-0.0485700083303546,-0.015018519732102869,-0.02677245642577897,-0.016175220965749488,-0.03905278238387479,-0.03486583303247089,-0.0091045258811876,-0.05631624297246799,-0.008941798051973607,0.002444072685666893,-0.019843186034725242,-0.018873262972459174 +Lactate,-0.011952663666411624,0.026653982559810562,-0.01929553852153379,-0.006172076591378403,0.04194834120066562,-0.021010868103186663,-0.05389000524856934,0.0653067326828549,0.09981841572631833,-0.001144458536211039,-0.055583896887090804,-0.08274260133950354,-0.06529342517976512,0.08138781956879988,0.0006034213510343451,0.04788207739839021,-0.03276210506424327,0.043510319954458775,-0.0817558856093074,0.10919353670855969,0.025792606154454438,-0.0426012656844799,0.08709847228608046,0.10834426749451323,0.029799116371028864,0.021667744341795983,0.13919307600789668,0.04566545639997275,0.024103607629938746,0.003228318008046248,-0.019220825007524006,0.009024882072661947,0.06059118388285077,0.07996365862885844,0.14097611994215242,0.10910309042169625,-0.007199050638320602,-0.03662780187759845,-0.006202738918441528,0.035983265009510136,-0.0006646269351930821,0.025782014744089875 +Lactose,0.06235159504391612,0.13507271548502414,0.015593419485783758,-0.05074318622372866,0.0386124465406335,0.14876463222763633,0.10999904731985327,0.2367610814989559,0.06002840755471159,-0.10126174537389009,-0.08890602243776952,-0.08088746626375692,-0.016875614280604516,-0.00026337180987004937,0.1629808346120835,0.028162939140854375,-0.050930662129773215,0.010519680383709514,0.013486634488041554,0.07552067968917894,0.07676407289858596,0.008314428654219125,0.10754851677689385,0.058999007756495636,0.10493689653288485,0.05897148527754472,0.15350195748538656,-0.0030107402050479036,0.09844089817485721,0.08689485816444348,-0.06584501275238519,0.006516546839755581,-0.0088545459456746,0.04690604204489815,0.07881098785884157,0.04408005556464267,0.12204176571417974,0.1211539054528195,0.017689701768089778,0.050205326888448344,0.08865977377397494,0.08154662745593416 +Malate,0.042542246595967406,0.03402050322834768,0.021237480299937335,0.023593113475285706,0.04625688209069197,0.01960765515528405,-0.05681438228730247,-0.056867146283091606,0.08059649940408471,0.10193798899260362,0.08132371843442777,0.03978866761692663,-0.01747771292702461,0.09046801773553549,-0.0552546497925733,0.12959665076922458,0.0668621877807379,0.13642209201637484,-0.037622724138843475,0.030227249024454464,0.004347258465303181,0.0062077210086055505,0.027367282674120183,0.0026037934743088787,0.002361704648921036,0.007398471599921171,0.024781975291795356,0.03323418833829414,0.02061992162101468,-0.04031920312296137,0.035521914399361774,-0.00605672300310497,0.1223995369828786,0.10517406070541797,0.09646256669448898,0.0753912127719737,-0.05719334459882104,-0.04254995022300491,-0.011918605314219585,-0.012784545464373027,-0.08994022889352052,-0.08608805259985415 +NAD,0.01903564314952891,-0.020938850052395083,0.018350503322501238,-0.012146525584308236,-0.0050187176611884285,-0.055522934518006925,-0.0703629172855793,0.04359204954672074,0.05768521156036227,0.019818058982133117,0.0020477881490010485,-0.02048345886707256,0.010662231127806471,0.08195504965549971,-0.0611339938638442,0.02801759024269542,0.0008721606387637349,0.0296970811768127,-0.08409671925312567,0.022669454723037493,-0.07561129728434957,-0.10349286596221997,-0.002564892209310501,0.05063229220069242,-0.039874636269010486,-0.020867908966721464,0.08670087940123831,0.07165418216361948,0.09386312936357659,-5.7809823204399214e-05,-0.005102469834424969,0.0008643055767909761,-0.011049074370483584,-0.03129749177898026,-0.019443255842358533,-0.019586795289341374,-0.13105821138561913,-0.019646249378010613,-0.051358712044579785,-0.03164598195011859,-0.03220325317212145,-0.015352830895735645 +NADP,0.00048398462412769985,-0.005520522444071997,-0.05978885700037357,-0.023667791868357747,-0.061370287163302555,0.005110043002931547,-0.016152028193228453,0.01584303206084694,-0.004937627585569254,-0.039588497003592134,0.009402578061200503,0.008612760100601406,0.01704887462574529,0.008563777575811867,-0.04592266008380146,0.04385201726883529,-0.029852625006797123,0.0194248922720921,-0.06374894233071013,-0.011271958522135085,-0.05141730893720789,-0.09807539998372775,-0.008285855640125881,0.02548347130632383,0.0031578680201946683,-0.006815707292212564,0.12512598509085646,0.05718226769476144,0.1174181541454202,0.0543285623282143,0.009381913080203329,0.018632380055699876,0.030802863359065145,0.019225463366110213,0.016962871588350713,-0.005650795208822475,-0.02754941759653803,0.017695677178576626,-0.019986436606110908,-0.017544732881732788,0.019830823752812997,0.02704859346943356 +Oxalate,0.016702782466669237,-0.08543801429617691,0.0060165187267349745,0.09087273487021895,-0.05785405204497708,-0.08256520601387612,0.00227638182724728,-0.13327142567417802,-0.1078282190761907,0.09175373407916644,0.09597797338472955,0.13337107313883056,0.07034577276703703,-0.03971193043653399,-0.04018053955247688,-0.022428841013920023,0.11077544785859585,-0.004277864035933779,0.12149067114406457,0.028967364675819035,0.06507677468191672,0.11992937319936352,-0.02667403313028331,-0.002999616570889527,0.0073012304950203655,-0.04227877944825806,-0.15787385106861487,0.002469130652713804,-0.08331475908263701,-0.08860506337373104,0.024424384510564237,-0.064261046403859,0.06540198211570829,0.033481717999662146,-0.02749875986740956,0.020289287114184998,0.035586925945160365,-0.02716323189835756,0.04250844356271833,0.02808246654231085,-0.06319175090304331,-0.08065934723628886 +Pantothenate,0.0700231271463558,0.16297569415921243,0.11756427968320615,0.07514017626393486,0.015570266796128681,-0.024340605076741455,-0.029132739860813228,-0.04932320517971287,0.12866125476234244,0.15547096969713797,0.1561467669290195,0.1323627190220419,0.08614646663132018,0.1824964231975688,0.0017003122589579864,0.07027434745429928,0.2186209218454909,0.16869641978379588,-0.023581725027238903,-0.01618616306297981,0.03396105431696437,0.021280152456700223,0.0484719455434444,0.00808693328845689,0.07093254797365814,0.10634555026999633,0.08172188446182418,0.12077140696894571,0.10189185958589572,0.013981352740997018,0.13613016770381403,0.05280672155501467,0.08026603301542536,0.11180024972567923,0.0818011325917565,0.07561379228538734,-0.0014970059337646717,0.05472763190699328,0.05956384219964668,0.016509163375538972,0.07005411810791642,0.111985463984933 +PEP,-0.016664240553646424,-0.04765205422655423,-0.041043951590110185,-0.04267192058224624,-0.02615467608663587,-0.1095859037152131,-0.08574536427474426,0.039567758453915296,-0.0022901975504771603,0.020652322759735327,-0.03197315334666964,-0.030896752104703464,0.024284010583517073,0.022888335375085167,-0.041464786246246076,0.047131412058253566,-0.031229226449267355,0.020292685670074445,-0.01799829666407478,0.041649199841506876,-0.050905812067450686,-0.054789842295710565,-0.0013721600413769493,0.04280928112489862,-0.055176276594930664,-0.051011315313937655,0.008418498968669795,0.06274920393978983,-0.025747442818082448,-0.08462000998300363,0.03395329312840182,-0.010505619215332131,0.079238933852587,0.061830956666383816,0.04580042904417483,0.01713778309941886,-0.02872333645167462,-0.08559813062233182,-0.013864194523696785,-0.009718991453655906,-0.03773473594878216,-0.03226563696180461 +Ribose-5-P/Ribulose5-P,0.048068050674482984,0.06840171015228,0.009574076862866258,-0.021564564905079037,0.05945258562463517,0.011858556355574349,-0.03029464757261145,0.08761625064832201,0.1029469645480637,0.0004517426856426703,-0.023808514786636408,-0.04727851441442954,-0.03348881537217526,0.08832417922163882,0.014987945597910075,0.08034587537222188,0.01185097911687042,0.09540987106319597,-0.03962072004610743,0.12724606943669,0.06564171159484185,0.014300914731833512,0.11837238022441876,0.11451394723003609,0.046232544700562685,0.011391669304791937,0.10621975114427742,0.056076702826870474,0.000711709303895909,-0.049308174560721015,0.005500640660186582,-0.028659715204870186,0.11688324934676593,0.11498575393693844,0.14564221404630406,0.11849085817672893,0.02734257145635019,-0.025026515728557477,-0.01821660178571203,-0.03360912271418019,-0.01160564491358638,-0.0011903235533621676 +Sorbitol,0.04788417049813777,0.09106587824716501,-0.016632229440366415,-0.02382995657354172,0.0627987366672871,0.123657088759387,0.06393386728537671,0.19142813424234928,0.05355354719609116,-0.11153040792534939,-0.14224333875113088,-0.13118101953260777,-0.0975695260269936,-0.016180489616181785,0.12517049597873744,0.021973151525928776,-0.1554810793042455,-0.048979261510245786,-0.008861492553683889,0.05886948066682672,-0.009614946586017113,-0.11163047720581692,0.024612642670867546,0.0801894030061007,0.039840409534513455,0.04444692439664233,0.1602714389109886,0.048535063000521746,0.08435210436202879,0.11133278302511976,-0.0006803776736351594,0.07265116972107927,-0.05201839913871503,-0.010463867402139431,0.030492985675434115,-0.015768729241600023,0.09992186357428455,0.0531566267794817,0.015410368406549503,-0.0014322281179748753,0.042472717850672755,0.08112585068607461 +Succinate/Methylmalonate,0.04453358478395675,0.1080491197733854,-0.012680813130382823,0.0195336270541621,0.022160798420721307,0.09180426579943099,0.04529616886740002,0.0723185203991794,0.04063589299689323,-0.06599478338061775,-0.05535895166780069,-0.032449209205808134,-0.03575899161878557,0.0010422542545490698,0.0521399297443983,0.0492416522090204,-0.042938588872108344,0.026224802751073664,-0.0035362316110787145,0.016246394568300914,0.01093389943728321,-0.03874143683265813,0.037500664372465575,0.015768459845261044,0.03510080930967895,0.039533458146740176,0.13378095718971075,0.015911664390002904,0.04107163897828803,0.0492630771217212,0.0003257966089012348,0.030837559950007826,0.019852336727114405,0.03546784818388157,0.04068865782088494,0.023068493202222595,0.07653889678574262,0.007967949174084313,0.05533403090269182,-0.06003254241634491,0.02495663343813351,0.05387784574434401 +Sucrose,0.011647067042180955,0.08898866741411722,0.009628016354145345,-0.07401359775462939,0.017702246547607662,0.06458752409003866,0.05716997340365983,0.13202000573568612,0.035406564732925506,-0.05686944877415786,-0.04413691050045714,-0.03536850566009835,0.0019038579793392858,-0.008023382927438793,0.10821531171408329,-0.03212326415095566,0.00053007145162433,0.003883392843430694,0.05329925317086194,0.06424263108574899,0.05191324464962062,0.007777725120703027,0.053127780382975956,0.062136688714890295,0.07321794219134287,0.0653440315605047,0.08457368148078048,0.031290635366783615,0.07473368895481083,0.05434637618532614,-0.014812022965455696,0.0040932540489781516,-0.025667470850238846,0.023432850491697393,0.013116182848593533,0.004394064520947799,0.10552751278049245,0.0779284104237028,0.04454082791416476,0.060966959529317834,0.05881011508300518,0.04936260145907116 +Thymine,0.0031394124552582103,-0.033711016670871376,-0.03072120015834372,0.00255153373430921,0.010569715959329231,0.024918483893910503,0.009216652331207578,-0.006566027582715245,-0.017573302389803064,-0.030044001622119364,-0.02535673130974326,-0.0373569592362347,-0.0029263517502571847,-0.0344867918261232,-0.00015360377235925244,-0.08596769680261312,-0.030128498355193666,-0.08644223369152432,0.005513844327709378,-0.07322891263009161,-0.0711772664938466,-0.04693750296287687,-0.07308022484833962,-0.04337714144071489,-0.032178445857184,-0.03001210739561485,-0.07332814157804206,-0.011371838765328001,0.008552030857301897,0.025880471853886047,-0.016969134228220245,0.0221157400671815,-0.1161718132135932,-0.12524799584754065,-0.09782033237434085,-0.0676240911042276,0.053574173579330184,-0.026966469835593965,0.046327281671412146,0.052423989913607555,0.055006375899057096,0.08189735561234157 +UMP,0.02940378581940073,-0.0760748626378709,0.061625236180165584,0.08546603465246273,-0.024882344879581735,-0.10193475514282306,-0.12057567075937486,-0.21828065577738306,-0.015386921378290187,0.19934663053911134,0.20436314490493215,0.16251201205591106,0.09422234260744505,0.08628212126483838,-0.14966568496665247,0.03452782226919364,0.20383474437896498,0.11315526469698363,-0.020783846633666864,-0.0805557153038377,-0.05195747951345949,0.04514187526115709,-0.045151551717947186,-0.08448331445231112,-0.07535039537753101,-0.046209221178137784,-0.1154851743877556,0.03193095801226047,-0.022342093435072024,-0.07624715277971525,0.10247004932176701,0.029965227004086614,0.05817066288310752,0.021130182059833916,-0.02640409086119479,0.016678951426909255,-0.1945338111531878,-0.06688370437235011,0.04528768833044462,-0.008486067265628167,-0.06550479389507742,-0.04409639274785395 +UDP-galactose/UDP-glucose,0.011396978909598614,0.01667672409203099,0.02624925973294197,-0.007693529492814036,-0.036611398755835,-0.0348291364781782,-0.04077276412651499,0.03779393335986301,0.0412295642986172,0.005295792233173629,0.007527544476061634,0.005022692854528877,0.021546539476300548,0.06963088506305937,-0.04257627744827194,0.08500498585084361,-0.019488316530794626,0.08073455399946525,-0.09580777351213811,0.039580358309805455,-0.026096607183298703,-0.024269700133575607,0.04725416839730324,0.04563544941169299,-0.03559757223548102,0.02272990171454689,0.07392666778686625,0.052589288232242376,0.0338700414718036,-0.02391496467254114,-0.0033015895272979707,-0.019193803443795288,0.03086045211276008,0.03849603678673058,0.07577857009871684,0.05022714164158975,-0.10371344468589018,-0.021589757311382844,-0.002294763912040604,-0.07485512138873826,-0.021812725557128303,0.020398983612370795 +Uracil,0.05219471144145087,0.08865422170140182,-0.03887821533110582,-0.07572705720348734,0.06541347677299086,0.1376614996655862,0.03920860958120497,0.1823126857387258,0.009448510342118096,-0.10503347510925272,-0.11833394132049954,-0.13569885191825912,-0.044063077343290534,-0.05171689564333821,0.11816395670160008,-0.016256524132370827,-0.12543793822047714,-0.08265693853866739,-0.04323541430672192,-0.006639265451891906,-0.0393508049368557,-0.11812514443349419,-0.040500232015922406,0.027876447752853535,0.016367251826213583,-0.014895185003995098,0.10242750086408278,-0.002656693442732855,0.07656324902100298,0.08647834010292195,-0.026017568761583978,0.07170626950207042,-0.08162341271878847,-0.06718327612660066,-0.054593911245745363,-0.07761193720994178,0.12082124159791659,0.021594603805159714,-0.020219948253922468,0.0202524058285393,0.06412269517674941,0.0914974515223424 +Urate,0.007612425633436403,0.07452312705605939,0.003467397528012552,-0.04341446131883019,0.08558157383562243,0.07036077593717203,-0.012258144952487652,0.1453373230636066,0.021359916628654278,-0.043035831013581036,-0.10558490998502504,-0.13452170199109648,-0.1106885123232271,-0.012502376198842466,0.07771598282034761,0.021361063604462438,-0.10688292092245442,-0.032609546081190995,-0.0034849941512202147,0.06433264692544705,-0.0054057210674200145,-0.03656178809288841,0.04453223242003344,0.07376715512059268,0.003564560458060597,-0.004749114010923137,0.08636851819204648,0.029134422193638144,0.02163569170107208,0.03778706057185435,-0.013011636652444258,0.03765909541503975,-0.03286512703937753,-0.000780725477013464,0.045857811235051074,0.03245320345974127,0.09181902485908316,0.0020550626118642254,0.023376105584813067,0.05100684303782353,-0.002632739259204245,0.0144380261739394 +Uridine,0.034519899971311996,0.03936806733003797,0.027620253564789338,-0.029439844344999782,0.03028112619646722,0.0281397646927713,-0.011240245286719568,-0.002583264014470668,0.02889546551475884,-0.0008738859363936752,0.013055116309081257,-0.008946436439601866,0.008530020395453869,0.03195161904991296,0.016756186095766422,0.04490459111303381,0.04452645289473515,0.05710228784624882,-0.03525975675342948,-0.021233235627163095,-0.041941943728764954,-0.002245136256453678,-0.0056744356592749665,-0.03031249238378201,-0.06816784969648312,-0.0452335054466501,-0.06271915916844664,-0.02463624400072597,-0.05410608458603941,-0.04435415689328815,0.030895900991846904,0.04236079786395173,-0.031105240437913833,-0.00862420749549228,-7.064334967019476e-05,0.028643125480881555,-0.03592774318937189,-0.019921945893890444,0.03042711005576729,0.011871672175181073,0.00047811047787882507,0.008548074884518062 +Xanthine,0.08915909120004734,0.14298170957922365,-0.053630920876141665,-0.07306347022010787,0.04465883988255624,0.15445844104503778,0.07592183078242572,0.20078628867376777,0.05637848926850888,-0.13189747412963207,-0.1198053278422088,-0.10214244452853523,-0.06535533157976647,-0.01657362170374734,0.14380703721015267,0.03855307651069168,-0.13860705846843133,-0.03317297647669181,-0.043205980565549515,-0.010132749895106227,-0.004564358234662416,-0.09319121192204166,0.037531122686946576,-0.004366994187195442,0.05184073975385233,0.05435013179676029,0.17198420571995177,-0.017129524931727095,0.10972183641503526,0.14613767522757543,-0.05416768880091964,0.06101648638026681,-0.06845618376973553,-0.008551617537922152,0.030430088611685616,-0.013951455758429383,0.11885804964778501,0.04064309297198213,-0.024116599073873205,-0.0012539979623636083,0.0747002681781018,0.09180226958372555 +Taurocholate,-0.03828460406284892,-0.042603163456427395,-0.04652272029068011,-0.04879117536568793,-0.03997119584226634,-0.010156457685355419,0.020616968270256688,0.007533737526412354,-0.0023913973473098826,-0.05294555040253165,-0.013432029835737434,0.006148220487580643,-0.003534915988935416,-0.006559263425649468,-0.011265272464544646,-0.0320385488179304,-0.06480562385072938,-0.028137388142613552,-0.039855575304338385,0.022451279559385917,0.018694110173921485,0.0001712647885607069,0.015960660979574937,-0.00017885617521497252,-0.00838640533689977,0.016865953170710636,-0.007288542577327887,-0.04729346818136396,-0.06408808802410727,0.0016574381713211155,-0.0601829712222139,-0.05899892920912899,-0.02781013637913309,-0.021915672664245454,0.018651625367279517,-0.028460805388784455,-0.006896017097638842,-0.07394848072082699,-0.04580358618717631,0.01007296418245781,-0.05410347504597935,-0.04115620639189887 +Glycodeoxycholate/Glycochenodeoxycholate,0.029182715760478005,0.09154271927450391,-0.02499287101507681,-0.04355818573196602,0.03166599395312495,0.06498481379353555,0.05515885411073968,0.12567135603473537,0.015066731532207403,-0.08541750122263228,-0.11035908432079825,-0.0994714259336516,-0.07023279580430693,-0.03829065867188924,0.10593428845119343,-0.014362970537012455,-0.1261170100549427,-0.06766414359040336,0.035363315385415935,0.037749275838319746,0.04695914385587608,-0.027352323562271783,0.046265571423827354,0.036764551618252636,0.08050762355760584,0.020607172747661662,0.09742818238953595,0.005423009084362456,0.08332323689400328,0.09078869171137673,-0.06577699262908886,0.010422126910942561,-0.025864871566377016,0.005747872948914527,0.02943081419316697,0.017521043315737367,0.1372803260224489,0.01988750285890787,0.1020126745787988,0.012859599119491052,0.007293570623152406,0.08222243937652356 +Taurodeoxycholate/Taurochenodeoxycholate,-0.03506962002009694,0.04333709314535046,-0.01066393868049772,0.010430796859013495,-0.05323506886379767,0.02252728347601125,0.03804975772338456,0.05654502226227332,0.009411803912104602,-0.05110933531723669,-0.023341642353133775,-0.010075189969360531,0.03172157155137168,0.008383411915236118,0.013435771321025372,0.019125326801603316,-0.03405575098495567,0.03733256701569391,0.018962510943586464,0.020927644488585,-0.029264280284874936,-0.06360128128104944,0.05394293106180438,0.05218560897102976,-0.005056215525042944,-0.01697378333046734,0.11983507569405102,0.03534796117950848,0.06368943121078723,0.037637641997745316,0.008847222137084247,0.04732165958233237,0.028393380517764112,0.03689822817948059,0.038230853700599955,0.0785516386470212,0.019179773506868284,-0.004782107641468083,-0.0073798606998798965,-0.0010896821178497625,0.02004916596700866,0.028717518097438503 +Phosphocreatine,0.038155617799574486,0.15959044659601057,-0.03690582120386106,-0.04905946869160968,0.014003569831986144,0.0651524555109568,0.014366442098901465,0.07477184398500501,0.06540065261659046,-0.018600308328714205,0.026882093610128596,0.022099836290980106,0.02586954900545706,0.05163726361098769,0.021853921242764796,0.1107995440890996,0.02814074495007411,0.1156444511464749,-0.03527479518209273,-0.030175382984327665,-0.005492246440922608,-0.07178671200670825,-0.00035363097124624376,-0.027843600114091836,0.08292125989887675,0.06916103613770508,0.09924235907718963,-0.03285715131326809,0.11620071068289614,0.11429538578426145,-0.06558513615936842,-0.011500770683343212,0.016798994151935486,0.05439634718173279,0.06370504515931626,-0.02419894814780831,0.09111480964852028,0.0873100821378022,-0.1088318925156228,-0.004964768096512655,0.054620930163788724,0.0211785626799685 +3-methyladipate/Pimelate,-0.004282347503051743,-0.030885945595973782,0.05312811857086019,0.0608805122294128,-0.00745811869881557,-0.008254771309614679,-0.01563487390555632,-0.09622386388957854,-0.07548889250134624,0.0773114050847682,0.07032579719571669,0.08633949498301513,0.04392100136437326,-0.02441953370267041,-0.024336334991620016,-0.029458455478055968,0.0487238097113499,-0.011886659484740476,0.09172292024277594,0.018272101130955364,0.03714242568993457,0.06378246503365947,0.0033469800460988624,0.0077466780023630905,-0.028193992705324987,-0.04754967016419303,-0.09403509393117798,0.014405576588252563,-0.09888280352734866,-0.10778380213119966,0.009155951802617534,-0.06969017914928581,0.0039534305212419775,-0.003759213260503837,-0.020865054156697396,-0.004947171583790857,0.04322858946323452,-0.0236288169151172,0.04493989073872959,0.04049973844348926,-0.05416112151012921,-0.026561112329521314 +6-phosphogluconate,-0.022328258885346973,-0.008873336007487671,-0.02082805525602263,-0.04748367081248226,0.02344211669956127,-0.05385046100084115,-0.017281116217116033,0.0415025643127868,0.033009876722672755,0.0034900034534449064,-0.05481078439631784,-0.05202467007550884,-0.025795211622324937,0.02280213172371005,0.016116318916655718,-0.0192016356266706,-0.04961911075178977,-0.03303665360455251,0.09148300748177003,0.029803031975484756,-0.000346560950205117,-0.02437424461358576,0.015255806361628314,0.016184625106620942,0.006544749062787596,-0.04256797104177228,-0.013148227235335222,-0.023193990706514515,-0.0074162853717925905,0.011335811716690788,-0.03266596217553073,0.006894142136642512,-0.026678748771886435,-0.0021675708134856076,-0.013470573449388032,-0.012419063942862513,0.004294870236625753,-0.03049324718475084,-0.03345267628313639,-0.044919268602377715,-0.06652817750248123,-0.05434782674559863 +Alpha-hydroxybutyrate,-0.05066293749000951,-0.11449678379488355,-0.00870109926304527,0.045283061727843764,-0.007682115080817268,-0.10473939267082852,-0.046897468326853105,-0.14252582892059304,-0.08578624968698732,0.11559436622816308,0.09029602664993,0.07577048607159065,0.03239952928758932,-0.02089407161503215,-0.055923320943472424,-0.03307962545276669,0.05388077651317288,-0.01840387248673083,0.09250233606693967,-0.002705292511989684,0.02763399734908848,0.051580808388299024,-0.0643989876821398,-0.037619700637261416,-0.05248399669382269,-0.07520837819871566,-0.19546005781467787,-0.0332939062492464,-0.12190413013853162,-0.0995242346778562,0.02211894888275522,-0.055809996670009236,0.06271835126636792,-0.006336778878487919,-0.049545626479679125,-0.03786248518151595,-0.018291894952342052,-0.09707979992293263,-0.007958687362546629,-0.007737617075901334,-0.0669308343302338,-0.08096067352494143 +2-hydroxyglutarate,0.026344731919924855,0.007126980545687915,0.08583998471069412,0.116546034511159,-0.10563115304609469,-0.07474923198309885,-0.039199967818174475,-0.06378365097577732,0.03900320103953643,0.04466953652495476,0.05500804627916845,0.10766925075629294,0.06539280876434904,0.08565268296354511,-0.07907686173712439,0.06962338695322302,0.043518994753067926,0.08873407601550551,-0.076927558747527,0.0160780852980847,0.052220735202451976,0.0766574033125822,0.006890057172502218,-0.04876300837960103,0.06829487887515621,0.0613277742785755,0.01161980505019727,-0.02820602870306222,0.008812549112331786,0.03761607365814546,-0.02041113295170689,-0.05014890124215673,0.0783129826605026,0.13122264321293892,0.11581280104840729,0.07888322854712512,-0.07135581100965392,-0.05117992687207962,0.05150019890879947,-0.00482693284372437,-0.01641248181507246,-0.025763006855996206 +Inositol,-0.05411178373477745,-0.0486519690548756,-0.06282927527277833,-0.02205506219982608,-0.04543497278718713,0.01635655786542366,0.10149960836350241,0.022037022685725785,-0.04859912142018392,-0.06724100417929828,-0.014075902305050108,0.0356443411730042,0.019466868671728536,-0.08045479147218686,0.023055577008876137,0.07149872679988188,-0.007932347514193815,0.020050963769121063,-0.02718318204403354,0.006954243223592277,0.014960703812926253,0.04665506444367588,0.0460360795044349,-0.0035610706332074556,0.03006417912031154,0.022921793215967,-0.037406655789173765,-0.004653379472380857,0.010701579151411482,-0.014793486723734341,-0.06407222985074826,-0.10731097023852307,0.002735713827177221,0.034353842424960666,0.053269050059119964,0.07006761387133326,-0.007904352998101263,-0.014671169110238302,0.013253935142202699,-0.0409629663151211,-0.041273464756529016,-0.024486763633569938 +Malondialdehyde,-0.0898191818628591,-0.06435164443083932,0.0075969521102448295,0.03444279995560454,0.014534274849514648,-0.1120330254751753,-0.0825306686041416,-0.04034950906988924,0.07109466773076296,0.05858585009042197,-0.012662034836583205,-0.025037198307431334,-0.033726412364396635,0.06542659373928544,-0.07314955332371918,0.025449762895540875,0.015442450595606252,0.03947758445529299,-0.028547918158118118,0.08360153367187792,0.0320461859521819,0.026795088532631944,0.021204964009740847,0.05306783840420272,0.021759372139043446,0.023042489609446735,-0.0009979762345758705,-0.01143350297817193,-0.04461225280044008,-0.02197860955932095,-0.011931702795847828,-0.03244439965202339,0.06532642709982033,0.10341850142981095,0.1294654347730645,0.08850232507596346,-0.044376529531429953,-0.09465884270191424,0.01425690560383402,0.035049727078194176,-0.08971413793221904,-0.046188559052497566 +Glycine,0.05722609122924785,0.006114313945127175,-0.03254443771931864,-0.014229026318554888,-0.036807402567827406,-0.011548287523382775,-6.496027835711824e-05,-0.024515904781772374,-0.02805402160755836,0.023867995885646975,0.07349729331228609,0.08135105501744476,0.05391008267926316,0.010988099483693095,0.018567128367057668,0.035981867833093914,0.06669166045498474,0.043763931086324974,-0.018729762773825858,-0.03823953371875793,-0.02709692989628597,-0.012343723400789746,-0.016981889750678186,-0.02646928185989211,0.01235800174111812,0.027651628728427757,-0.0031545459941590484,0.025947120385110878,0.03476160083685996,0.024849871818005534,-0.013293275978906867,-0.008227192684192714,-0.024142819783638803,-0.03231310506795227,-0.013744347987560242,-0.04461728953693307,-0.03204245063083339,-0.01683366629074262,-0.04668253993047541,-0.009514917984787053,-0.0033559858206922916,-0.01567607262032097 +Alanine,0.036410168041946384,0.02890710175013722,-0.02787592269327214,-0.06415314318594047,0.06180526342023171,0.05771303036554751,0.004084809979323544,0.023138489215984413,0.10040257755739192,0.013404868931187551,0.008371338104484443,-0.0018898186141740468,-0.01859630899135369,0.05388282270913126,0.013085499360328396,0.06968628948173992,0.05596065058726584,0.05944354749295695,-0.05931211588114684,-0.06325771601736882,-0.060622224223809695,-0.0637195695690339,-0.014609522502495961,-0.044494434544039854,0.010360130924218494,0.0277907662101582,0.07625743065201945,-0.005445933813462365,0.07202382897238674,0.04385050922240859,0.0015472286864546356,0.02612489802759373,-0.021095120791075686,0.009962172549833677,0.009701238306234948,-0.04703114340901938,-0.032634381090405035,-0.02183129981822713,0.004859577941378582,0.02994789562357272,0.024560435218929904,0.023516935806945027 +Serine,0.07139465841284642,0.09366586063537533,-0.0063991620539052595,0.011599356453339763,-0.010364982276530554,0.09270238055846484,0.11549704078183344,0.042911572731035394,-0.019013999519851253,-0.058685528890433686,-0.006157272242298346,0.02898806062408815,0.024530367061417594,-0.038708422730443635,0.11678280472817357,0.03501256156816511,-0.023221633225249772,0.011285952425852716,0.018825251670592878,-0.031420718096114165,0.0029645059358668446,-0.03061326027449046,-0.018305251947528807,-0.046421058580262096,0.01127086047348277,-0.019882298839882195,0.004078892516510625,-0.0035447621166557067,0.05209970761700044,0.059508951479243954,-0.015691405313905095,0.024660251325348454,-0.009977405200897838,-0.03787521945629163,-0.0386021822685009,-0.03532217529065439,0.08828234897377968,0.001381928177429397,-0.02038197617303858,-0.0008909178597971567,0.023139725730072478,0.041428391582143356 +Threonine,0.09296864561028484,0.12376436940587983,-0.009183004556306884,-0.048569237045596396,0.06926875538924127,0.07068547226970257,0.0757942501850213,0.08400135940951295,0.10237661966314868,-0.006702082309084985,0.006517711969425014,0.017917780173415016,-0.0027692117351767877,0.08736329328005193,0.12178767759648505,0.00734938209117873,0.046177681636561885,0.03885223150210997,-0.09345145247532693,0.028414562494545825,0.06654823096959642,-0.031114234860043853,-0.001319354043496437,-0.0040722925449047905,0.1125758897317553,0.09537662026048023,0.08751531646527401,0.008594854664512906,0.11213343964775795,0.11490862740591369,-0.03545163143929181,0.011764288386803469,-0.037737597519784144,-0.019072516044942485,0.021703718968943252,-0.0748266552448115,0.059784960834402115,0.05510188793701615,-0.03015067734493647,0.007145344818413919,0.07916551157957105,0.0504584210151005 +Methionine,0.06254066969337137,0.1359626563732013,-0.008100409685666844,-0.0729140359807959,0.061131831895144914,0.12497100531644628,0.08445382170829965,0.18606665108079468,0.07549725011507542,-0.12619467619916364,-0.12756216748360183,-0.10236006331700084,-0.07160443306011376,0.011094234925948106,0.12910277416564414,0.01725251235201391,-0.10710500042506435,-0.007796807198664895,-0.054347867470266806,0.04880636819793706,0.05441082633918783,-0.05681078268508206,0.03395704319185524,0.024210942506558326,0.09625177865681585,0.08006396521309057,0.15637232474238213,-0.013624325144115317,0.09990413506929065,0.12388765352065487,-0.07539188670843322,0.015917683962901157,-0.05313725289239682,0.0021130445764726566,0.05478600515886866,-0.01646071226990711,0.09802915322362052,0.023488461600790524,-0.012764842189129554,-0.009069344087846164,0.053397954659692416,0.06518921642795214 +Aspartate,0.0005380079751522693,0.025762626549190426,-0.024285936008433446,-0.05394573674879376,-0.012304152246966337,0.0646929765806391,0.061980192855717674,0.057337445165558505,-0.05513327047687151,-0.10611720938234731,-0.07254694684228499,-0.03767321098240216,-0.00591619416159708,-0.09612851921704385,0.06212382766418203,0.01608012448395739,-0.09046708752572426,-0.03180214802118373,0.11142445754726663,-0.04643480648654764,-0.04834997974423104,-0.04576894079279958,-0.0004096625402786082,-0.03122362684431831,-0.05150677034584919,-0.02643923409426,0.010160324533382644,-0.014110237046300026,-0.012306197790159307,-0.006372870869578206,0.020267707515749144,0.019647259623347665,-0.06136494040090959,-0.052616130008520307,-0.04984915705530684,-0.02267557640093766,-0.017788202544473775,-0.021355995843962892,-0.057881610181536605,-0.041781354166206645,-0.021055043021773894,-0.00543060417737911 +Glutamate,0.024489994679913325,-0.048901593110630595,0.03563257261181327,0.045515042054161764,0.014371849946329026,-0.014662579923492534,0.06108102857723226,-0.006645990916772088,0.012912142725441611,-0.011993432270641575,-0.0020370708172453545,0.0176892650947714,-0.016618524837256805,-0.004936158455461152,0.017409507818504425,-0.02063422572880081,0.026148504922514398,-0.0052325655823657015,0.005169219287527186,0.06558251921316177,0.10179768833257434,0.09966700502363171,0.09982228127061368,0.04684993442104431,0.06325562606484418,0.06838652404822125,0.02658962474707671,0.008236141144302971,-0.029108823731114494,-0.010681118730648616,-0.023191116098144098,-0.07845372790248678,0.03450299913920102,0.03472697363000757,0.0602619619673522,0.05371156939861109,-0.12940696109028693,-0.011182006276568781,-0.0026516918784456572,-0.004130760896791143,-0.006516181815279857,-0.009092983101062045 +Asparagine,-0.018891632700551126,-0.06871937540914032,-0.0440354769230633,-0.01684693943535529,-0.05223081763516846,-0.01999523744027469,-0.051623039160228014,-0.032087787608241006,-0.10464366492294135,-0.023180554887903982,-0.025315595417659438,-0.024103214175012513,-0.011885233878674477,-0.10580122990313809,-0.0730817077013693,0.02621109430395098,-0.07245528802881852,-0.012440562165825028,0.07893530627120748,-0.010561130214526007,-0.049679723583702255,-0.007885429412769996,0.01669134528882073,0.0002336380929064617,-0.05176513062827678,-0.060857975655246414,-0.02117125290371545,-0.014708471992417824,-0.025714808436107024,-0.03244587921016904,-0.04517863983361265,-0.02685759570949841,-0.009140910771139049,0.007269088605538125,-0.0022022186543362234,0.037666303402352906,-0.05722182330376752,-0.07114056181051093,0.0350179449206665,0.0006485167931942435,-0.10048006300079215,-0.04667221338888567 +Glutamine,0.08058104898038443,0.110969882521435,-0.0012060513317790071,-0.030906319469829698,0.022139236983025716,0.09033618184548868,0.14248706346101558,0.09869429416870422,0.045082251117373136,-0.06801183176142721,-0.026315859559555153,0.0023299311428566344,-0.03128176115177399,-0.010325202123644623,0.11087172511488022,0.017377761977240346,-0.0058927441793110045,0.022805804845045873,0.0535029720904168,0.04532513240207953,0.10188901068130535,-0.012499036277695361,0.0185826983154325,0.026628154466859153,0.13313296739488226,0.08307086724357239,0.06551946029731791,-0.025336952163054215,0.049666279005887486,0.06944479574531842,-0.06834176724204609,-0.05604840081059813,0.009311511081640226,0.022477400737468282,0.030379137335895152,-0.04325718641175837,0.11105278654244795,0.015787692758372242,-0.04654994834408137,-0.002531461320720237,0.03553374331801713,-0.0007195784526106318 +Histidine,0.07245702717631133,0.11226545591507468,-0.03219137310639061,-0.061187627701431595,0.06230774575407831,0.13750807083863295,0.07856490951538901,0.18960844180593242,0.05168461833659106,-0.13039011158572447,-0.13932717673697162,-0.1066050416066505,-0.07574740767086072,-0.0311996037812002,0.17665935681221603,0.015645788614010142,-0.11501055777927936,-0.050852075520237495,-0.009333591193329303,0.02428521807997725,0.057129981491834105,-0.03398269580228614,0.016422421049310635,0.009892964702069476,0.12014578537756707,0.1112128552132872,0.10997747983651908,-0.028427145468504927,0.09539729813700311,0.13768634564953108,-0.08995216432685338,0.009680349452912311,-0.08380955542474931,-0.027410192080640276,0.024155440413406788,-0.06157360949434796,0.12370984697317855,0.05538071766234826,0.03253798391716702,-0.009582004780245795,0.07967649769940352,0.09128662165703501 +Arginine,0.013251392368402233,0.010775313123017832,-0.04340711880826819,-0.008150168244976701,0.025622615735849483,0.08594507157059939,0.024150857146577463,0.1114420482125712,-0.03127648060656184,-0.10323534368653603,-0.1378942225275714,-0.12715122636621556,-0.11676529787041749,-0.08153821979942223,0.0790762362674972,0.017082296803173358,-0.170568631532386,-0.05805385899415143,0.03377817676326575,0.05569162033820278,0.012855404900746386,-0.0432965160075989,0.0029194287960723226,0.06801723831692105,0.022996688325369878,-0.006435227875939982,0.052155499953548234,-0.011747335032002437,0.020943919451198934,0.035624025554142756,-0.06280985879264732,-0.003210501415189815,-0.021749310745506633,0.0009047540969729656,0.02854990890218325,0.01101917093722728,0.1326403239339027,-0.008289142661910354,-0.0018936782351074881,-0.02329186966433116,-0.0036475199796783208,0.05354818361782863 +Lysine,0.062261511395076054,0.1569996175094865,-0.016017450988098435,-0.07947195969305278,0.05421960937726545,0.116081331981685,0.11519223684926336,0.19816734030460775,0.09410100312585556,-0.13607359579563727,-0.12665361049548662,-0.09153450906607463,-0.06477860906886802,0.02383094182940502,0.17446001376550074,-0.00857685191233686,-0.09273624003531825,-0.022273715382154093,-0.05794820444731943,0.03314621884484938,0.07720498893383149,-0.05628387796842231,0.014424165444517023,0.012337752769072775,0.13351895737457353,0.1183266869427631,0.13176357724017337,-0.029261371893335178,0.09825783615576265,0.1399202280478369,-0.08602177313880256,-0.0051358870912097026,-0.06310539414179389,-0.011358714228501099,0.039842469067993665,-0.06142880056382953,0.1452233180244112,0.07253956918644613,-0.016549594754947352,-0.02154197734242432,0.11849947892267917,0.09569251291645407 +Valine,0.08571037628732829,0.14452783210680092,-0.00016818070364669506,-0.06738136317376683,0.087293082886705,0.11249748183570206,0.10015235294846574,0.1537778844186295,0.11422535497427817,-0.06514355542397506,-0.06279917331744334,-0.051596357878223455,-0.05455817985837089,0.06517282946741733,0.15797994997303433,-0.003916826653120465,-0.03100116170796196,0.0016273849182568696,-0.07878469961057837,0.04047771691213734,0.07257871517250028,-0.05582174449630718,0.014583854253434565,0.011845868323416345,0.13005735838457258,0.09948923769101037,0.13028762943496244,-0.000432552473274672,0.12912436815695655,0.1358494500950244,-0.047712316616870566,0.025511056940045834,-0.05588527539330132,-0.02469709527570667,0.02442686974083111,-0.05819885595228102,0.08747055268806138,0.07215166192456861,-0.031366949191393524,0.0018589323958042479,0.09160837210307213,0.06466516076166212 +Leucine,0.06735352173003571,0.13991543390138125,0.0006812594752931175,-0.07316423238897483,0.06750491505082164,0.12618027382508543,0.08948621834564936,0.19364842807923902,0.07560594422304057,-0.12059150888035793,-0.12105867694750873,-0.10429243179650319,-0.07144029188741681,0.01566771144318232,0.13740212651447278,0.020671595436559203,-0.11249324784291397,-0.002033296447909693,-0.061503253010318996,0.037956702129306484,0.038499754471523,-0.07759431861490121,0.022581676754400135,0.026803892657825647,0.0898933555971528,0.09045055422194466,0.17844828639036997,-0.004764403706148096,0.1154676062248766,0.13870039288114344,-0.05779871608460569,0.04117683043381555,-0.0614584099394152,-0.009293868004570693,0.05020199181138272,-0.02211849635547082,0.07214069125173417,0.040847996481660084,-0.023560041663722997,-0.010290652498865412,0.05719828579409557,0.06965839208325056 +Isoleucine,0.040128644473900764,0.10014355676639773,-0.014693364177608028,-0.06459237913244859,0.060212428711513596,0.09841347978718624,0.06896800616032553,0.15248666590928864,0.06399304167726347,-0.10185415937867973,-0.1057048306226476,-0.08718805172698249,-0.0618763934925007,0.01368642455336613,0.09345037273042801,0.012399164605702869,-0.09278114011209876,0.0017941373365647315,-0.06761289508080774,0.04482749261451428,0.03510694850208641,-0.06507803438772654,0.02174209963511358,0.030029256504128046,0.06761971039158031,0.07093139115672742,0.16414512342433818,0.005412870168274062,0.10541083688460581,0.110225598248087,-0.03401214937201131,0.042416425354105156,-0.04090343459581303,-0.0010587939089217084,0.044979471473986926,-0.008755944456306028,0.043419343861997785,0.026612711840631874,-0.03279640724735332,0.006821104435414365,0.026167363320840478,0.045292911466421455 +Phenylalanine,0.08431984964898122,0.1573133586092954,0.001032982781765513,-0.0801382275082266,0.09830029418714477,0.11965298865345436,0.08029775931681891,0.16731570844866228,0.11914658622342167,-0.06651692206341268,-0.0763838549969339,-0.07147555888978444,-0.06407034736839387,0.06547122284433275,0.15149215593736945,0.026685427534215673,-0.04917480855842788,0.025461908433218498,-0.08809378840326924,0.0465032037873543,0.06931380210454463,-0.05592061003055218,0.017846150068891006,0.021827026471706163,0.128107606588788,0.11306275050460826,0.1500928909784657,-0.0008119424598291733,0.12359318456759325,0.14285597889827095,-0.05748263217490657,0.025114549730102912,-0.04350562509397708,-0.0012253231112234807,0.0558683010547136,-0.04228772429597575,0.08684971468802245,0.05839345873771413,-0.025689762464883237,0.00885041307115697,0.07127457553511472,0.055747366312851925 +Tyrosine,0.06595521977956896,0.12732482237178272,-0.020783824735810204,-0.08309004646056424,0.08271439634884639,0.12604807733596954,0.07678608212798886,0.15042656357085962,0.10490922951448851,-0.07586809480584213,-0.0760299478399062,-0.06485182810052474,-0.05938517291365439,0.04657179832437155,0.14012446975230025,0.01682719946914732,-0.061108336958118493,0.009641478009273157,-0.08313267496688834,0.028271289453458557,0.03666073990333984,-0.05929091011378377,0.016858314332040075,0.01347482789556206,0.10537566736356588,0.10740819543051752,0.15964387988022977,0.008998646866082888,0.13330346195316561,0.1366906832896622,-0.04224124875835276,0.04244206337196228,-0.06399388604526145,-0.023127338083361666,0.03543904669157726,-0.04300006029494536,0.07011589507493704,0.05867590315700675,-0.019949999068826833,0.014174806970277894,0.06690909671388018,0.061609381630005594 +Tryptophan,0.0866767593518386,0.1351959333989851,0.011710788719980245,-0.05710207399619078,0.08689412951037143,0.12021592260213286,0.08608151824209621,0.15620086586853763,0.09069985995380145,-0.06339366569990562,-0.06825061222549586,-0.0377159936504439,-0.0489242278582526,0.03865818003999867,0.15094106440962973,0.007922585356577062,-0.030691654541323513,0.0033189108050176576,-0.10715715165458987,0.026114002944433782,0.05005021191187189,-0.06564423488144139,0.005708211464355442,0.02390269886786572,0.12142766786508245,0.0829659912789499,0.15211241148847143,0.021058088848677513,0.12253812549564014,0.13047376363493957,-0.02511168737679835,0.04368987727581805,-0.05729692755170905,-0.03924585233394539,0.008313766326225682,-0.07603922270970619,0.05719520868279504,0.07398354988554291,-0.036831111186854434,0.04351115290104866,0.07379849405051074,0.03663778469518453 +Proline,0.023805082506550505,-0.014095461582826855,0.010365511784829163,0.006266059971567437,0.0020552214473412785,-0.026899669341938187,-0.0703068191261004,-0.00301467227874522,0.06582292247205526,0.05516896787201951,0.043378919620088635,0.019665251678836964,0.010235118657018916,0.0686795910748258,-0.07205147343284225,0.06214764749593681,0.048356247162888784,0.08109936349318998,-0.07313991838095737,0.008171834997677837,-0.029956280767708558,-0.04065024680143139,0.017053912219024008,0.02562978669405752,0.011532691755931135,0.03887852698886123,0.058876982580438886,0.010512768596559564,0.022622968425244337,0.01896638796014419,-0.034951663322504434,-0.02995785428229032,0.030174699791459578,0.03525191869256498,0.0735514629106976,0.03449713356309478,-0.10008241413824827,-0.055877985224388416,-0.0016093481562150286,-0.02076344774890117,-0.05562639428135564,-0.046413104360919874 +Cis/Trans-hydroxyproline,-0.031673714027555436,-0.0944655316161959,-0.03177980342856944,0.06076306911830518,-0.06591480244154568,-0.050060892694356735,-0.05835910781530907,-0.055417175008288605,-0.11737873574170114,0.004976887938438558,0.006389529376891242,0.012934804573034883,0.032770054205394576,-0.0914819444589895,-0.10528630610725433,0.02814627168564016,-0.044308874389543104,-0.018825002949164973,0.05959381440469326,-0.04610331659403399,-0.06782370012420141,0.031767947478188584,0.011474245499572893,-0.030293989229499184,-0.0953642720438372,-0.079128736705983,-0.023887875515516778,-0.010060611558359392,-0.04698325102052783,-0.027150728419468792,0.0010442893172967664,0.011026026306747571,0.009286249597819611,0.007526287608309961,0.00456881743168467,0.06748297620946686,-0.11193373329978257,-0.0795785365330086,0.038111266121974796,-0.004517801004003902,-0.09943634763184213,-0.026940248654001454 +Ornithine,0.031635211491783236,0.061813017764800644,-0.0101226821993159,0.05803817303438051,0.01752706778346079,0.09054189725029523,0.02581823524029976,0.11375750468830603,-0.014083430795551997,-0.08473308694830878,-0.10588779564585776,-0.082265126663258,-0.04912129473946616,-0.06682294995729607,0.0979263989296401,0.0263967311523578,-0.09424071353415121,-0.032766976765045405,0.03478986305741047,-0.019683042793915896,-0.046839161062566435,-0.05505918810222537,-0.03090717403534192,0.014352389783745395,-0.028953423889423062,-0.010349938582165307,0.032450469142446224,-0.0139577157208541,0.012130462081995846,0.05439838466654787,-0.025200876732432896,0.013532829591957613,-0.06868082753703425,-0.03293115347363785,-0.026502401656977287,-0.019754631752249115,0.09281112570976446,-0.0037498140246515132,0.053479904311120235,-0.05111178503861172,0.030745887435615307,0.03528923248614302 +Citrulline,0.028206604567851276,0.028282361599172502,-0.021442915971688407,-0.0057069037491743685,0.06042865528552919,0.07094750537383716,0.03190599395730848,0.12325363095587753,0.005127635927001687,-0.0595757626164167,-0.1025345891491548,-0.09518092588101955,-0.06644258196944375,-0.0337364492454542,0.0923097747471772,-0.024291293276222856,-0.11675492228880943,-0.0705512588048348,-0.0009682207850358668,0.01594571574571056,0.0003206445536570508,-0.023662004696242734,0.017988753408178862,0.03912737093824921,0.046141209954091766,0.05214027869028044,0.12569565862621057,0.04805937046014499,0.07997444881001535,0.10502188679506559,-0.01926522013797214,0.059506387278722345,-0.061166790022088566,-0.026400966933022397,0.02883233385938118,0.007357610445116758,0.010293848166845114,-0.007639825210876794,-0.011312240777242756,-0.04368472739464006,-0.0017900482931566335,0.06938099701145196 +Taurine,0.03228395677347863,-0.05860048138119875,0.05360495952500923,0.10144784485368127,-0.06217062551301551,-0.07874501720678312,-0.0855210000814705,-0.09608557041902295,0.00888944245485033,0.06667483728605296,0.08167912019304681,0.1018006928164085,0.03214813241589803,0.07053149429757254,-0.088627645541539,0.08689998550091982,0.07503130591060041,0.09813365522789884,-0.05153395982855054,-0.02921923818757423,-0.04935879469543465,-0.008343923758951212,-0.03208846360063859,-0.022919289336755307,-0.04789465143842917,-0.008631220671144173,-0.06140942038431546,0.0337654441616209,0.0037107069412752234,-0.03506579849634995,0.042446286395049965,0.008791011876638454,0.0639179997807683,0.0417714882851072,0.03481003654701657,0.03064999168093181,-0.1066404895634085,-0.07475159231809521,-0.002482809106712796,-0.06584319733470843,-0.04934324732110935,0.0031432666254858277 +5-HIAA,-0.006706294960962168,-0.034640027664516265,0.002401175547947334,0.040655101602595105,0.01674481367172702,0.006770506583355124,0.02131911505992717,-0.014842674495662131,-0.06618719950554795,0.009606830474913288,-0.031255287078037916,-0.0201758499404985,-0.0038115747749062337,-0.09244058055282126,0.03835821098085641,-0.05701380049133794,-0.01473127625928772,-0.08532539395260182,0.08868212397252119,-0.003033117675471099,0.036134917539308066,0.06502574141389525,-0.024392311434966646,-0.014244777957533832,-0.018107880017317085,-0.04026668156033266,-0.10900083766348703,-0.01024249695406353,-0.06070435121649657,-0.036596815339471095,-0.001682937985039716,-0.012524127394763497,-0.024433306111310442,-0.05985261271510206,-0.05706088178796522,-0.029097820560491507,0.07435290338165923,0.03608030432405401,0.055057405613154364,0.07135254491005234,0.05812626527251721,0.021729318614101743 +Serotonin,0.038546497149833284,0.014216965572023099,0.041282078721819875,-0.018478189047379426,0.005443350587815461,-0.015357409592681295,0.028492112667241373,0.013996721182494029,-0.0334507184526988,0.04073961787664257,-0.0070057688962871425,0.022360437254884676,0.009245318707847412,-0.024018356327990636,0.047665792227632904,-0.001981753932409543,0.019996044380113938,-0.024884595082279606,0.12238712068641294,-0.0028717481354390575,0.017925401112181345,0.01445021475704494,-0.053281544698186974,-0.0005553871181998165,0.0319545712972227,0.01090454411783879,-0.03559407969105265,-0.010678374995370719,0.028062597922291765,0.04351576773983681,0.04000394354509368,0.05995472069057672,0.0034142056094584976,0.01427787866713046,-0.012570230976957163,0.01818439482172488,0.00274618219220496,0.027690250984853636,0.06653942241416036,0.038650707660670455,-0.0028406366440911464,0.05213006647786126 +GABA,0.03082530468783615,-0.005888727927580787,-0.026441733455461598,0.03406361998248904,-0.04522160316392318,-0.01514548788337618,-0.06353842686430762,-0.09634393321443856,-0.02176157033067553,0.04092444768679741,0.08958678062763076,0.0524768597995076,0.03714535813953127,0.014692678055658813,-0.08561478345045535,0.018035721933985706,0.04841558047089695,0.05425348193623099,0.008494726909209542,-0.08292318413849223,-0.07662278224890451,-0.09784775177001155,-0.05772205377831445,-0.04254874095856429,-0.013857801821282184,-0.021879917843685672,0.010413073072935559,0.01843865791817663,0.058862715512588024,0.005309736538659394,-0.006817266850730855,-0.05363385154021656,0.024485171001736857,0.012619043633102804,-0.028941078864321065,-0.05231722723850036,-0.031490877845439,-0.03636406417526659,-0.05592902272709025,-0.030129103856949363,-0.018636938815216324,-0.044872708264871025 +Acetylglycine,-0.030918176866663614,-0.057586852194056265,0.03878157990123801,0.049795543948117436,-0.033477751733483954,-0.10653096541709667,-0.013736243309110725,-0.11664874868176459,-0.08739089394364473,0.09654876543608307,0.0713787678258404,0.11669420908408139,0.08893641447877616,-0.04892435968090853,-0.06782706606349588,-0.017599188495778777,0.0839001434222271,-0.010225720600375111,0.08103086517436692,-0.030927778501614253,-0.004263764849106178,0.052285223662054826,-0.055440396532231415,-0.015151671415724656,0.012584081778629255,-0.019962980863458733,-0.12112982166094863,-0.0031055477420987372,-0.041953395108950645,-0.0475861759265094,0.024301947282551258,-0.0049146201827442474,0.05066856986123919,-0.008199781655597566,-0.05208872594041844,-0.0005229436598299904,-0.0625957819351013,-0.06583356347402917,0.01968676853204417,-0.001102776458020581,-0.0665059637739287,-0.037392820034866193 +Dimethylglycine,0.014011591491046447,0.08258998021703022,-0.032606630507760775,-0.034792184302447446,0.025695041928391206,0.09841216815023562,0.0621024723199225,0.15062295734330491,0.008353313568279768,-0.15543720013458628,-0.15341345535155979,-0.13076851347247936,-0.09853888084210746,-0.07303276251395768,0.06949689919040285,-0.03387817898593509,-0.1704259219999835,-0.08701695242422826,-0.06220925029108565,-0.0055408674365725556,-0.017855395512303848,-0.08537010801471207,0.0178547657479107,0.02958470402147897,0.023833506750393346,0.029912815877944397,0.13840772225650208,0.010231088282561085,0.07083467308119927,0.08721135575172535,-0.0555965552493097,0.010863491842426236,-0.08700171251843587,-0.04045133261439876,0.004105551415885896,-0.04035052330779431,0.10554437715281574,0.02486812998382544,-0.010121487721028668,-0.02278195800704919,0.027324496827201644,0.07429073810564849 +Homocysteine,-0.08959832337075758,-0.02117756142136453,-0.08917820994663,-0.06085110080320957,-0.03752662690719836,-0.09565214659941015,-0.0259963251605749,-0.015043591897178693,0.025534264918935852,-0.0381856442923755,-0.034590725699105165,-0.0008234542909809857,0.023094218910332826,0.019615893771003985,-0.07714836843425543,0.027859575010804803,0.000999250291137821,0.01673831199228625,-0.002663521028004428,0.026563978590087918,0.034721523141221136,0.016782086318643107,0.05514833674334001,0.020960865363650345,0.017467740330194333,0.03103087790800769,0.05033378267775226,0.0033599463171169607,0.004791679582130599,-0.013868821451982047,-0.0059209046086559705,-0.005259085052571779,0.015748098264180357,0.032513723263898266,0.049741486090596,0.03777812987224095,-0.07111288760607062,0.006055153847394168,-0.032174770303045545,-0.0026058443389660063,-0.011772754178995178,0.03774645867507971 +SDMA/ADMA,0.028420086149147258,0.0981476776753199,-0.039836605934596765,-0.0479041200208352,0.0470112560725097,0.09715013946996308,0.032559337167351265,0.16912024876136697,0.03796669251356043,-0.11142201344425316,-0.12456446010022382,-0.11325302447766625,-0.06450839935275897,-0.029657118162509138,0.10178176545141113,0.024785413005219838,-0.12073555298240314,-0.03888724140137991,-0.020991650742916198,-0.01933228529539933,-0.02117504689041027,-0.06851266924210425,0.025588664291960068,0.0034056222826873033,0.048273172111795916,0.059044059456939774,0.13225401064062525,-0.025930572177074174,0.08992404377705587,0.1227744974501992,-0.05901776834013453,0.048848792152037177,-0.08362760183640583,-0.025412087589067437,0.026178429875018134,-0.010138856339758126,0.04798836870357303,0.010735078506361833,0.006268195591308807,-0.022017616750386854,0.034291200470033915,0.07523171771858621 +NMMA,0.006759847638228178,0.08912754523172581,-0.058048284554985265,-0.060727558422760106,0.038935828611659305,0.08094461730855614,0.02688686909640254,0.1768887594286781,0.0658661180911205,-0.1124939184661773,-0.12411912099010314,-0.11759479229456749,-0.0536745010274092,-0.004938550911587803,0.09765913745707933,0.01843353701581155,-0.10173186528810475,-0.03248852549280925,-0.035742435942953864,-0.020523940889183637,-0.02075262345151908,-0.07260819757772738,0.03460692410020613,-0.0014292108521899605,0.05741765635557984,0.07401406276936012,0.14557784657628803,-0.03709741483607712,0.0961095574838824,0.12038310054083179,-0.07021992138192729,0.04110881153449706,-0.08802781956128185,-0.025276884992786727,0.02320567824136049,-0.012683247832727793,0.04383439177482278,0.012364728472334921,0.0026228155738903824,-0.03873213567930242,0.060365093933189874,0.08433403320650593 +Allantoin,0.01953871605579759,0.11131561918838465,-0.00667716625219134,-0.03313257130475459,0.06176412098173865,0.12144913455097842,0.06548821550164079,0.17981200954197854,0.028655451947137405,-0.13149491474391697,-0.14970769670598802,-0.1402575435580463,-0.09463526949097961,-0.05724649647845847,0.10677143187043495,0.012044567206886049,-0.15080220882248566,-0.05819086543918887,-0.012762515740868959,0.013548824535125336,0.008988565582292213,-0.05865505419036364,0.04532655889193883,0.03170960513220026,0.04430670969705395,0.035735607902445767,0.1393171273723932,-0.011153151722674835,0.06537806452659509,0.09276575053218751,-0.047651766648451346,0.041640817429874334,-0.04605442002708592,-0.014555817015110013,0.0443858866277869,0.009319125234249444,0.10437421019836249,0.01726404157271468,0.024914419745398052,-0.004427477405903708,0.03405115922734224,0.08121049900898322 +Anthranilic acid,-0.08530056024640176,-0.014094774744842218,-0.04161594897950498,-0.033357750265439176,-0.04888217598741379,-0.01980643426293091,-0.007458417629323501,0.06922525004469866,-0.06254773607860224,-0.11260592879978677,-0.142037122859973,-0.1418928642584248,-0.0734001640997802,-0.11050756134863399,0.0017889999291304964,-0.051173605600806166,-0.15962882822128194,-0.08810452042421506,0.07517095823825083,0.052617467994294356,0.033080394605541276,-0.003795008552090708,0.05184486257720039,0.04630892562625386,0.030558277021293656,-0.005200365137993546,0.06112623340602335,-0.004942822072344158,-0.004942896371231092,0.03867752211087323,-0.06761790442912195,-0.0011090887390502846,0.0028560464524748984,0.009988037622150031,0.017413655038200804,0.02019785673362624,0.058972942628859645,-0.005919649959268002,-0.014455027160992836,0.013528524727031728,-0.02692028199943443,-0.008904724830071258 +Kynurenic acid,0.015764158957519436,0.10113672179304703,-0.034311776516005595,-0.07764631857419745,0.0789756947264395,0.14567238511968955,0.0551332908327092,0.19575884552238512,0.06442895514684378,-0.13988320762173653,-0.16245220896511742,-0.16941666802644315,-0.11733397173301106,-0.032338826959741676,0.11723021241875796,0.016483016183271047,-0.18246685705227414,-0.06313549803872535,-0.03955099891127579,0.029394132843210817,0.001953311509867595,-0.08917524837111847,0.027629215904164256,0.04116518889265618,0.04070188404336974,0.03406073588958921,0.14293565038872902,-0.021832993293874826,0.06676618641057491,0.09703899249001485,-0.07178243052849906,0.02449549950717668,-0.06535652192984967,-0.02293638092868043,0.030893938236990045,-0.03700720609403808,0.13855339781581524,0.02545040175305292,-0.019737497044951063,-0.024802285650982313,0.027620235210992265,0.056502220743091254 +5-adenosylhomocysteine,0.01200856546327255,-0.08767743684719075,0.015039281921821437,0.07326848663757855,-0.04373365633275799,-0.11844223290089198,-0.08666786495037214,-0.17559596036917233,-0.012440351146366681,0.11731300994720421,0.14097011146222474,0.13448914823105915,0.08235197094503952,0.06124891643393662,-0.15628952436935523,0.0392018326166454,0.14856642434921608,0.1051815051766401,-0.027406216382150007,-0.060187510383204926,-0.018837341335037446,0.04995111701642332,-0.007426776107189435,-0.05119314441345423,-0.06002858300114766,0.012538473189942528,-0.059620402106934096,0.026556297998800948,-0.05657478790724312,-0.07477213772709343,0.06223526409196721,-0.016938111239234242,0.05271201518737106,0.03398627891369301,0.01902494529007675,0.028459666326900834,-0.1958513347452332,-0.07460564774381466,-0.05704419399997383,-0.011524036669030017,-0.08253013227964545,-0.033212941357415926 +Carnosine,0.04314354683202666,0.13358680480628973,-0.0028711458011173824,-0.07933398912738275,0.03909175442610553,0.14481238654271064,0.10192162453698515,0.19988814335833133,0.030515951365878497,-0.15349980170769137,-0.15828016307827344,-0.12527136028568997,-0.06260930991783872,-0.061270824322320804,0.13300223013373247,0.03866076949363233,-0.16873365855902087,-0.05020666979570615,-0.032617639220044424,-5.182871021624261e-05,-0.015160277546863134,-0.08145620354276177,0.001039764588794441,0.026141110207470297,0.043942726861425876,0.033754293853910475,0.1262808012043142,-0.009339910575505745,0.08281997178013596,0.11201054179153437,-0.0672507474696346,0.017583932593427738,-0.0668761075241548,-0.02981782944583221,0.012703676967650866,-0.03440817053887681,0.14670072226356967,0.025031621630534625,-0.013203551623949197,-0.04528798649721037,0.045082311205910906,0.0398572176240434 +N-carbamoyl-beta-alanine,-0.07189653960729483,-0.04795559883477539,0.009676819936799882,-0.06151612497667098,-0.003306260854044033,-0.04600345840541701,0.012208569877095682,0.07953101521897106,0.03870497811586868,-0.10752483728654469,-0.15549246346707404,-0.1327702770744246,-0.12458019085393673,-0.015906575384906533,-0.0034465047150600034,-0.003291577498106234,-0.13279751244939958,-0.05048300559437317,0.04593505540790625,0.10210289157224178,0.0869016013970859,0.07905541783838975,0.10868483776066883,0.06866165538369892,0.02543523906864832,0.054717874136546975,-0.009744825266417012,-0.06814021065233901,-0.06695120515622124,0.0021631720487850295,-0.10638344547903669,-0.08623492776391216,-0.00020586956617183987,0.05936420292628103,0.12508387726165723,0.08426377492309702,-0.013516187439224276,-0.02527866998132346,-0.0185350070483904,0.001273608075482722,-0.04141201217532876,-0.043276382928081863 +Thiamine,0.08103980834200915,0.16678062670386234,0.02873284972228147,-0.04562517157574445,0.061664348549439134,0.1213739230093996,0.09299309838823645,0.1381689808944892,0.12325754389813376,-0.06501154785038037,-0.046019724670552785,-0.03953005061383652,-0.036041799322129364,0.0774316444126467,0.111557028446111,0.058909366667147765,-0.007851248445803618,0.07290489454529835,-0.09313369638443537,0.016557092360547507,0.05706835978282004,-0.07109973098896287,0.023964793313563975,0.019997083801134467,0.12157720243730101,0.11302218195943786,0.17490761503457816,0.001649396364572252,0.11033941268622471,0.11210001591452302,-0.0395230157203673,0.006209025627476094,-0.0009049250438660118,0.040187971453774854,0.06606328497963691,-0.04116668412367131,0.1044799653396697,0.03027236316005844,-0.051174305927479034,-0.006722761334640734,0.0941057113684931,0.057781571215276765 +Niacinamide,0.0438442972016005,0.04720625819663149,-0.010709938382562699,-0.008862632190966214,0.039793721980802346,0.061322891790576754,0.0769730570135547,0.07733587160265004,0.05176739864902789,-0.03607311870689282,-0.010800832200056036,0.005254234298580665,0.01851332765645971,0.02430098253675409,0.10099232155748601,0.0013934107432241696,0.006871316610868602,0.0024549215577060438,-0.003959066246733229,0.04434174365832267,0.06787169999318088,-0.008741803647960143,0.017131744631209346,0.022273024151744415,0.07617378004865229,0.030383765343300402,0.05899781202423205,-0.010131254583655531,0.05129766715673288,0.05510829043573061,-0.023058752922076185,0.03293380770740554,0.017518407226677087,-0.007164185080400845,0.025996696806176584,-0.025357987418413993,0.05643644091365014,0.00300424448833757,-0.015160241080751173,0.02023290078271055,0.016224202004657056,0.012036808631875374 +Betaine,0.07965685218665103,0.029033110209484552,-0.04543258791589387,-0.050347777618600084,0.050160419954624724,0.1253272241289022,0.043552564202269585,0.09195351921584469,0.025794979480391597,-0.024211246397874243,-0.007521250764070066,-0.005104488291916356,-0.011129217615857603,-0.013206486816609022,0.06762743612835895,0.05617195620806511,-0.021445922899264017,-0.010192855114054312,-0.012826074924659125,-0.06860115998628954,-0.04858516397350042,-0.09732594753062283,-0.03440219847702864,-0.027808410258510746,0.0304002531579029,0.0057234425985339885,0.07430102590492618,0.000125077086322483,0.07503256475880986,0.09781361908731934,-0.02238672937566388,0.040998447665601484,-0.04727595654788966,-0.03473552251698596,-0.035540280286268704,-0.055279968344042016,0.060087857923828134,-0.011401127058693752,-0.06047619001261544,-0.015410994397691306,0.03549933020374486,0.044246199691399174 +Choline,0.06846126675106967,0.010267287989214263,0.009506579307767089,0.03884365209409682,0.056446333889591575,0.055032864832807955,0.04059345884321066,0.050329510830521604,-0.06512233557341435,-0.012780878373733939,-0.028893757704959125,-0.015889239174296466,-0.029941255347677886,-0.05633297786245435,0.11547365777050549,0.026481380414280498,-0.0096147866120408,-0.016138022614409876,0.027708427136182656,0.05859531189772854,0.06982778923369995,-0.004816549026661935,-0.03169127329127484,0.06289418292818306,0.05276101414875654,-0.01471638684016999,-0.05217364963163823,0.014537845537294343,-0.05506528094986751,-0.0010012714235338505,-0.03337489480530097,-0.06056752893706936,0.016569294543979634,0.006695617869185779,-0.015518097016175555,-0.05273423722413996,0.11754794023195615,0.030110127765827555,-0.003325603362892236,0.015259247362324374,-0.01947231072649435,-0.025034832059709775 +Alpha-glycerophosphocholine,-0.004394593272060499,-0.017366483123963557,0.022387839128197043,0.006510958989075398,0.010472790954613512,0.022993145846853764,-0.04085300273188542,0.06833618569158022,-0.046908035594257186,-0.03269932195896245,-0.08167516568626286,-0.10292108653607447,-0.025700654724524905,-0.04983374124177551,0.039951379552959694,0.010471333555593173,-0.08396620921444455,-0.03658615599264461,0.01526666757899387,-0.046537224803978774,-0.03327657594941701,-0.057074263865088445,-0.10041347117923412,-0.050897811196944816,-0.03254947327143978,-0.0511694082401527,-0.055033034968910065,-0.0560091700532905,0.027285050680238766,0.022114631443582073,-0.04615291522730079,0.007465969530773672,-0.05115760261173616,-0.024799285474597064,-0.06034622535667205,-0.09213242500291027,0.04143263039248226,-0.0287228828649287,0.011084865319565783,-0.05705433861187885,0.038545190380484755,-0.027083720465934245 +Acetylcholine,0.07301634618105572,-0.05043176157662063,-0.0688001889199099,-0.02683143226920634,-0.041342423642887975,-0.05740155395303273,0.011063815473103747,-0.02970917065291739,-0.03668420920671489,0.018653127001839458,0.009983138560133619,0.02332290242158981,0.03593774400069015,0.017903505408799664,-0.02553625358374463,-0.014487582237362961,-0.0006081085684044615,-0.00542912759689936,-0.11287559893191174,-0.021744072094750443,-0.02234034960438073,-0.06151132749634249,-0.059706790296282765,-0.016701006152121924,0.029074446046414067,-0.015341624032330114,0.01168891897204836,0.002035142120315078,0.03394244090923667,0.0320433870916263,-0.027042586390221317,-0.0439917509556588,0.013341247813945016,-0.029832858379374057,-0.05173202600938818,-0.05810164362067036,-0.0037513089958859315,-0.05695645105551745,-0.04542195828381532,-0.04217376502813228,-0.05042749215563019,-0.02743272605977525 +Creatine,0.018550769185126735,0.08749535885167724,-0.012481080270814713,0.0034276686700148284,0.0009544102991841879,0.03340021661798186,0.00015050570215472588,0.016235185813753,0.05957917300355679,-0.0033455964386426462,0.036810050552446426,0.0586975405060678,0.025586618967660957,0.07064899893186678,-0.020903676735823197,0.12094701565698031,-0.0014915336356008833,0.11561491057135749,-0.08628529979290951,-0.09586680684753214,-0.06634211608503551,-0.10236470289132546,-0.07869640079113535,-0.0840795033254878,0.025952360467501785,0.07610334401402828,0.06231155929900393,-0.01795428842835574,0.10929609384874929,0.11835009030204018,-0.04487787883337854,-0.010536551428558296,-0.015959566205476748,0.03216665630885943,0.030744010873797082,-0.047902063402870794,-0.015497054582865597,-0.0032739529858620796,-0.1024376766022427,-0.04690524655323558,0.02419342949902004,0.010143947420089693 +Creatinine,0.016111141826801186,0.12503339476926997,-0.049247884378859304,-0.06285569129821215,0.05212924852497549,0.1029981142835039,0.04875633994378626,0.16757672107062174,0.04832096900652447,-0.11481945256986385,-0.12048372727067413,-0.1070560006985791,-0.06421744700989052,-0.02765598999270609,0.08970125525863541,0.05974197518663324,-0.11595619110756769,0.003113375879064111,-0.03909072629554201,-0.00627191894817287,-0.0019868175387009277,-0.09296037716598242,-0.0011925359149175094,0.017765411977100593,0.07084564400930189,0.06767018836993603,0.14467889317761964,-0.01957863528903693,0.09017550836918094,0.12174812314138836,-0.06647171476402788,0.01839083291386957,-0.03361346863255967,0.02433374345272787,0.05661669918824708,-0.022475251697829546,0.1099131638359241,0.03586205947760892,-0.042531972767434624,5.638145301030199e-05,0.02774157467713305,0.05372915316559536 +Thyroxine,-0.012960420082415769,0.07224846325736513,-0.05502527233126943,-0.07906140849534943,0.04873641874728105,0.0935398181742456,0.07389808806437022,0.16333222123829938,0.04294969885558675,-0.12478611382449026,-0.1479881490539203,-0.1249928275561842,-0.08016784633289875,-0.05541074166058019,0.09745010739702659,-0.015243802227804965,-0.1344312166164719,-0.07760397121637698,0.050628140352799895,0.03273017953909715,0.039232463155877355,-0.03035881921531363,0.04387779598421732,0.0607670227386394,0.07737991469137215,0.03800766680640132,0.10842134274205802,0.0027643690707284947,0.07470593233802172,0.08654838051822562,-0.06591926380065573,0.01927269849141271,-0.030429597409401588,0.003589826662944243,0.03517899516080403,-0.015385679033485181,0.13909118194989079,0.031779297350292425,0.0031332915112786738,0.0027014809963233134,-0.009607787388667266,0.04866360551566304 +Trimethylamine-N-oxide,0.031130249670610264,-0.041223547985006694,0.044287886727028054,0.0033990724685991082,0.003675472701929817,-0.03599000746401991,0.027819028869765925,-0.08924513101295324,-0.09978048883546112,0.07997650526415077,0.08250402069136832,0.10173068025401841,0.055122433900272924,-0.05269895643658246,0.011358408201405322,-0.004564281139993643,0.06119072686740278,-0.01655745765697776,0.06641095348558469,-0.033935272424300195,0.04343069475258767,0.0828539394209525,-0.029427944802518133,-0.06160060501656734,-0.002951912281191231,-0.03519349984876887,-0.14532896461193368,-0.01294065814687157,-0.0625405136798494,-0.057730536899663155,0.007050676046478709,-0.029452690288326512,0.014565199752865458,-0.011661104092700337,-0.05014506567510336,-0.011986525427221967,0.0257408661052428,-0.018778940427015705,0.03687857714800589,0.03949298840534001,-0.04448615167956513,-0.054967109035293435 +Hexoses (HILIC pos),0.04448567624209897,0.1525654733056234,-0.0198119540967882,-0.031373854458975836,0.025354177182471505,0.11532297126662192,0.13602003982991606,0.19649873524216427,0.02980120609841789,-0.15310060382323054,-0.12829022846022498,-0.08124795937201208,-0.044943498411140446,-0.023110533650229033,0.172715256850352,0.007988879200291076,-0.09725989379545417,-0.03725679159205991,0.03494753680027417,0.03627069036803935,0.0712217189581964,-0.04122979184960897,0.02016803860597132,0.02101259670822384,0.11822883954289967,0.0674102282698747,0.10124849823583534,-0.023789536617523505,0.09130243860479635,0.13160589186962657,-0.10416442604894405,-0.02223715635974939,-0.03667933613389063,0.015724026626185956,0.03943985250426331,-0.00029939817264768183,0.1682416637196581,0.08052827774985112,0.011437101699960317,-0.016406999173551193,0.09079173949527043,0.09396494345144132 +Adenosine,-0.010843568744421541,0.09040546366196302,0.017306301578291102,-0.027775788788109542,0.04538973679544273,0.007670550278397888,0.037813736640961514,0.07906127450951207,0.0651341492296704,-0.03748606348142473,-0.05805825354418298,-0.08214099394359126,-0.044139479629257836,0.04729491388424789,0.035300147507197864,-0.035386054153462236,-0.020604257841422533,-0.027494804045578206,0.05092054619454915,0.026181875400671628,0.01889030347315452,-0.019486202473257854,0.0227951391928967,0.03243344172523875,0.041259488661590106,0.02567869009616127,0.07953917677606193,0.030215057919367582,0.07635600767698454,0.05896824961842298,-0.007687518928043022,0.02006235243534166,-0.032997938381698844,-0.006107965233737167,0.009578085207774862,0.00687645480793922,0.0439550095667313,0.02599458686668589,0.04630395243019367,0.03514337678217606,0.055617087447956355,0.0815394228556072 +Thymidine,0.03304659554780738,0.05045063920680449,-0.010999170103399935,-0.09501419094374478,0.052836530554205785,0.087992854133714,0.09843221730751585,0.11601951060422114,0.08552213159997979,-0.11568208622099108,-0.1194572087984128,-0.11631247805290111,-0.0768958757260935,-0.0039565204330600364,0.07722484415914506,-0.09842913257929836,-0.052453317765092274,-0.07327954156166044,0.04693505820510424,-0.016135618643674087,0.03884164809098864,0.00944560150427071,0.023880698090282957,-0.02105107281103467,0.03192825214057661,0.08236342557439373,0.01092057879162228,-0.07729000659577154,-0.0031053539421970343,0.05994538127655956,-0.03340961190726343,0.01242052837693322,-0.07316778376435923,-0.05047028375098242,0.004574861347829908,-0.03653002830882421,0.06037609768935101,0.038628794653860266,0.04862247300815805,0.0308157855419232,0.05981051467291525,0.07444700821615348 +Xanthosine,0.0396197604035023,0.08954105565791899,-0.0008551552556226779,-0.06613650465890407,0.12067158484082886,0.13451848296702168,0.022178203733151245,0.15912115364406684,0.05201095349555982,-0.05750625691218786,-0.095932521406358,-0.14252448743359344,-0.08333381910619804,-0.009840399742577836,0.11500191212279291,-0.00700083725931263,-0.09385709900895411,-0.0600777559191307,-0.060027435955230364,-0.0029028666212674806,-0.06912441467135094,-0.12380238686345861,0.025374150756783908,0.05680753473753245,-0.02571608739710995,-0.05177826722786702,0.12819407856196996,0.063623495089042,0.0878161234309948,0.049013937129922906,0.04338045649562228,0.11891910399548959,-0.058623568553938125,-0.08766797814440766,-0.04391107311462455,0.0006594412542989305,0.05950212503248562,0.029325982862950586,-0.04792630691436401,0.025849068259063804,0.08271222683659335,0.10489587195279121 +2-deoxyadenosine,-0.0022902414074801687,-0.09427555566067773,-0.048764574732777705,-0.0769500160872049,0.08381589194775546,-0.017500460434555255,-0.07305902646130656,-0.06626698538626646,0.17192954179566264,0.07037419457977093,0.008030297144600908,-0.03688704889706314,-0.09456511620797099,0.11586997388075633,-0.04873857476586038,-0.01917769758013911,0.07417405514161717,0.031928831358065735,0.11728627649269995,0.07252492476996669,0.07201385638699188,-0.0017374396179046059,-0.0029675701588926045,0.06805990635068629,0.0481976578222178,-0.014769901082139186,-0.0586608122327135,0.011848980070699348,0.005504694302296743,-0.05810754871517844,-0.002912021691019749,-0.02205512256018827,0.10796602854415656,0.09647254147103615,0.0453464882105197,-0.021924394480574285,0.03312924804452052,-0.019618618919296508,-0.032814418436253386,-0.05629220077617655,-0.07577781542469063,-0.026491581553439558 +2-deoxycytidine,0.020822938543849784,0.07609370726447022,0.08696590742446221,0.004192439097723874,0.02274215989994379,-0.01936261711466406,-0.0010456995242294877,-0.08866975037480096,0.15520008718134512,0.07301145037001595,0.09266987558986661,0.06425326611400725,0.003236932879974208,0.15160629482127805,-0.014706801010671091,0.0016531666368543735,0.049598080408051595,0.04547260250825478,-0.005028731121963555,-0.10834932854170112,-0.017455370435090708,-0.006160073614133729,-0.04499934757074453,-0.13982220280839266,-0.041696627634644705,0.06072783294340409,-0.06882886479918067,-0.03850287155862315,0.0014068112191541159,0.0665696735344647,0.09139938646785693,0.11397726258350001,-0.030119594110645406,-0.022394798533300033,0.01395228498840585,-0.011276020420201954,-0.13834082715477417,0.003086908575623919,-0.011848977254321371,-0.011256393304847925,0.027773390750357535,0.03972895168419521 +cAMP,-0.008970595678678469,-0.08485562902685669,-0.037146178305299905,-0.03022089743890404,-0.010888588164317009,-0.03914499747355483,-0.020058923797043944,-0.07406003031402296,-0.016329727515282062,0.040404970630696944,0.04849198617546377,0.06019843934390436,0.02202711856568791,0.0004925315745837865,-0.015961130492161177,-0.03239727965418206,0.07050414172362444,-0.0010886925415472567,-0.0007910907462768126,-0.021618784811628412,-0.031092493290450145,0.0037522735674410364,-0.009072792239361764,-0.023600898385363986,-0.06829844245259362,-0.05963716671054127,-0.07366842421772705,-0.018936470799255742,-0.08915681111380445,-0.08326207668890957,0.049099997228599576,0.013997776705171888,0.004309067496141268,-0.04865385272543757,-0.038986207725614376,-0.02305957399812933,-0.05433290697784005,-0.05455687828824264,-0.06718317893680062,0.004044756430805473,-0.06907575848723661,-0.031051084129543893 +Cotinine,-0.04194854814533545,-0.07452555391235755,-0.02223689807283639,0.06560912551847718,-0.015948140884828328,-0.0853389719039557,-0.015034961598709588,-0.0971436040184169,-0.06016631895759089,0.06593159472992952,0.037563234943993655,0.04021298683414096,-0.000539214157555477,-0.016754233859435242,-0.033822312587017594,-0.03185502157133854,0.056088833884164614,-0.020870722033142275,0.10402059921648081,0.044757917601594914,0.011469293300119386,0.02284600284098972,-0.00726069349398308,0.05713684118643154,-0.021387558782905193,-0.10467938669666992,-0.08498406396026834,0.0391169617696439,-0.06784147985985561,-0.09571118407461134,0.017805113967086107,-0.05979714024170307,0.05043966420808704,0.0022022244717112274,-0.04971120693192848,0.009415088949582375,0.032606668712977786,-0.023785319680144378,0.006728953503686267,0.0012291161934761825,-0.035423491183321415,-0.007502787565012846 +Pipecolic acid,-0.06465639681161846,-0.01796095898988231,-0.02396277252367801,-0.039984055688731625,0.006287897486872248,-0.024309985219588368,-0.04655634848614494,-0.04244745013219003,0.03832827611351291,-0.016853270418421953,-0.05412323503169817,-0.05270736877847892,-0.06394923174519566,-0.018537839937101275,-0.0374063902775775,-0.018263965175762127,0.003980193618598559,-0.02681688604530264,0.11816794450401465,-0.0030031507009767554,0.06768962718953882,0.10950517982293832,0.025866898617490967,-0.04301940596278539,0.04244799488742374,0.07584596493581065,-0.05827525490251453,-0.06966494346900727,-0.023288328652838763,0.014797713895610753,0.001560373972145049,0.009045423994893182,-0.015737940656902153,0.0559864252506645,0.051435255519974084,0.05413825094898037,-0.07804677588224915,-0.014756361541498163,0.08355899876552492,0.020350620530421484,0.00508897133011089,-0.008276970684028979 +Pyroglutamic acid,0.019315221925391184,0.10912296546512225,-0.0319480555982779,-0.07844414032706083,0.021718247643301283,0.07302616849269027,0.08043189176576822,0.1475638958415688,0.09708998074518943,-0.14081175758493372,-0.12889825329575466,-0.09878691118344586,-0.06990717173558685,0.006151123153613472,0.08228402805528046,0.0235465281792774,-0.08301227901577184,0.0101920113922361,-0.030225357608832958,0.02702372819192733,0.05461506436921384,-0.06942865068345444,0.028299884267374682,0.028611524624593574,0.1224363827950197,0.10741423556685749,0.16059781638605075,-0.03043151272259346,0.09764921970436674,0.12478251782532819,-0.08430820199719473,-0.019935866249596652,-0.024327864512897267,0.02268257864933618,0.06401501661184608,-0.01858950240830286,0.08735169343689905,0.014043309938729194,0.0021879103081342993,-0.03726593910052041,0.050632445273065575,0.058827937554155926 +1-methylnicotinamide,-0.02726376688502604,0.1439244800894163,0.07738944686738783,-0.04635546801825181,0.07226962280003724,0.0815351165148192,0.10630999104951508,0.2336885558086425,0.0718091033038161,-0.16257511923925047,-0.22667421636343865,-0.22918634902255403,-0.11661904871356701,-0.009276050793548788,0.09051884135171571,-0.007220845174863913,-0.180244114146252,-0.04263616092105548,-0.0164212558720653,0.09944436993773213,0.08314662548716582,0.01911200245853018,0.11254154369438266,0.07319670313305865,0.03640635495730317,0.06400464447984143,0.152866196127777,-0.03546007941333772,-0.0276944663221125,0.04295523097641179,-0.08299729796358228,-0.040975129019784076,-0.03017198761624033,0.03177179784667251,0.11269981339484114,0.05011824377420706,0.10257131623649125,0.08150268802249795,-0.00508598219258467,0.06810624370947164,0.13977083858732728,0.10722164687424472 +Butyrobetaine,0.026146346063163236,0.05949487350492445,0.0057428153534439,-0.03133778234010276,0.010492830146069299,0.03179248755694254,-0.020561757431684143,0.03883269628091546,0.0793177716471312,-0.015244523127304193,0.014903317419188095,0.018723512287102107,0.029427176164667807,0.058970247027881915,-0.0004819625418698551,0.0688332064932565,-0.009277537105295266,0.03964081080328738,-0.0880877131343397,-0.12705755918266548,-0.1292718865599204,-0.10507785573176723,-0.0705450843378417,-0.09410928171577279,-0.05779784662722389,0.00920552818836187,0.04553840351422051,-0.016246716127827698,0.08458765015882248,0.09579358605725483,0.0030063040406506695,0.05422697327179585,-0.08202634762093045,-0.06750351097803811,-0.050252573901263656,-0.05629121011417895,-0.0849935979388771,-0.020051190038578248,-0.03565330570977429,-0.050691415119984796,0.024633109722634352,0.04284702614553131 +Putrescine,0.04027628493265828,-0.019018974670974,-0.011986371918645362,0.01657901066866884,-0.016569039348650387,-0.043411874000275553,0.0008071132159723592,-0.06782412185452145,0.012858711405082721,0.06930107826561151,0.09497537960570852,0.09621574863228606,0.039324801665899634,0.05312199397534542,-0.04288061790006562,0.05617714991048761,0.048955339941165965,0.09603844136215678,-0.045027965071084704,0.047266006828654034,0.003009327815889987,-0.011908512815335259,0.0003806196921880695,0.038236547138880854,-0.00495914210140062,-0.009293613743236747,0.0029849728471055405,0.04637811792659944,0.0006901354996205124,-0.052469581156451714,0.01875525621746644,-0.05547792326429264,0.08180625793010203,0.07440437567504073,0.0648254876257861,0.02256679430735264,0.004087460646427429,-0.012797262343517076,-0.08571954358044508,-0.012801040432321175,-0.08788244878454271,-0.08452570794856441 +Methionine sulfoxide,0.03016968270256899,0.09942786279485992,-0.04742024622320255,-0.038979993833231655,-0.02529945024536223,0.08469620248399007,0.07550050507551402,0.1619719010847051,0.022533574997065646,-0.13794703122188068,-0.08992364354145142,-0.04137780301371342,0.019005332380886555,-0.00869374773048012,0.10277690052347724,0.03721973237014679,-0.10734108984175544,-0.005867745444299632,-0.04455705462009565,-0.0170911198047172,0.028858233450703742,-0.02824961651397183,0.035498197429530025,-0.03258016363827496,0.08204080053355715,0.10385274528845259,0.15577531298669026,-0.05544864678843939,0.07966569628626098,0.14280041611567443,-0.12420834354187721,-0.03020919398464397,-0.06729361043474237,-0.0010519600726052341,0.05497455629542903,-0.006670095574497697,0.02722484243851236,0.020482077933338106,-0.0025947266156644017,-0.025162632564321767,0.051970921553507195,0.08429646801757933 +Carnitine,0.044293927396734246,0.10989299048630899,0.00634126494989037,-0.028046193997366107,0.030428445845072337,0.07668231620508963,0.02254911969975563,0.07886676638880101,0.09844233600561109,-0.09614559374524469,-0.07109266205044328,-0.05389181592053276,-0.04178732417804081,0.047575274504443994,0.04269367943662378,0.057960370143474715,-0.09683044474216504,0.006627887385216992,-0.047406590462040855,-0.10127001413147595,-0.10438256372068425,-0.13186713279430468,-0.0768893704964857,-0.04101510542179181,-0.004908294058887946,0.048891031415479375,0.07347164653656045,0.017675179095955895,0.14736239424535827,0.14177768724793124,-0.006536850213227648,0.06616826116516071,-0.09200802210271648,-0.0718528804354757,-0.040447021594720765,-0.07669435214259145,-0.01596694882027272,0.009267954246265309,-0.051696242551573325,-0.023783382670629658,0.05634484977023566,0.07841633832978007 +Acetylcarnitine,0.032077078193739034,0.02127850664529436,-0.034165959788278195,-0.030745393028088267,0.03707635949762315,4.387138035445849e-05,-0.05311548883545445,0.040182043281307624,0.054239179958018746,-0.012713497394946314,-0.001989834949938042,-0.020687396698975447,-0.003976824852380889,0.05067910033383987,-0.016576311528485113,0.047936438736648906,-0.03439769880626449,0.021797811128189935,-0.10442694039730964,-0.06582350102531435,-0.10522401165869494,-0.1032252573857511,-0.05811701263577131,-0.01566828537630941,-0.031079731563505224,0.023794394341087304,0.0747820172543865,0.016414399518308535,0.10440883997618454,0.08899335597318536,-0.01576664644744588,0.03395325499802932,-0.06388290399895295,-0.06283204094828608,-0.029702174879456377,-0.04731735752820896,-0.0647354874183672,0.0045593689236368305,-0.03577401156801115,-0.035862703711029606,-0.009160238049917672,0.017639713392020293 +Propionylcarnitine,-0.029769815757888132,0.036751321035948505,-0.028336662362602204,-0.025181230227162774,-0.005709238444429922,-0.009860676999132938,-0.025481300273937146,0.02272449669516716,0.07631141299186026,-0.06728500611292292,-0.05767444811493911,-0.03838103466779771,-0.028681759585205278,0.02849305542297674,-0.037312726403439,-0.009581573750627381,-0.03700512476199113,-0.015644244798039632,-0.00015017521737440548,-0.03244870021877962,-0.03917753006793228,-0.016454699765438723,-0.01787729187938679,-0.03099692479789666,-0.0661444422973369,0.016023085943625833,0.01451099800713423,-0.02206264995937706,-0.014404496655072584,0.016660500645000458,0.012930275769253425,0.046241945415905046,-0.03489200888708791,-0.03135414647956673,0.008639888382069251,-0.016820494920431108,-0.07091731721151188,-0.032221904702397566,-0.01811363138755648,-0.03397186875152316,0.007773182412491048,0.030662150547552912 +Malonylcarnitine,0.01705504610962546,0.038845454562032436,-0.03882555797946144,-0.02508997100427936,0.00723684193281672,0.008035751979335252,-0.03471279887557916,0.03021763947222407,0.05360784995983644,-0.026522902989233568,-0.005330842726696967,-0.00492606930246779,0.002165739023564,0.023505548555420194,-0.011448208589837538,0.053055851940288105,-0.04470584058891262,0.01369496610602891,-0.03331259965294742,-0.09234242342920111,-0.09724874906904019,-0.07404916593863921,-0.042182395454876745,-0.055738503328859816,-0.017259696972836407,0.037801774790726904,0.08207009473905084,-0.017423479494685437,0.09908278002513246,0.10236800367751436,-0.03703136841842177,0.029190118887121873,-0.06324859937232219,-0.05742840607304539,-0.030111396057095535,-0.021172463316865665,-0.04507150485121289,-0.009159548988544852,-0.05454417776054421,-0.039368594430968115,0.013343863909507876,0.02159421527973285 +Butyrylcarnitine/Isobutyrylcarnitine,0.0782519905551281,0.007598409855497367,0.013870158927652906,0.028181137456792824,0.08512114865294902,0.014928121302900764,-0.07086944945653804,-0.03342042289029343,0.05185883780241388,0.0865480490843634,0.06781361195340452,0.032456033665034814,0.022936539003119875,0.05955911635446277,-0.038716606796561526,0.10327353958065846,0.07895386844357162,0.07045658484978072,0.015469056547987142,0.030256574201875802,0.05556212006125368,0.050903528599515274,0.009686196209779842,-0.016864385030327063,0.036458222268935254,-0.00424894819759886,-0.032017994156771264,-0.00609616289373899,0.010678155141183001,-0.009687509541623934,-0.011160280915381586,-0.026182747560736217,0.093022849404175,0.06431096780337035,0.055428959731489966,0.009770070112422176,-0.04975880608500022,0.014413532119420727,0.0155672231420307,-0.006910001853053636,-0.056915171885060144,-0.06389067353695782 +Valerylcarnitine/Isovalerylcarnitine/2-methylbutyroylcarnitine,0.043844264417330164,0.07457160739837805,0.030558290284398527,0.013314102046846774,-0.00995469466594595,0.021111585641581665,0.029356062420125062,0.017147784809783184,0.05660292200742487,0.010741021672976215,0.039929296820528024,0.05855317699664249,0.05675004199940047,0.059428065118929854,-0.010140673633890061,0.10223858947900424,-0.01549031877038643,0.061262184011370825,0.05217448430764304,0.020552567571108613,0.02563408142808304,0.04654986580479689,0.0063957494608436315,0.005188316747912733,0.025617477559397844,0.037108744115882004,0.02207405883683954,0.0014070994252610466,0.046115415433190206,0.061098710760109094,-0.030399813539415056,-0.015868918886110722,0.05422841836500046,0.05737648460241763,0.06494925976259405,0.03584890942772847,0.023746662571743644,0.038101143888356025,0.010759139875964321,0.006810239631447387,0.04907088326174302,0.05123780297582589 +Hexanoylcarnitine,0.03142137731200367,0.07923754403679287,-0.005186153588561305,0.010621736393225716,-0.018884581646138494,0.01210253100573337,-0.03999268682198307,-0.02997402674972334,-0.015509888926674553,-0.0022002724081307185,0.031973013350748744,0.04613533166250914,0.026418139876432982,-0.005686720339742057,-0.028909583311907208,0.03908738342872463,-0.025812661612883512,0.007907009199975985,0.030892636829143096,-0.08152263122717952,-0.09009600593083032,-0.08786431439523928,-0.08326372049611655,-0.05951251529591781,-0.03794487942349044,-0.019666021659491308,0.03235928100069522,0.011598829958411914,0.07040489043940165,0.04578786275188642,0.001955214725764123,0.030913780490240222,-0.0433450643521746,-0.03382615808008913,-0.052901110813090506,-0.05486448754305637,-0.07137251240155991,-0.01466010132537577,-0.0021475183624719354,-0.01582878173335863,0.0002242559560362049,0.006786445329295845 +Heptanoylcarnitine,-0.006980157171664499,0.01030372331223554,0.037693150289436726,0.10173338455604579,-0.008387861184139223,-0.03696814696941117,-0.021615894361342685,-0.04397970909831151,-0.061062974999894194,0.048533259454126065,0.0475947405833443,0.08006037534536341,0.0528376228054378,-0.024573036403790837,-0.024096015469529046,-0.019666750798178635,0.05378860460783497,-0.0203277566784667,0.09662625546461212,0.0135939500582327,0.00527629431772828,0.023491855126509947,-0.02525321986495318,-0.01405416769704945,-0.014496250821296009,-0.07618215674244087,-0.06572697919200156,-0.016440769684899513,-0.04262606708918515,-0.0356327782019625,0.000718314759775062,-0.03232903132439242,-0.0142791369989784,-0.01492565917584114,-0.052689745926969025,-0.03243987865620032,-0.017740854620544914,-0.031099182670999946,0.04130740257936318,-0.04184917777364568,-0.0839282369862367,-0.056953732108418066 +Lauroylcarnitine,-0.026013455748852953,0.08313937264805996,0.04363738050069994,0.017901330149478104,-0.07828417188399366,-0.08574758430492292,-0.03074140701779017,-0.08284912463952511,-0.024965737844715345,0.006894482273659167,0.043395229657837306,0.08001088101446224,0.08000237494626163,-0.009958025914910261,-0.06999431584152638,0.023086866322476057,0.015209943535483236,0.022979514165582183,-0.01775267630382342,-0.10570603132242119,-0.07451435375801045,0.00172925961389506,-0.10080518138206462,-0.08436498340564466,-0.06183548073616731,-0.03891839429334038,-0.08664447136276299,0.014230395430556597,-0.0036323577282893374,0.020472711913836955,0.02880870034987375,0.007717004137406541,-0.024026233179157523,-0.03900711063454399,-0.06761344140593512,-0.04927914541380921,-0.046514517645559514,-0.018293898918908463,-0.004752470173911596,0.018675423494757544,-0.043392500812610854,-0.06597072776542603 +Myristoylcarnitine,-0.021563557828219164,0.08935085023249831,0.06008909477252423,0.02037494365200692,-0.0691390576417389,-0.07390447566116706,-0.04099229332699068,-0.11457668852516989,-0.031755866017745826,0.03153019849291743,0.06493444133526871,0.08785512158043943,0.06457441229016299,-0.004440940239496339,-0.08462137594914491,0.023817643120009262,0.044322770928796426,0.038465072288503724,-0.06075729907315894,-0.10810704872011397,-0.07251611479976074,-0.008222704833146447,-0.13055570541607894,-0.08685530306148843,-0.04063975108352611,-0.043117691147513466,-0.10691118759950065,0.0003091604421606396,0.0026576480701213908,0.01596631167429351,0.005772797293053595,-0.011036104905264492,-0.03404846371127523,-0.055113585418318185,-0.09568039738874917,-0.07153029413231753,-0.05323380044267658,-0.033709679262335694,-0.02137746355157532,-0.0019205203713085325,-0.030348003079162463,-0.04658858252521665 +Palmitoylcarnitine,-0.0016361871926363427,0.0763755998790059,0.07072721770279605,0.015788552187902857,-0.04730145176461333,-0.02548280342881493,-0.02415588832824572,-0.11078387960090474,-0.04266572857444854,0.048660879127971894,0.08674277825084291,0.08882531678361491,0.04726381858215104,-0.012598477917298548,-0.04692722869863943,-0.0010418624865595096,0.06261153467985554,0.023048691867939727,-0.03704935956062447,-0.09590629815695603,-0.06882763334790502,-0.003458402650663029,-0.10613829390606369,-0.060512081451165135,-0.015409943908257302,-0.0442366590339897,-0.08343192005195493,0.028753444582146848,0.03223623018926825,0.023484953820769882,0.015305034061356788,-0.008400248515582343,-0.04600783075898502,-0.06534858247425843,-0.11199860802186959,-0.06314744608902685,-0.043692284896815696,-0.020709022458637864,-0.01120001917616759,0.0007800663898291946,-0.014083262374689428,-0.02796967718516849 +Stearoylcarnitine,0.0007317914542480606,0.08155106862555812,0.07943030131916129,0.023129291355721445,-0.01887398419767447,0.005500123373864975,0.006113806984793847,-0.031148581700494532,-0.02008423066653139,0.015981621010778636,0.03682572635228077,0.055272122326949606,0.03750634519693048,-0.013861249320750562,0.00014958245558025163,0.01288736430603897,0.02328903563212347,0.011242610070939381,-0.02949435250322004,-0.06836164064896205,-0.05168078062662787,0.005669961709499803,-0.08433563521963498,-0.0369665087453869,0.003097176133154072,-0.030408826476303406,-0.052720851148604864,0.013659036450276748,0.02559229507822696,0.043227280997680854,-0.00623215819382397,-0.011638906715433666,-0.054567706650233874,-0.05014577915490861,-0.09247486943683518,-0.0379901404348827,-0.0035118536775281843,-0.011840865939253415,-0.014140359422574215,-0.006723453123063783,0.009420197973247111,0.0024943140706427756 +Oleylcarnitine,-0.004586025631812739,0.12321132965257262,0.0706524574737523,0.01563036741908945,-0.05892313816012087,-0.017828521949561568,0.010962415108980012,-0.04085101702069879,-0.02111326406702834,-0.020545692110051153,0.01891633136642174,0.03919523621606897,0.041616666769875396,-0.02060648670775662,-0.023292317542960315,0.002255094636547564,0.008653860466116558,0.013542851352731684,-0.04378167468242207,-0.06562854534093131,-0.025744150663095045,0.013899430943400648,-0.08899696525674013,-0.05089091167658601,0.02792731148776709,0.011617753261560945,-0.05450033626159963,-0.013754901417206589,0.02528304946059309,0.06593343666162622,-0.04027111916928379,-0.03630035339720538,-0.05000973275409514,-0.05108273917923685,-0.07403706291120256,-0.05397463311178279,0.002012602134907874,0.004554449238157469,0.002904335845522529,0.03150057517338357,0.03285717008791201,0.013485542905116166 +Arachidonyl carnitine,-0.019846309814904883,-0.10188925638616733,-0.015284018085623482,0.05885695271558822,-0.03384387700653266,-0.07726456632363557,-0.020964757423058127,-0.10537664482452666,-0.100590875959817,0.09045411581187707,0.09112327080948539,0.10476766325457144,0.053100922154247505,-0.03974607795626981,-0.03898607096290366,-0.0010887402395809783,0.07840839168225262,0.0021253950424678144,0.09181467310261975,0.015418987669223084,0.006811375296697135,0.0808158955355327,-0.036598580765625714,0.0169139377468342,-0.04944664552325358,-0.06290778481775405,-0.15079130338319327,0.03573679679744339,-0.08399963761391799,-0.09210960088494798,0.06448583649762986,-0.020562828819932134,0.07278939921837078,-0.01032314844715707,-0.05838760109408474,-0.013402597890963316,0.009530359114050655,-0.04392187822972771,-0.028786110661598033,0.01871114089754476,-0.0757827917265484,-0.02245380074645051 +Sarcosine,-0.03935822480495221,-0.09929688399394268,-0.07957038618376189,-0.027222413794313227,0.0041000227597026455,-0.04010114697995663,-0.043098495616578976,-0.06443588051578956,0.012773660100903987,0.023724259362131576,0.030142055361262656,0.029934316671275663,-0.018858247075665798,0.0005172689914131415,-0.047855572780461014,0.038100293274885774,0.01929284364384845,-0.006376568284076863,0.03153693203961045,-0.026750606743898918,-0.024574388541133654,-0.0077054401514623045,-0.02178284098310384,-0.035528505375600754,-0.028287526886346077,-0.03811877867944177,-0.06864585946292798,-0.03165197184106709,-0.014904772314786888,-0.03966924896769617,-0.051742742122134214,-0.036635066405790506,0.026223093751510815,0.040013410015706054,0.03746291947038716,-0.018275818311295832,-0.04308879001165894,-0.053076339064774346,-0.01777258723689062,-0.004560669100480442,-0.022671304532213575,-0.015349535036805936 +Beta-alanine,-0.006160914583030341,-0.0829006875990147,-0.0251266758853081,0.051121935729943044,-0.05257138606150229,-0.049044536222650134,-0.07717112513894518,-0.032411816126362035,0.05189471068926675,-0.0032631998545276514,0.004570678568632502,0.008429378987539886,-0.010753627289726883,0.07447046149470526,-0.09241484063897744,0.03862075489892245,-0.0144454792550926,0.03987511607732487,-0.09043925340503978,-0.026000112680969245,-0.08426454441085121,-0.06695329840804391,-0.005280285527212024,-0.00736755712066682,-0.05151880139423579,0.017252293517627873,0.04977001564942421,0.026291932093421237,0.044485139528579874,0.019135001637653366,0.009756637903734329,0.0220637481849231,-0.004568536960917405,0.007752534837126247,0.03323645681306722,0.015351335327226979,-0.14496633869803432,-0.05979481391982053,-0.029952420974803197,-0.056192702087472055,-0.009661759106665538,0.035572241311631676 +Anserine,0.022315856206494712,0.09345711940819716,-0.022898854760912458,-0.0787262862485176,0.01953910832544854,0.11389114644252687,0.10344434898529278,0.16143897541150262,0.002496126199931386,-0.14162549750633394,-0.1434188750154816,-0.09832500296404907,-0.044409435230296945,-0.07582703511537081,0.1054698650204195,0.03314219365387023,-0.14249752662950413,-0.04395986807467005,-0.006052598747027757,0.010349202998420005,0.002076670368823202,-0.061110656358272945,9.422324302890554e-05,0.027633717769992957,0.026671463581923512,0.019486961081758052,0.07117852675870455,0.007441192362825175,0.046749291329802496,0.06851290884539725,-0.0563611245511008,-0.020697487031953947,-0.04702285492128282,-0.026398911253961432,0.012912932654273693,-0.029904384875305345,0.1406183106158915,0.0036389792482398394,-1.5545470891043702e-05,-0.033815572563031915,0.012419459423080738,0.01993678099180406 +C14:0 LPC,-0.008747014142888854,-0.039035626036155555,0.015515375714480766,0.05626477314504499,-0.03944161838004442,-0.06346091078674848,-0.01295393215358712,-0.07061329138230378,-0.043200475769411474,0.04943651520034092,0.06455236857242566,0.10088401233426013,0.06905827786515177,-0.021585760202391415,-0.010900631286518159,-0.0038928679762504645,0.068451201968067,0.0034660691753702635,0.07908403283843349,0.0008572445048148074,0.0561995841886002,0.09698096513715355,-0.005852933337141249,-0.03374219003849697,-0.0019526394583685562,-0.03649872804337496,-0.08628857891909408,-0.027803021765573647,-0.07151544912055328,-0.04672903861440536,0.009897055932535839,-0.020613260520585465,0.04666722922448677,0.02668076691224135,-0.017176819598749424,-0.006918361951412629,-0.01592003924600664,-0.045060165246772525,0.02254461784570884,0.011187177479600886,-0.056319287472719456,-0.040115762577402146 +C16:1 LPC,0.06352554419976977,0.055583505464577555,0.0008194743594428248,0.014152468078012478,0.013338042788821138,-0.0007009071278209938,-0.010316357825917428,-0.03895366649009118,0.013940264668150725,0.07350967458651603,0.08290577295356999,0.0892785950690983,0.046039542961832866,0.03897177461635208,0.03688328783873197,0.0039228736302701775,0.07961752852221081,0.04421696855252456,0.06653701438028008,0.011604552168841376,0.025413646642411913,0.03490609502793374,0.015199849003294031,-0.02851499999424967,-0.01233294116192649,-0.010755683907652611,-0.027863048004663476,-0.025572364082735825,0.0005706417148399833,0.000570206003541718,0.012482747404354287,0.031069289878424368,0.027490029954265707,0.005879908213306795,-0.01912672643513893,-0.002592082995919173,0.027668500795673474,-0.007774476291273348,-0.050787823009747664,0.048530327384709096,-0.004764452735195801,-0.044478236102142014 +C16:0 LPC,0.10037305545524554,0.07363858085022092,0.02428603588883792,-0.006536856746391311,0.0672250830530411,0.1039976804323713,0.047713089863208304,0.05299882595272972,0.057022395583217984,0.05092510373477722,0.04639026065231729,0.051156487895261116,-0.011722984442141822,0.05006081077007494,0.0989811691172302,0.04363244622820652,0.05429129367371072,0.058456538380729284,0.03102545406283743,0.024001242790969084,0.016429882923144006,-0.013864011754676725,0.053907173661300524,0.006752925077736135,-0.04549453141569803,-0.058664571671239146,0.048783071416052835,0.006783541829293552,-0.004112723296190144,0.010550416164523652,0.06229414814597387,0.09445115189567507,0.045974071244286825,0.010747155923376822,0.012910169344479241,0.01162615605379312,0.031839716658494374,0.03837953429590882,-0.010411588854517989,0.023127171437178223,0.01928125917637243,0.025435394028895015 +C18:2 LPC,0.03205552104737779,-0.02911819431856222,-0.014548056144214535,0.058315344774978,0.004778442982861091,-0.022372159710831785,-0.006843740402786977,-0.02296343482807354,-0.06483586999308272,0.053832982387918456,0.05281435334410547,0.028242612085534854,-0.002217820528025659,-0.015514232564674423,0.027734219114959265,-0.027735228995641396,0.028984550967864158,-0.012088009469314535,0.11057685443304827,0.10617377575673972,0.08106651691926167,0.06731325066243164,0.04810388036367774,0.07843771992776144,0.0312659410925639,-0.04074144179882558,-0.038833984916247705,0.031110503591554216,-0.08014941819975932,-0.07443963662673161,-0.008707679085814823,-0.07702188365672905,0.09065392574775816,0.024396338674190603,0.010208179791183655,0.02103508661937224,0.06209728781079945,-0.03758308819187617,-0.01514319588362709,0.02067786511526447,-0.061378760236024,-0.07159978000534802 +C18:1 LPC,0.09364700842846396,0.07132708859526984,-0.006152495706820886,-0.012006752339310445,0.08879722563001831,0.13163181974308258,0.05216791992180188,0.12044121160274981,0.06508995502383405,-0.01294202735151172,-0.022009398058401724,-0.028610011971193314,-0.0485363417095257,0.026737274621790968,0.12498239036185275,0.020910948687112334,0.0011577731344329532,0.015106178363014498,0.007253747452519193,0.05975265324489843,0.038040219614102005,-0.016163964182756188,0.09244659699768656,0.046854593960409335,0.0015667164959045142,-0.006545529258354936,0.10336908707942538,0.006115616535687566,0.029073944516342674,0.026204296208602824,0.0014442704091735578,0.06460431516297566,0.01310073787520004,0.004989282323986937,0.02085075193316528,0.011203761077913993,0.08382853143678864,0.04159937154523007,-0.030262529122159338,0.03158368029311358,0.03094064158354421,0.009510616176094808 +C18:0 LPC,0.07639845209831614,0.04502535652942029,0.041054939825900603,0.015968289362403954,0.01681859315456707,0.05285670375141829,0.06404523492303832,0.04524162747522071,-0.005709420581415638,0.021416101889547533,0.01443490423969104,0.03440739607990252,-0.005971288655991871,0.00675226123634635,0.06707369607803551,-0.01773853292752898,0.04797661147673263,0.021860415300130373,0.051257474318647564,0.03172924226302153,0.041303556952979034,0.012198789270060536,0.05568155044857752,0.017727270613941363,-0.0006130537520520681,-0.038686945126581475,0.05645364366394207,0.008752156515631982,0.0013695975032939533,0.026247913677565536,0.030817160496681567,0.05115060232019637,0.03348929062777582,-0.0028912925814642883,-0.006609725916442716,0.005529451466550928,0.02858051908328347,0.025980269878004884,0.0030969136377588494,-0.0020757471407610623,0.036771288497522515,0.024291944919147702 +C20:4 LPC,0.08299077781350568,0.041112384761172065,-0.0006579848683605112,-0.03194090437882041,0.06995148215507935,0.10268009101242168,0.04363280018279176,0.09295302073224367,0.03846141925869429,0.0027004862031960873,-0.012380231806931527,-0.006019886881505568,-0.02644018323093585,0.01566470948375805,0.1097317093798496,0.02491301797744498,0.014813004045817079,0.020171739479024148,0.07843319641915451,0.07942936159233101,0.057482299920913846,0.032528506731656706,0.07997979896128035,0.07901823829367036,0.022064379801916376,-0.007323969539520185,0.06003091036387157,0.04272548484658655,0.00029222482825481006,-0.00770000119055372,0.03718518246156685,0.06812610143289133,0.061144641390413826,0.023590870866456455,0.041092879638428476,0.05422839603428843,0.09689285956969387,0.04080574391733381,-0.006497064329191041,0.03579470041024399,0.012312292618840273,-0.003763129209157764 +C20:3 LPC,0.059920125201383935,0.0018372744672847771,0.046247907836938114,0.020780068740344066,0.00027413016877499976,0.02926791313908703,0.04769779068852685,0.008491321273722922,-0.00978523500408542,0.04288672881311223,0.04009756013493432,0.05578506599804479,0.01032967507249909,0.007827958933943934,0.040300993766850854,-0.011142913446803836,0.07219284744663854,0.03345070684572198,0.05288971002794841,0.031295923228149766,0.027891049921512027,0.020253032713008136,0.03763911762425679,0.018617047143054937,-0.02322461252413499,-0.07078554068352608,0.015133604184730554,0.012413227033673176,-0.027699462526812168,-0.01922146834351964,0.04340034500058169,0.027950450800061376,0.04583299478666178,0.0038443045612105075,-0.023023219250179496,0.007313723139127491,0.01196718976518407,0.004130814320118294,-0.017714842469995537,-0.01034653226077456,0.0235433003289133,0.0049019082607483725 +C22:6 LPC,0.09554983310315535,0.06956033161162048,-0.04871995355679028,0.0063161320621337134,0.0571957134837108,0.10669273574839601,0.06312604658206819,0.10261738375478663,-0.015208428326633931,-0.05883351528299114,-0.0717310563649573,-0.06703069193274745,-0.07641629791584906,-0.0462793541664707,0.127574899687334,0.025223344949419517,-0.0675585523180657,-0.019276506405103307,0.05484382965327051,0.10964655886297006,0.13460684387272953,0.02530615773400748,0.049130314380812494,0.06535033821992685,0.12785221663752383,0.027712377761139387,0.0574957028717843,0.008406833180488758,0.020263341827385716,0.02924666673126735,-0.06178980740843994,-0.049354937788647135,0.06908361760672414,0.06760710839238607,0.0669992441181715,0.024741340111261792,0.16108841880732144,0.06522359315804954,0.003956919389660303,0.0019115093619910379,0.028773183455512823,0.024533834766748107 +C16:0 LPE,-0.015541197857334875,-0.0726720839970314,-0.007441276338748932,0.054498947373317855,0.0037783916661621323,-0.04004486836290302,-0.07093473297362687,-0.12952073795935826,0.009824034317174442,0.10410561033028419,0.10426486709433107,0.10081362531605409,0.021666494884614123,0.04234149941236679,-0.04548494648264806,0.00043783827189119393,0.09495602415781584,0.036282468260756484,0.027806816385601583,-0.013378377121143642,-0.0023498049175884445,0.04169816108752883,-0.02841313169095842,-0.02941412231798262,-0.06381156383743225,-0.08632918233053927,-0.10943093847908358,-0.0058508129351356975,-0.060368994232069706,-0.08659042156952887,0.07379095733597364,0.035120724715526665,0.09120030358069056,0.025519710136509666,-0.0011129152825237,0.021154964391477866,-0.027804749368897815,-0.03777054945966465,0.04276452960079202,0.04012835445552276,-0.06836352351431081,-0.05950501751388247 +C18:1 LPE,-0.04895271452774641,-0.07703030660646742,-0.04862845876732664,0.07566511174590418,0.004810235176230477,-0.07207164444643636,-0.0872731776666169,-0.14897199641483613,0.01970354069868617,0.10709530150138775,0.1009344021229532,0.08520397477532671,0.027571286215637304,0.05191460950215353,-0.06211137098646663,-0.02151159819422295,0.09765977795756672,0.026069447808272878,0.07158210534744518,-0.02735104653380137,-0.02938380072651813,0.035576966820423474,-0.04876610001801723,-0.04683467827586673,-0.07526856182378072,-0.07748055221286668,-0.09737766769188834,-0.021932723016310555,-0.057733809026086436,-0.06950279603948639,0.06125427747036774,0.048776065598434136,0.06672001442436144,-0.005409783302827197,-0.02820309841741025,-0.015224180659439375,-0.05284927258659404,-0.062435543695577,0.010208254277844013,0.03072154512093723,-0.07316989744875434,-0.059067531418891595 +C18:0 LPE,0.01825088501430648,-0.101900822049563,0.0013426058325414518,0.006296203951625004,0.06901903289403669,-0.0029030151731339418,-0.06932497965490908,-0.09807586187768162,0.05242846090206317,0.14275257339057848,0.12964242628455566,0.0744577532745551,0.009586822779250714,0.07769717703608188,-0.02861250374259632,0.019063022459067682,0.14685047540389973,0.07831207863667392,-0.001254419408244068,0.0029696812366191185,-0.030990461442136092,-0.04047418680209184,0.002234444558038226,-0.000837707430468173,-0.07755225971965654,-0.09610966641558313,-0.020607504901897528,0.03422174135927107,-0.020675859934047306,-0.07315837283882233,0.10133529558210262,0.08085032931935396,0.06721062621567682,0.053187551816811944,0.013080323847142012,0.018537390556724247,-0.07006527330892362,0.015148083378068687,-0.0012420645685212353,0.0378409167744407,-0.03680104047848293,-0.06529267632194907 +C20:4 LPE,0.027833045601464827,-0.11856039441671391,-0.040894321700604044,-0.013514162774837581,-0.0286558778232818,-0.02490830214493372,0.07002020681051753,-0.053825102049731545,-0.10677280767927497,0.011027580066914382,0.040540556964259025,0.07399545599135317,0.0384465204390968,-0.06901434625130207,0.032708562431112594,-0.024692011370238177,-0.0020313389394863396,-0.041465939219477735,0.08870196243337199,-0.049224708810982405,-0.015141491043657758,0.01064447957909116,-0.08861035196011674,-0.0638902085111162,-0.060430353042056545,-0.06570520608297235,-0.137511857329131,-0.011116540681863237,-0.04199736540363378,-0.015818578889560595,0.0452129364422974,0.04609117326420286,0.020830301932259508,-0.06799153319232143,-0.0942131822544121,-0.056436940533966924,0.0052122222818042395,-0.05115308191555951,-0.006696316410623819,0.04412852300656259,-0.03625767632180188,-0.0401037959152533 +C22:6 LPE,0.02860778466703636,-0.058053328835299456,0.0021614656760548935,0.04005570150917336,0.02594321537474635,-0.019124590839513667,0.027040653483168146,-0.05841059634947612,-0.053713825106710335,0.0485164004526607,0.012998292310810301,0.023298112337490004,-0.011275536466754603,-0.031193466276391482,0.03064926698989125,-0.04954478829606322,0.021363266789140436,-0.0267955169822375,0.07973003674187644,0.06511703219716004,0.0824108943124442,0.10768810089049732,-0.0018339248833589919,0.002114213390475432,-0.0036282335544766523,-0.046351176961087225,-0.08435205058887195,-0.026446352450135484,-0.06587971680399753,-0.06318462940971528,0.01265787328143235,-0.013102488334439274,0.07617942767352895,0.008549263058581056,-0.014255321670184945,-0.01906121432152976,0.08101737493975857,-0.02152090016947419,-0.0044790317386027715,0.05295578999313684,-0.056532054359929966,-0.0337196292799206 +C32:2 PC,-0.0020927931899281265,0.10799426993279884,0.006527278975473108,0.0131950513261254,-0.03842674176419368,-0.0357627887357087,-0.11463707537871294,-0.07986474982889188,0.09762782540005514,0.10426631022491649,0.13293668305357706,0.11812245376797621,0.09075793567704929,0.15096892909318887,-0.09342702189427271,0.14423098063743128,0.11397784427836256,0.1838465186073229,-0.10058886458867598,-0.030405584627318964,-0.02171627808816728,-0.027995898470667187,0.015550604095282788,-0.03294258971789581,0.029030926884417167,0.0671244096257629,0.01423267777614967,-0.0012926006599051553,0.06951141533270098,0.010948890230747955,-0.007576928932155313,-0.005031801031552096,0.050317586880865586,0.07767626094422286,0.06990539045748136,0.019952650176515447,-0.047234767557590165,0.010255675298147804,-0.041410255457982166,0.043221787449703626,0.03215104899363334,-0.006418099208064138 +C32:1 PC,-0.003543415163670634,0.020422288710791662,0.041953784477382114,0.04419670571179937,-0.06483287343169114,-0.09711386798576031,-0.11385364134058183,-0.13947240025101973,0.04412760364195743,0.14921071210526712,0.17960623687231397,0.1721959136325016,0.12385243097150049,0.13330146382609742,-0.10487286980290852,0.13688896589938554,0.14910067123829046,0.17725233481151567,-0.07020407100778331,-0.06521094548545837,-0.027698837542526344,-0.008630706878183146,-0.048039282036490875,-0.09277486081924255,-0.02932827952040155,0.02120204502649106,-0.08789325311167676,-0.024940979131675752,0.002006871064833135,-0.028362153122111617,0.06298416244498292,0.007669515729817347,0.08003160656312962,0.07967597580022888,0.02505697224161472,-0.021567116626910233,-0.0667713042376718,-0.030614166278629975,-0.05392676310675713,-0.01696435222738061,-0.017298745899379343,-0.05093589762413418 +C32:0 PC,-0.0598782405176844,-0.08936343615406765,0.054471188419237766,0.04560326040832386,0.006234021618331731,-0.11378051777795538,-0.10307542961277012,-0.15708880821361204,0.04754833684118631,0.14004131850960347,0.101216822583735,0.0648987506355464,0.014783937319445786,0.11076996849574162,-0.11965585639524116,0.0356393490827077,0.0962686851159854,0.08302849977728419,0.0008683017882275007,-0.01400180464822174,-0.005260054703183979,0.04477491087585495,-0.04756312069058496,-0.04247529414251724,-0.04255908384983368,-0.046483928558666586,-0.12116268102805146,-0.02209480047051354,-0.06166978906505844,-0.04552115586424606,0.06329468517053095,0.0009662101933398087,0.0324186577838282,0.02921989237369838,0.006434843660820873,0.009521032249123375,-0.11937556360313917,-0.041454787671805805,-0.04270097627490278,0.0010866959621985107,-0.047378782125683375,-0.11243380479785482 +C34:4 PC,-0.03942809094057724,0.029804404193125203,0.02253699339688966,0.05802476903674316,-0.06689048873621944,-0.08657989302039851,-0.0758148810852882,-0.11401712100648254,-0.0007486516403725015,0.08383979309317649,0.10318746211823565,0.12287169927746576,0.09086524883584152,0.057633714490389634,-0.08579312184607317,0.08565098006494004,0.0867310172190727,0.1260657484374026,0.0058326847766252575,-0.00715387448986329,0.02180304902773208,0.07303288561063571,0.010511854464685774,-0.019951063898904966,0.0018846034141218977,0.021714033701407807,-0.10158612613497824,-0.0017313521419620925,-0.012463353472075755,-0.04264509033360254,-0.010344070935668248,-0.04589071425250006,0.058314424057738144,0.06543820555099071,0.03661308180214552,0.023115609470485153,-0.026897545717197067,-0.026419159125171912,-0.019923889682131622,0.05065506337836342,-0.009303762996772139,-0.043830161630485046 +C34:3 PC,-0.03152798391935478,0.003267634295293625,-0.03144622147045762,-0.034450708679723,-0.0533457546381994,-0.059118960480931036,-0.06608713039678576,-0.03447707730072946,0.018376523450260786,0.015170250096813168,0.017057655367808493,0.027139834142570873,0.01957773886726755,0.03709779405256463,-0.08329929331837227,0.0734106033717502,0.012019124918101538,0.060955211345090535,-0.004782535823605954,0.048257127735480396,0.03163009819427434,0.0343342250322916,0.06181282350432065,0.05595517833808495,0.06487958794352096,0.04400660604497106,-0.017612186292567302,0.0140238939050639,0.022305854834564043,-0.02919649316684383,-0.023615457668213213,-0.02852469557163717,0.0536475709816468,0.05666484058898653,0.05235748903601056,0.05363640271556029,-0.03644806375837499,-0.0004581681674407856,-0.033743273358153754,0.06134197074689005,-0.022150875416320662,-0.03753439114367303 +C34:2 PC,-0.01736527068974048,0.005014533835523517,0.006402737518145216,0.006572103715386288,-0.01571724109043024,-0.04529913962385716,-0.11150790006861083,-0.0791394855413651,0.04050819930135303,0.08743748522241096,0.08870556459418164,0.06190009766818016,0.04498283939367773,0.08505961080944247,-0.0854488746970108,0.11939381334084119,0.07151703112891396,0.11620066335062486,-0.03763105767987693,0.017063780299476295,-0.015928521769307095,-0.011474592670511215,0.01828211016041208,0.022337942899742422,-0.0168411741809911,-0.012512739749624678,-0.053173521036306605,0.021182616053399057,0.013682591406843067,-0.08346074642809916,0.019643856198147458,-0.012843488225416696,0.07621610115664565,0.05325159812793439,0.01693344693655962,0.020362910589286458,-0.01997364284931506,-0.01736431653398398,-0.05716192518965469,0.022695527735300855,-0.01356252572631483,-0.033757635214512346 +C34:1 PC,0.0035983841597195657,-0.05348333155439439,0.07031286488302399,0.03300410184661709,-0.023391956403924566,-0.0654326680511779,-0.05128074059331795,-0.10262313442590754,-0.03495631873920362,0.12349329392548244,0.11825924367667895,0.11186089364857242,0.06688876195745722,0.04758866632241882,-0.07237671154219794,0.0791814523518894,0.10998522168994383,0.0965697102004146,2.6571576353558446e-05,-0.02627810902859235,-0.02155595907095712,0.010810567828719647,-0.060887130053075056,-0.033957621877648184,-0.05957583228745758,-0.04308089099711191,-0.12332666864116267,-0.003953907973712668,-0.06360755356329836,-0.06810894885189245,0.07239884756722804,-0.012362406345251488,0.044103841408962306,0.03247592753953363,-0.030740736618356725,-0.01936710610275683,-0.049599003089062135,-0.04564840378378017,-0.06821711151004672,-0.025899347054889724,-0.011025845647978108,-0.03855771666465846 +C36:4 PC-A,-0.028062698206545954,-0.10130197815959059,0.009442530998899407,0.03971886755395783,0.04340110423214733,-0.03385695393443316,-0.0188131061391322,-0.07476285602676962,-0.10033940899382732,0.07541431979060914,0.029969127907536447,0.010036360620827127,-0.029435638766926165,-0.05760719848261718,-0.004769206672161895,-0.05817537501451821,0.002696015766979532,-0.07504552479828311,0.03853465522601578,0.05893273516993874,0.013398842161179335,0.05093177084335953,-0.03222327768965598,0.0723497719663036,-0.019281679181524933,-0.10243343966328437,-0.14134615756853516,0.05411527757951288,-0.08093327176621137,-0.11099561068658131,0.022296960151355537,-0.05050113049897728,0.015680350499781052,-0.05806970986605117,-0.08147438487875873,-0.028210124773697585,0.022041777893058237,-0.021550654407212766,-0.015867446727423174,0.04588499449841474,-0.05253274259491853,-0.05305174105122539 +C36:4 PC-B,-0.01314155865688035,-0.07308589674903632,0.06559516223350297,0.044133703164923106,-0.04585095399577388,-0.03694148635446376,0.017866122809896808,-0.08243669268422842,-0.15170777128283697,0.03898688892741653,0.027367458451389024,0.05509762523907666,0.02369594329093622,-0.09768765755659758,-0.035146939614808866,-0.03781496220364453,0.03806221453253137,-0.050448040365002625,0.0642015837865058,0.01885933030239952,0.014409951803727249,0.07020282584163262,-0.039831738976766874,0.025790104139970686,-0.03738645750202034,-0.0963204964452546,-0.1600008716584993,0.04202737053933732,-0.08408443956639444,-0.11016819255703265,0.0547064050517084,-0.022133523734259985,0.041211714663068104,-0.04547329045255524,-0.0990950270400918,-0.019430038247763348,-7.882762948095819e-05,-0.027167556442085482,0.017163516986712302,0.014579362789227453,-0.017209722828155933,-0.007980487087255368 +C36:3 PC,-0.043354546989411935,-0.11591425630135894,0.045168483174853086,-0.007193109534415665,0.026684878976789218,-0.01774802286695758,-0.01900050370142759,0.009380311569060424,-0.08306891865345062,-0.0073735727742310605,-0.050779614336042576,-0.04485670451420223,-0.04087827453571692,-0.07271952611926724,-0.00756406271806945,-0.047121437232271565,-0.006478171958419003,-0.09337985537705734,0.10022843236206427,0.0901179701781017,0.032398983690021026,0.05586961001498661,0.028181573532598918,0.11062243891140165,-0.023323061796643906,-0.0632002654297892,-0.10446991151536518,0.041628823121568015,-0.06950582545065072,-0.12737425201482916,0.026619499941712112,-0.010854537589166886,0.03911554040947141,-0.03630710528802087,-0.07354927443725431,0.006258103280259906,0.011956612398111887,-0.016117586260898743,0.020365762252376518,0.02198553655291134,-0.012296649882777302,-0.016416779177922308 +C36:2 PC,-0.04181794625146745,-0.09934452166229094,0.00897194522606485,0.01128422155055744,0.01354145722467738,-0.039103631632528786,-0.061347863787254715,-0.02509356194555941,-0.021578407991759595,0.031954336391597594,0.010570099935651502,-0.005622667372350973,0.0035221806374707257,-0.004224879622110451,-0.04200232922094654,0.031223459348542516,0.0025351627670027717,-0.010732789835364282,0.035780841453626526,0.04611961760434123,-0.02253204873610073,0.006686455271379746,0.03326524253279832,0.06806614143730634,-0.059730577827968145,-0.05519367384646076,-0.04813418786821356,0.03690436874030404,-0.04442874008353847,-0.1254545466632589,0.010158990971149478,-0.04290151074335119,0.03156756616173381,-0.007533271779915628,-0.03786160703051468,0.013683049766001213,-0.011994595067824899,-0.017914245381109667,-0.033969836291921206,-0.010727110944588218,-0.023997752885736495,-0.01971801637140066 +C36:1 PC,-0.0415044614295725,-0.08093294181243853,0.05327669763223195,-0.006186571784167864,-0.018121673335454655,-0.041667651701699,0.0018400840017880383,-0.04085847938443985,-0.041319728267502534,0.06203822157977001,0.062089796350276075,0.04829156433877202,0.03758335614526381,0.01319692706273172,-0.03810923191751861,0.0458798874598608,0.05447386718152671,0.04266138925632688,0.020625851463361298,-0.028822384585324892,-0.039514299369299476,-0.004426466761610902,-0.009350966116321153,-0.0019818874233012602,-0.026859131002235193,-0.025387654424135753,-0.035342996577292125,0.010385792716463976,-0.007672364207780583,-0.019968855444446456,0.03032340432013129,-0.0077746765526651995,0.009386855472471946,-0.002410975887193289,-0.04061140379032181,-0.014073147549046311,-0.04961564559073625,0.011404321745575891,-0.05036415773464658,-0.05967580184120627,0.01399530306037242,0.008093654172850356 +C38:6 PC,0.014848992254265274,-0.07036135358622457,0.07240791445874362,0.04718729776337637,0.01418740561921939,-0.0077301138816428805,0.025559226976382333,-0.05360058508417184,-0.11818430333830109,0.06042197756231891,0.021944040081729354,0.022425192393180242,-0.01188838486627722,-0.07606526021056251,0.01857673797707581,-0.029391821890395027,0.01736509613874524,-0.04631681807529982,0.08015823947669994,0.03923769650919652,0.03596538220910104,0.07369420942809,-0.017558158472663208,0.04437190035512377,-0.02792859918122849,-0.05316163159813775,-0.11589630036957811,0.04976436184308702,-0.07825293655646438,-0.07598265910309943,0.07285193355383801,-0.007161640325304708,0.04060754816316653,-0.03331324688625459,-0.06412770129543026,-0.005456784029638432,0.007706080734918116,0.014702002450270358,0.02221755196106657,0.012152957764757676,0.018080137509109494,0.003004056260553417 +C38:5 PC,-0.017534791065948397,-0.10674339897115498,0.07486845022822318,0.029129251217706167,-0.012846510788302717,-0.03383821502482814,0.032285120553905054,-0.05666605255954943,-0.15160687756419947,0.024361827763378852,-0.00734194766488073,0.00442272869393471,-0.018562811095748085,-0.11152594663217519,-0.013896241269223853,-0.0673443646146184,-0.003862128485700491,-0.09039270305152336,0.08186930484384819,0.0515968570295958,0.03270311918531045,0.08938348467911911,-0.013911560323075263,0.05814347807431617,-0.01323040881240314,-0.06269979147533795,-0.12240093742326243,0.05299037190346857,-0.07142479113647839,-0.07649521393112513,0.037202261080336294,-0.017230095613492563,0.021689857893429473,-0.05983984030525963,-0.08593508886362443,0.002371898843397202,-0.008346642313459822,-0.021214027772291536,0.011296197607034819,0.017656077071512438,-0.03065714932174713,-0.02078116310017052 +C38:4 PC,-0.055459469028190364,-0.10496557392644144,0.0408574346047775,0.04247200023664246,-0.04183827201690797,-0.06732898557910763,0.03157278281866767,-0.07264251811198973,-0.13674966832459745,0.026692857195372687,0.015650600961180882,0.0416295099330116,0.02845674232707673,-0.08902409086246686,-0.03638519536733824,-0.06374405546451181,0.03956517228650769,-0.06477890885078424,0.117435194514509,0.042533756463977716,0.03882047032588077,0.09797449991305053,-0.005881642726463073,0.052317597134426116,-0.006289808542641935,-0.06850339390325784,-0.12983724052639897,0.04349759183721063,-0.09348688797802951,-0.10571668940014882,0.009839458063716569,-0.06162667933361274,0.038095961876586086,-0.04194252360141867,-0.07458615654025436,0.015732661363874252,0.004839254596250934,-0.037650979827923065,0.019957973944739513,0.012460093305126768,-0.028307367416974153,-0.013432785590357267 +C38:2 PC,-0.013873405737396934,-0.042089705434795135,0.011183349823079744,-0.017699550541892595,0.02520516761310146,-0.014989880920563536,-0.04157610197359683,-0.007242205396407207,0.006496274409512328,0.039243117977609016,0.011829578361323511,-0.007155892746271371,0.001088010197057046,0.013658713260115531,-0.03326344451638495,0.07156731344086088,0.04309660524952765,0.05923768852822637,0.007725161842299746,0.005211103566943926,-0.005432922051796571,0.03174517395166278,0.04444449657242944,0.024920204503239635,-0.018152620159844354,0.009005226450266557,-0.00860756663461125,-0.009266872795566943,-0.024207368787451437,-0.04287162509776386,0.0021814534628458895,-0.021817925041609256,0.03952965089864757,0.04226454955976134,0.02930442100832352,0.05969812087773722,-0.06637498781776346,0.040715993134231715,0.03748811745443442,-0.01128181424689043,0.024748895365173346,-0.028226749531991495 +C40:6 PC,0.0036156583591813473,-0.05874721382397528,0.046985464026531205,0.11027951152046389,-0.011461062924694322,-0.053787560282401434,0.019447453069606054,-0.08661951270805816,-0.11739960431532563,0.07334181200983766,0.06109852698965136,0.06303093634846008,0.02295938243817007,-0.062178903882318254,-0.015949487579604037,-0.03785021697017154,0.06500959590703513,-0.015359040002944559,0.04649806614582382,0.020614982556597793,0.03394727821849097,0.07325502647850808,-0.03582212239491144,0.023618763071108925,-0.0009681936372563926,-0.03346351034186588,-0.08214270939539403,0.04297000979600416,-0.04815849495014855,-0.04148375275246764,0.022823717385927634,-0.05551112966242926,0.04445969563560778,-0.03135852125167209,-0.06370299736603212,-0.029629266771966943,0.005966015030008581,0.009111374609393283,-0.010335501347244846,0.03207484874303406,-0.015015484930324303,-0.03515789086597697 +C14:0 SM,-0.00986232046807662,-0.019087930954860197,0.02966330062459133,-0.04380265118731309,0.05850360989872305,0.02795436425294757,-0.0399360743732426,0.058489050494694717,0.016245537658450028,0.007020982383799903,-0.03008325551981507,-0.053901342213041444,-0.05398484817909434,0.01421484181273549,-0.020884470236804193,0.06419848264965378,-0.03456077179707868,0.03463700905522165,-0.025940764350169503,0.07753576546002772,-0.035404838870545734,-0.04476924229865902,0.11601343413317095,0.10242841710923574,-0.06948822441171004,-0.05259204967869736,0.06939374700059893,0.07665121519644848,0.005786529614235845,-0.0880681620418454,0.03692987107505885,0.0011013350996995012,0.007649787001327568,-0.006702615262705975,-0.002482962724868828,0.05541543470358547,0.014991449865109125,0.01599407158486687,-0.05031282528905165,0.029436755328866887,0.01746689166079086,-0.002821930674922791 +C16:1 SM,0.0027781870154359044,0.02361359079043302,0.006923881898858336,-0.005588539570358119,0.027346389840523275,0.011536391682441659,-0.028890053696614428,0.09144239933838258,0.06366517123564941,-0.033481532572644725,-0.036573821903962245,-0.05992763455709925,-0.051205893741569725,0.06280960491071014,-0.028724013525715762,0.0927182005698434,-0.06859643668884419,0.07156379768522365,-0.09229973477950681,0.006340496701752237,-0.027035877018242584,-0.055098643897970305,0.04531221875123396,-0.020573591851353247,-0.04897440549809144,-0.001745984154530267,0.055545483353050186,-0.03436135536632034,-0.0040254235499831885,0.0023820029101117557,-0.01643823858295521,-0.02700209002116269,0.002803546873117258,0.040409412126665406,0.051849649728679205,0.041569668680922905,-0.007416782710504611,-0.037769414123755556,-0.07139000016488915,-0.03331568828168468,0.03492485185155517,-0.0035756599773598898 +C16:0 SM,-0.011394509186241254,-0.07974878892678013,0.018894924903344778,0.001485113502669178,0.009917520300656985,-0.022037260134070796,-0.014869156509100959,-0.045647115738917284,-0.07247236438421255,0.041113308844016726,0.019535379861537014,-0.004506657495254254,-0.012961237127886173,-0.04555464682302695,-0.04886110938965913,-0.0010636619904147136,0.01552225940123122,-0.013554851598434519,0.0036755130461154197,0.0033154463796023527,-0.037093860060592454,-0.012552828000664982,0.0162885893376928,0.03663768723118722,-0.03422706838131118,-0.042451239385810344,-0.006189531464363117,0.050611302931186375,0.01968745911011189,-0.05758084741499532,0.011576244195753883,-0.034824145632224336,-0.0008440785662690643,-0.023859338154651064,-0.07154813268950987,0.005194182859393112,-0.016561262465278385,0.017218754116750407,0.0022566595534764936,0.0003307162189674725,0.0206734633192106,-0.019495822211873775 +C18:2 SM,-0.026262348896931683,-0.07208885241188069,-0.000663253962880639,0.05023890109297619,0.019730529825882262,-0.02071901155466064,-0.04392762397853977,-0.13734820151985094,-0.009790946256468237,0.0837359950376318,0.04706764349059255,0.05897061544237211,-0.02238256145685626,-0.0064910635125236295,-0.06202671306019514,0.011613077886573597,0.07279153519618711,0.01978995969398905,0.049280754464682185,-0.028954571505578577,-0.02591833557459559,0.024457696417960816,-0.048810016061556535,-0.032105570527304804,-0.07072676929920267,-0.07438640482941458,-0.12003875248603339,-0.02093959692149627,-0.07487221620537313,-0.08234034864207644,0.06278414571831692,0.023615580030635734,0.035981383968287185,0.0023763566582909266,-0.04365865423729351,0.00347024217984585,-0.06460008950712146,-0.02143983997594826,0.0422862277375587,0.04606550753128417,-0.013463962853518535,-0.028322034016582575 +C18:1 SM,0.024861717750595168,-0.00435010850543583,-0.02608519336251743,0.07532436219439038,-0.017803475613769874,-0.06354171660398966,-0.022599689313922925,-0.045566520997837,0.020100804975945387,0.093624661633167,0.07615027302508429,0.08122656530069125,0.05385506290386973,0.08547249595696294,-0.03354602956211281,0.054354669706777325,0.07676581785768305,0.08366849336574089,0.011306055081453588,-0.009038941883150445,0.009901882791004834,0.03939593507902073,0.01549993276269529,-0.04884177890116284,0.004717882849893614,0.06245482782531244,0.0022978616032225427,-0.02342537238822406,-0.024551588464566235,0.039999173079507996,0.04615936498019759,-0.00044910321934286875,0.015244557633889886,0.031646088855610564,0.03627035108424905,0.058903903768384225,-0.06365865981992723,0.009124179175741385,-0.008902720758829983,0.010106031238049278,0.01793842057869787,-0.03943873679043691 +C18:0 SM,0.0021601490620045596,0.009532427622866444,0.0002260588534767537,0.06278466352527871,-0.016166806976415017,-0.0612702259308299,0.013853240838671545,-0.03555152348166981,-0.03777283684359366,0.05065886037167102,0.033629821494214736,0.05654359828030075,0.04400868983680162,-0.0028983975260303287,-0.001759232490122607,-0.0020755095793312177,0.04722562687609507,0.02710602429814729,0.0007200957178048093,0.02234790464415138,0.03607090157050702,0.04595240929950846,0.05438465321216584,0.006276652126171659,0.027151354442392577,0.061071855424686135,0.014870978317858923,0.001489147560207983,-0.017235892648963774,-0.01534414579196066,0.003901240390693436,-0.030870318080073587,-0.0013983224129499032,-0.002484006934187997,0.014765960835001734,0.028441726071372866,-0.027546978882446983,0.0615187151418895,0.033393572293409786,0.0918183849171095,0.017905146035403913,-0.043520629696085965 +C22:1 SM,-0.039828202932795015,-0.0718509158135688,0.0869204903803147,-0.004757291351549112,-0.0033838980338205737,-0.020913056643427748,-0.025534552365591587,-0.038401352248132986,-0.07309735404290045,0.03372661326874047,0.02977321803402094,-0.0043462283270787,-0.009205246043438297,-0.04169956453289048,-0.06670127962367592,0.0002767705993099863,0.01750582654754515,-0.02286619086450437,0.028109553385020986,0.049260813512585815,0.028350692432297406,0.08112768031995392,0.028907058903498824,0.07127665041761816,-0.00416655349819079,-0.055591769200019375,-0.11153495724268585,0.024262788109364972,-0.062008468527901206,-0.1337643806045134,-0.002533046895610131,-0.03916841788590705,0.049478764840469945,-0.03273907860950201,-0.030001140175397702,0.042558276428500214,-0.017211881009235194,-0.01289820099378472,-0.02488606619966182,0.030235688613843598,-0.03478275304770843,-0.029993320564090657 +C22:0 SM,-0.004596856276894073,-0.07165319038471965,0.020906586658801924,-0.003468552447621875,0.0205113417487379,-0.02082705687814301,-0.032915182638988835,-0.027069209153753677,-0.023040443186654713,0.017164790914823074,0.012380298041554282,-0.00131428927678379,0.005511856620509756,-0.008873988124656148,-0.01839232943994156,0.03573374956523546,0.003693004975152286,-0.012327198204028536,0.047785805219869436,0.04478578620804031,-0.0002794126499656762,0.023715599508169195,0.05636473826457069,0.062437803488994484,-0.018809199317336066,-0.011094220935612903,-0.008255302318799796,0.027549813342517417,-0.020162561661864076,-0.09766911287297637,-0.00041620965109969766,-0.026092158399249846,0.04547840705208826,-0.0004826255373051595,-0.019221589578402767,0.033535878189170636,-0.009425655815305415,0.008296811597077913,-0.04592003066742647,0.008673124610423693,0.008484725403322265,0.012229431589641925 +C24:1 SM,-0.03080129136960788,-0.05185208006294247,0.023846550143938484,-0.020009911155892245,0.023540246379639213,-0.032767106744414756,0.0022600900474170275,0.05984379094793357,-0.060989227134496275,-0.025281710237047856,-0.09378048525416578,-0.0804418221760066,-0.017331425388585054,-0.07042286779326658,0.0014535440052684744,-0.02512728494277752,-0.05078077905524526,-0.058806637950026344,0.044867793860723225,0.06779482423635481,0.016037433584600403,0.06507575013998136,0.13304155746584037,0.10313353004107335,-0.011593502783397444,0.02793707718690421,0.08018750681572229,0.04640301788135591,-0.02790587938750893,-0.048305123378853815,0.020005457780933655,0.004062521282051531,-0.006761381558372404,-0.019922196105987795,0.006071466441541876,0.090237728775874,-0.056466179524010264,0.086893125434836,0.03520644369796828,-0.004566625873383035,0.06045594897935624,0.03444098966394053 +C24:0 SM,-0.054540919519562615,-0.034273160180570215,0.016871025485389858,-0.050127002145152255,-0.007973382393414807,-0.019176343608090732,0.020130918397920642,0.05232299894131383,-0.04890021138157036,-0.05669895278637408,-0.114534943439072,-0.10313134020533053,-0.020622625882006716,-0.08287474859127178,-0.010626011547902178,-0.03530830740549697,-0.051924737971580745,-0.06010427255917182,0.03930666892007419,0.047518806804909275,0.0045775736024119005,0.04150024542598766,0.10331798667496737,0.09190013435467938,0.0018109515741618685,0.011628030911663425,0.06373199198521987,0.05586314145949204,-0.002182398983955045,-0.05041445760528183,-0.018783709276019928,-0.0499757820763478,-0.007737299850617495,-0.0010856921963334346,0.009963226670492225,0.07937931922297234,-0.0019766830347012873,0.0604273951687739,0.061712975387344236,-0.006388098603079935,0.0558174850605381,0.015945719700331214 +C34:2 DAG,-0.003666755463077548,-0.049524618272664474,-0.02717015135122964,0.02141872665641729,-0.0779177279750554,-0.06858157078295064,-0.01905607101152619,-0.125864989002696,-0.07044755993589888,0.07899165456012341,0.12121153924676932,0.13662437795687812,0.11068319643214239,0.018634414147982958,-0.06897260857569523,0.022226737536565132,0.08266392206083996,0.06963099826116138,0.012271641570557318,-0.0935841536181809,-0.06108732537325197,0.022112853444162913,-0.04594606874077028,-0.061900729440041886,-0.05224145701323917,-0.0337835302282314,-0.05810915441654433,0.03245671227982835,-0.05008028979133169,-0.03709503451906876,0.03629042316437428,-0.02838167751103875,-0.022449283424590807,-0.015915452155261575,-0.031114826060478266,0.02149690482236425,-0.08461580800383205,-0.028457093280824748,-0.042311929683202125,-0.004652577720608366,-0.029288186762757986,-0.02934540185079482 +C34:1 DAG,-0.03210748109059778,-0.10542378141400471,-0.037431836194739644,-0.029421009883396194,-0.027776313869891787,-0.13054689994545363,-0.11023072866951748,-0.11197202270059016,0.03828737452581872,0.1147201223085613,0.11269695554810202,0.07766006165111126,0.0697549677939529,0.09879911462605195,-0.09472741828538635,0.027213951583318206,0.08972092338206693,0.1101627243937992,-0.0198179731329391,-0.03436484432799653,0.011052882862942946,0.05066576137707721,0.0002366229654104713,-0.05091358325662135,-0.010140990241383511,0.03443045777358657,-0.017942344702971274,-0.051965421551106554,-0.06780317350371244,-0.03665813896124809,0.043100327915417104,-0.004301310225433286,0.07513481817463759,0.08983329088138658,0.08175693905649462,0.08010493561776325,-0.13505698607422512,-0.09931690530065769,-0.06166594783047844,-0.051050340361794615,-0.02574795164976291,-0.01821723948358166 +C36:2 DAG,-0.06083060459923012,-0.11231913527352533,-0.05478590125439457,-0.046265868030968556,-0.027103267261092277,-0.09041253719518613,-0.06789138552852522,-0.08670937769076566,-0.02416000646577371,0.018179412047161333,-0.007244642854749605,-0.004521445299011142,0.0022526401907159124,-0.012755982311812498,-0.07846528912872879,-0.04004805485251992,0.003882575791724579,-0.01849782601213185,0.05827530649336673,-0.0013848398056352698,0.03679810024709307,0.09804453235635487,0.039307466225264195,-0.004940710708070587,0.01844970142828921,0.021914144077584873,-0.04053051400687705,-0.03772118903848183,-0.08587853805632914,-0.06529627632028627,-0.014677231345676448,-0.05925294848520644,0.02247274456181444,0.025770189297914026,0.029241896171539085,0.06823386390322565,-0.10319587454940088,-0.07235725141529459,-0.04644009520686789,-0.03322352252235774,-0.042988252022062724,-0.006725987890692941 +C36:1 DAG,-0.027646715122649917,-0.10427569950276572,0.030827389849548303,-0.014027451351317033,-0.020527502056975244,-0.09805632059746876,-0.05081575482736521,-0.10076596799430691,-0.017214203864686767,0.11386084024770454,0.1053880555567284,0.1015998726862337,0.07434152848147123,0.047610807247611894,-0.06841852673198405,0.005775285389301557,0.10008176786293996,0.06966137880541733,-0.006775313344422973,-0.0550558024385246,-0.014814767019472421,0.026315628297842224,-0.030185149482705804,-0.03220237711867065,-0.008857174319890469,0.009205704871991583,-0.03039154407241979,0.003287409685237057,-0.03299525456231,-0.030138312498865397,0.0639757721658604,0.005216601154124277,0.027605311165403455,0.035067951108433026,0.00962525244320696,0.03429187552339985,-0.10492868398748881,-0.027594910065670566,-0.039808193068073976,-0.04164331241614581,-0.040012178124151886,-0.020096966043641196 +C14:0 CE,-0.04949703843443948,-0.08497604936106559,-0.1222092281750077,-0.03313412629806754,-0.027538383236353416,-0.04443128157631728,-0.018257026635036935,0.05504125899003076,0.023533165377887452,-0.0599496057151967,-0.03421492421633517,-0.05703466954578693,-0.029852310620556686,0.0071625692857675595,-0.02052898502367533,-0.0069893637104321725,-0.03905896689634468,-0.004537444348958183,0.013625273152496611,0.017002351605778884,0.013424236149844594,-0.00756488146156611,0.07483503462024076,0.030751482058378302,0.05610300101120163,0.04582297834179882,0.1025107122233983,0.022966299791216786,0.05950507162744799,0.059212905396177185,0.008255596162373579,0.026098628877200096,0.025307885568198456,0.032797481351287606,0.04716097355424714,0.04900215321406209,-0.01730418461287361,0.053311356106796604,-0.049467012536994696,-0.027932366093450102,0.0012127075696647582,-0.005287436646077363 +C16:1 CE,0.028225905163639278,0.07005080390132991,-0.05828996729335781,-0.07779610359996042,0.01828410733257004,0.0985789440783956,0.046920711081154434,0.21007663524025455,0.05207803223795008,-0.1449651231663236,-0.12252042353742623,-0.14700164077072186,-0.07674828648466038,-0.0265846474119604,0.08063524485712015,0.031990645562581396,-0.13095579467558605,-0.016285700108860646,-0.0022833033345473906,0.06766363129826311,0.03314301548263573,-0.0649120509389672,0.09816037755716296,0.08908929682677434,0.07880573984023564,0.05570972042247943,0.17938395918663674,0.04070787949790594,0.09214150870080136,0.08802360723258974,-0.02215707445918985,0.032503371070286495,-0.004476623559840492,0.03701409512289547,0.05582840613796906,0.05089105366235698,0.10991569020881543,0.08240393705061659,-0.03802830061057024,-0.035411492389130626,0.0901889774284035,0.08292808769122272 +C16:0 CE,0.044278113872527135,0.08925655517822566,-0.05096704451655459,-0.0811065737589425,0.06065905896851039,0.13581587022342667,0.04243562364864348,0.22088393790757094,0.055117152643218405,-0.12267369584886784,-0.11563447022700293,-0.14076272440151197,-0.07997162986166727,-0.012322915566825979,0.12510169408823166,0.04602994415796417,-0.1396119616846462,-0.013644642308121596,-0.019760975042396454,0.05278748195586088,0.02287580460932023,-0.07354528805861288,0.07233500369669132,0.0687831087754711,0.07804542739915002,0.055013974436269625,0.15368869314661268,0.02630476094224632,0.0983793710349621,0.11132659539971278,-0.025235748767491958,0.045726934925801085,-0.019394432235870784,0.029586972949721364,0.05110603091050782,0.04345241788822127,0.12285053506507736,0.08727916890790463,-0.06776580888915815,-0.05104209504304337,0.1008217774263787,0.0684755940600916 +C18:3 CE,0.04159906837199657,0.07215189782505047,-0.02542020125289666,-0.09273121887523951,0.034666406851217926,0.09702769158401058,0.0509960189391483,0.19014596862556085,0.039978404291144784,-0.13711337144576138,-0.12891500197698655,-0.1386731128194665,-0.0965681694280296,-0.033512762936626944,0.09218043078991835,0.025435464365059966,-0.12891969424285354,-0.02943080852572581,0.0015747819855512011,0.08117803410269686,0.04990774996073861,-0.03597740782053339,0.08049373361431927,0.09453203217583069,0.08419077717398894,0.03326975416417195,0.12843778456266855,0.03004303419516774,0.07990147860970802,0.08661651140967375,-0.03901500373170384,0.011815134705914164,0.0016762504696191686,0.04265218896750642,0.060179855651367034,0.04781706868210609,0.14034226219718832,0.06893548287339953,-0.07250973012458144,-0.04139002947362023,0.05669552994704011,0.05607852515910057 +C18:2 CE,0.05569126365224787,0.09314879276570463,-0.04689323274906506,-0.08249479372610374,0.04204002556245597,0.12317650442496617,0.06150184649381768,0.2136145899809469,0.03938917764113798,-0.14907700891862435,-0.14978755951753359,-0.15780664774651912,-0.10245389137592491,-0.04145451204892836,0.11368655257982233,0.03698125982888842,-0.15945829579525717,-0.036412393569177595,0.002751065896603411,0.08052847401449167,0.06358445382620274,-0.05569793131720623,0.09166419930620917,0.08966416619199677,0.09938579289040561,0.06755721704716348,0.1616476614677301,0.03012360344292079,0.08096717805065635,0.09139473446259559,-0.05126905999182137,0.006106268284209596,0.0029258294462837166,0.041353593382392334,0.06280193329911968,0.03880883115315942,0.1467359595114748,0.08115528124497388,-0.05981216024250527,-0.050522017739639366,0.09152925692829308,0.07980161537423995 +C18:1 CE,0.016251595535546733,0.06567271508423218,-0.05755549712863355,-0.07932359994423883,0.03436723289957816,0.10969761084356196,0.032728298285266945,0.19264621791363484,0.054441481605431954,-0.15003446851872285,-0.1418750946613696,-0.17472100049653752,-0.10841385898527225,-0.02671353737587015,0.07775599966602434,0.02149114260031588,-0.1682144342763233,-0.03193290544380264,-0.020407559209495888,0.046735795600188534,0.0018830135820361938,-0.07640415943269802,0.10090612917695772,0.07604693257062703,0.04507196410451101,0.04701653765207739,0.19139039566043625,0.03746163288142312,0.07281830917821441,0.0782191670496885,-0.006426700622705491,0.051138143383448714,-0.029282293376500994,0.023579829271217233,0.05278902017487009,0.07618003556058675,0.08238664325725845,0.0963248640596895,-0.022733243960719404,-0.05672788956617275,0.10383677527848985,0.09954924238365648 +C18:0 CE,-0.014402558675199123,-0.0028232876307269133,-0.04361414678879374,-0.07362352750933797,0.02238488102149216,0.06316507544455398,0.017846184348140053,0.10789744604983614,0.02089895532936351,-0.07955086976220864,-0.053313065509032496,-0.09833491352808302,-0.08408161382017898,-0.0179617282393752,0.03612977093666589,-0.006758081569375055,-0.09299368002221124,-0.02154175215382205,-0.04141144277531789,0.006148729352780319,-0.02648868786059286,-0.04358100841948018,0.06907838397424433,0.05953294629258057,0.04299551657455761,0.027292129194168693,0.13322838365182707,0.05297529330011506,0.08355580461748933,0.08149551631979127,0.01674720293425831,0.05105912877240569,-0.03802840641475289,0.015885537270514387,0.022178412988367924,0.0755873142973897,0.014203652407494147,0.082297244747399,-0.04646696816300709,-0.022978923136245076,0.02929261558391293,0.02484292351214549 +C20:5 CE,0.04123062081077562,0.06308835533179097,-0.046658996096773216,-0.08552030797086568,0.06494188177297933,0.10899800139269311,0.07226325225744971,0.22194642586151092,0.03713659982515698,-0.1406600956533294,-0.16230322063656874,-0.17888128803188466,-0.11854644090019294,-0.044084930963999756,0.1280361614135599,0.01418554283889114,-0.17518190680381412,-0.05646361366756539,0.014404326227382606,0.11544525644162464,0.06950023879591594,-0.04877885895894102,0.09480279981098613,0.12794937390319686,0.0841223286853108,0.0335436085044065,0.15015380651765223,0.04754662610058286,0.0756878377395626,0.06852950807886912,-0.045667436235233956,0.006163640990322721,0.00158818273610105,0.029044017429075152,0.051921985816229616,0.05200573746933195,0.15557997420546626,0.07097337810357579,-0.05756752232344261,-0.03303276932890827,0.06809611303770138,0.06498945938775522 +C20:4 CE,0.06554874692722064,0.09329459824499618,-0.040402817368617415,-0.08335148249347879,0.07440855282162531,0.14031056646538653,0.07155154796739716,0.21621040759659257,0.05689622394660443,-0.13601337492375928,-0.1457092115634676,-0.16337877392469136,-0.1161833408097936,-0.01864734282467955,0.1323557463927562,0.04703742119282781,-0.15976519557914307,-0.028784032899039223,0.00014096306343632049,0.09096999937515103,0.05836229413175305,-0.0739898812801837,0.08573204736645156,0.09811045326313719,0.08845447431797067,0.051884155476826024,0.16643997649812783,0.033895784846933244,0.08290106754719065,0.09302964319535412,-0.03730963229700792,0.021375089142138055,-0.00443186174486397,0.0394481159834706,0.0651635144440072,0.043800268873151006,0.1549694909048288,0.09810770761344552,-0.04324727616219097,-0.05971533617472543,0.08857180688472051,0.08457960895611542 +C20:3 CE,-0.007356609438477468,0.025911503661839405,-0.06003982074317023,-0.11299509589440344,-2.736491408577921e-05,0.07050600577670543,0.06966120794801933,0.18611438028192512,-0.0025027948781745947,-0.1648061864226996,-0.16162464444830993,-0.17304462317725006,-0.11397410251719277,-0.07187143469713951,0.0775310155082559,-0.004769987736364422,-0.17513338011695526,-0.06905094238303261,0.00011100747858275078,0.10149747387934498,0.0542090201179728,-0.03301550991698963,0.09102642670098368,0.1207750981980589,0.07654866430852741,0.05817870320163331,0.14443254679450132,0.04384784195960396,0.06092192678111088,0.059887292678845974,-0.045027969287771204,0.003852949511500367,-0.0231178136256208,0.018519619217931514,0.055165853200293574,0.04528736202167149,0.10185364520341984,0.07823734089521442,-0.06020346805836097,-0.022720117335740468,0.06591593841778416,0.06953142829810684 +C22:6 CE,0.040502945180808395,0.04173367366619952,-0.043237014248282524,-0.0656380756298474,0.08196157017027411,0.1023013162995452,0.0684352500591353,0.1969858665997206,0.01729252506393827,-0.10682401001605334,-0.1329244423681973,-0.15742112588559548,-0.11424730483354521,-0.04910827568197754,0.131091590637395,0.022328866053102282,-0.14787571489665224,-0.040373554790959096,0.025999211190923875,0.11806102627553075,0.05509912891878022,-0.02912472088191694,0.11084572211354139,0.14381434233447313,0.05638431271759697,0.03841466327432452,0.14473749171150393,0.07612267602204885,0.047857658005409476,0.028488095157015943,-0.005212937389209525,0.0023085368824639113,0.010465041086909967,0.03024505635139497,0.05772885446488356,0.07162640689649145,0.11738203831023046,0.08624582202790673,-0.034208679727592305,-0.002586808524372423,0.06858350828143063,0.06572043237431766 +C46:2 TAG,-0.06888124793877805,-0.026675397477652952,-0.019776492113273574,0.0396328424205056,-0.14193369096257358,-0.10709266523060655,-0.079151028408919,-0.16561614375212028,-0.05649329661900701,0.04855247600583249,0.10321184483826054,0.1142360152769033,0.12352925389909192,-0.0008207929710609637,-0.13413691506463768,0.0018100679281073194,0.07384427444587735,0.059905249113003926,-0.011005557874111182,-0.13317259014009003,-0.08464682618178872,-0.006440450588331764,-0.10491446937466392,-0.13114721792244913,-0.06646147891603098,-0.06776554276090095,-0.11924224420386517,-0.03624115173594334,-0.029627818086538853,-0.048409783861984065,0.0379026726031644,0.03837737049107024,0.016188802252286777,0.00013285933149978559,-0.061082407450534004,-0.025442769107851898,-0.05191016813791555,-0.07114441048846105,0.0793115838600393,-0.006284002917818555,-0.04756508711536322,-0.07533075431966987 +C46:1 TAG,-0.06651619384476298,-0.03889723120652086,-0.002725613102137986,0.038751904255159696,-0.10030695429540294,-0.11812496127695539,-0.11042758058832369,-0.18384774891698696,-0.01412840009782633,0.11929450131867798,0.16217209859541715,0.13604427016973694,0.13446065274875973,0.05590490197470556,-0.13038015429883598,0.012107891822691548,0.11568964990302867,0.09764239986229556,-0.02772502798107037,-0.14098107944929603,-0.07454630946765188,0.011303603381442791,-0.08610383946690976,-0.15476764325595602,-0.07624030459328063,-0.04994729460671537,-0.10343956993465912,-0.06403294371385077,-0.0380205636076278,-0.04124524103269324,0.054316106574221944,0.04059707891522363,0.024403536247978565,0.031158764308839813,-0.024253788299926422,-0.0019566013656486256,-0.08795560906589465,-0.048057691388628795,0.06678494675130972,-0.009852620743589028,-0.05825021512292549,-0.09224630799877843 +C46:0 TAG,-0.05956192614607298,-0.07343125525444417,0.014035812223738623,0.0569737927177971,-0.05946156770024643,-0.10617551519052984,-0.08093775607812115,-0.14615775586701119,-0.02878699767001957,0.10108901740853521,0.11798821508758388,0.09752514429129591,0.09049249141298765,0.023216067926830886,-0.06845679974555202,0.005331904993017602,0.07208830358740474,0.066927018969286,-0.021540075797716003,-0.1036113842329995,-0.06923742698687589,0.011296225148864938,-0.09732744281636964,-0.12282580326118886,-0.1046257688032911,-0.05945299730081407,-0.13647368935667586,-0.06885317999490786,-0.0681077545186443,-0.04035239014730409,0.06491281804411701,0.050751359565670236,-0.0037843980875275573,0.0019089761130793592,-0.03737915681594362,-0.00618620457988715,-0.061794968018202924,-0.02620372930055607,0.07567504673297494,0.01884803363589638,-0.06471287313241963,-0.07343008421642705 +C48:3 TAG,-0.08299833456072332,-0.005824732914580442,-0.03903422305858459,0.009930057487467447,-0.12873210989851355,-0.07178109502333867,-0.06821231128694596,-0.13764082108707482,-0.014604582211589239,-0.005144429962221908,0.05662457451373984,0.06900344761648045,0.07087472649351091,0.0083352960448095,-0.12792028410122125,-0.007308313740366779,0.03727802592725641,0.04403447611449868,-0.024326522983064976,-0.11885228329922617,-0.07997288104367677,-0.017427016806290357,-0.07461774897216597,-0.10222229185797725,-0.026192605377319808,-0.0371935752515527,-0.05186308565583357,-0.02636265489694448,0.013182684567270637,-0.02111479234863853,0.02568618976742973,0.028403337180371385,0.012648885903661675,0.005506064343065159,-0.03575696877662739,-0.011375552909339653,-0.03302101267462196,-0.07455306852962998,0.05482174795695315,-0.034067283108345336,0.003959005337750849,-0.04739447602821995 +C48:2 TAG,-0.05379967085452945,-0.01856840603227652,-0.021541273300137588,0.02416382072992324,-0.1091129101858304,-0.09240764129038992,-0.09177771376871803,-0.1630397661734626,-0.006842159728917139,0.08707556477496832,0.14044666595471328,0.12884655751364701,0.12787937956851053,0.05513196535866488,-0.12242700596633554,0.013437182539985985,0.11389658301891138,0.09708462120850893,-0.0546655586056821,-0.12313531239404928,-0.08672519597981966,-0.016721131860180195,-0.07089026984944942,-0.11660141093189082,-0.06962381191452023,-0.03668199530113353,-0.07923249868715923,-0.032671031368633745,-0.018449977281559653,-0.044821910828923686,0.04340734404536478,0.02800637053280657,0.018748365533246915,0.014993167063922345,-0.0377987189184168,-0.02658017235892091,-0.059153225362707854,-0.056462761651647896,0.038242973142100074,-0.03279297962143815,-0.03135237456084678,-0.05802861762114295 +C48:1 TAG,-0.06255981838830257,-0.045390349496133645,0.00622275130286555,0.00982104928394683,-0.07759066366874834,-0.1103326896415523,-0.10326101380884146,-0.1556046847936405,-0.005987448046846666,0.11123995376076051,0.1494374234101548,0.11559200429194569,0.11474262500243249,0.06410203054786043,-0.11036902950138724,0.02160945465781516,0.10876280091269239,0.10515133244507403,-0.06366573784148226,-0.14820678455199396,-0.09915576272191874,-0.022949229181338963,-0.09039588911921233,-0.1462530758054881,-0.09005664071726784,-0.0421605146894524,-0.07821626409207155,-0.05052139988997843,-0.024485650318744372,-0.026462916648888155,0.0699444003378772,0.05636646195008153,0.005789278940829323,0.018108608900403892,-0.03323424241985329,-0.01845731386888745,-0.11207695388171249,-0.03386233890297618,0.04849067160069298,-0.044048788365474066,-0.05114878330669759,-0.08090320976241376 +C48:0 TAG,-0.04281879039425466,-0.03417859483763571,0.023099467859727888,0.012787233379215049,-0.041932004805350274,-0.08690858215909454,-0.06583753425198416,-0.11283450150050123,-0.0022980780995669596,0.10251468316139696,0.1226468300929244,0.08951289404892329,0.08614367642699558,0.055902784719685884,-0.045650778574627994,0.015693986116537675,0.07400435986680956,0.0795017614981696,-0.044640021329980725,-0.12487067075827565,-0.0932391102155599,-0.038565608644018784,-0.09340953950893435,-0.1320871845472302,-0.1059053217264815,-0.0625803843849046,-0.07560664574689664,-0.055707498220153265,-0.029386238945500544,-0.008117564482266899,0.0692644126238404,0.06643814845110176,-0.00107335999760806,0.011551737975884123,-0.020215758788065977,-0.015531431675388854,-0.0723680884710666,-0.012462967088755189,0.04322269012674001,-0.006571077519226942,-0.056047136859833535,-0.08560806126458448 +C50:3 TAG,-0.06807413577075073,-0.01523556334539716,-0.04420776162037892,0.02148248920071953,-0.11258865045805831,-0.08311841014860671,-0.08408275399752155,-0.15742302925976015,-0.022182468672742414,0.046396196877903396,0.09410147037354065,0.09244929394483385,0.09509089076163534,0.023606769179939927,-0.12390192977824364,-0.02189290870190961,0.0858588782343058,0.05895173185449533,-0.03545368422216569,-0.0901487045979076,-0.061309238344968923,-0.004620121106930925,-0.07292331146793972,-0.0929495843346427,-0.04437177207982898,-0.03102936977871663,-0.08691892207465815,-0.03406314969844561,-0.02600610620902537,-0.057151774940761485,0.011710162411698763,-0.0009571138846182567,0.00713805554780442,-0.00648062864184616,-0.05505134783300635,-0.03723581039498347,-0.021181511425605936,-0.07149779202158288,0.04659792331877104,-0.04059288716826057,-0.01925371278417326,-0.04781567066591192 +C50:2 TAG,-0.06731088995844094,-0.04026681016769327,-0.024743784671295458,0.00993642352666292,-0.10336269521102852,-0.09982989442913268,-0.09239988471522498,-0.1422367883142494,-0.019324051349596298,0.07383278599797521,0.12393773198539346,0.10000250797611765,0.11374177616658397,0.04329627135342105,-0.1209492008210769,-0.008668093847863328,0.08798700701876458,0.07228176302297405,-0.058062166704261446,-0.1340481107356511,-0.1035339237546737,-0.031631982389881706,-0.07593455736441707,-0.12177650846744073,-0.08954268521737183,-0.038091517676575835,-0.06707246824015653,-0.03888303775921144,-0.02550826368976824,-0.04245752799706507,0.04840670298533751,0.03142799633148832,-0.005459717335053659,-0.007795889554798936,-0.05263644812925491,-0.03542317650839205,-0.08516261799007495,-0.05147916592628062,0.04660630085490677,-0.06572799858225399,-0.008851656293122187,-0.03903589800294635 +C50:1 TAG,-0.06243862279494507,-0.05985709741821157,0.013900752380330937,0.004323021660097066,-0.0703452846943233,-0.09906775174453761,-0.08026779747721223,-0.12410999211513771,-0.0179933579966651,0.09230591176210591,0.12625901158701916,0.08783970563492075,0.099736105017018,0.049229924109275305,-0.0838336877527651,0.0033122317415456883,0.07440459152291688,0.07901617560052578,-0.049529712920095795,-0.13978263250719983,-0.10686811839469636,-0.035746776572924334,-0.08679924035459395,-0.14218671080770115,-0.11702919948275077,-0.06274541708001201,-0.07166115797154154,-0.045505502898142446,-0.03945299040746757,-0.032026702423072026,0.07802090397649214,0.060608062928570815,-0.005672794114839601,0.0004869183826239697,-0.03482389061047375,-0.019914004839664136,-0.10050381240689896,-0.02897282048845513,0.07209765763774137,-0.05318550563316544,-0.04280017567819552,-0.053808393511687896 +C50:0 TAG,-0.04587696792735214,-0.06830618511899267,0.02862079554064712,-0.010160510599364674,-0.044150010462302554,-0.084138806070024,-0.047762978770399776,-0.10254338230902366,-0.021567435916903976,0.08636557638899747,0.09749892259652804,0.07361126961616224,0.0756997771548681,0.03358371663871519,-0.03460993679496481,-0.010920612066017054,0.0677838593248495,0.055752307815391734,-0.01793403160659494,-0.11329829739116469,-0.09720643409609822,-0.025626784453256803,-0.09727928185911462,-0.10977083107688465,-0.11155502908590374,-0.07130576732726274,-0.1044634377539567,-0.032066196088014046,-0.03344190752169841,-0.02325465265558123,0.07363615844439485,0.06593805314159526,-0.003474477131704403,-0.0032539341267479134,-0.03352433623246539,-0.01493565585108303,-0.0794185947817739,-0.01622715084868368,0.05976008352066832,8.005912907207418e-05,-0.058236160976768,-0.06912246184181611 +C52:5 TAG,-0.0729688158535338,-0.11425396964657374,0.006666767238601333,0.014475735326453736,-0.08033223571847475,-0.08408662389954881,-0.023196965678614376,-0.153421751467786,-0.1262781437760156,0.033266153524323126,0.04536837694871345,0.052152279736962445,0.03933414135523666,-0.0880730951529613,-0.08717369872111791,-0.09905288226788228,0.03893246698192277,-0.06213631680342401,0.026827834097803968,-0.03456457233040782,-0.03375467339581169,0.04566130387198237,-0.0945444151068804,-0.031022633713347132,-0.054673268245000226,-0.1051291028346267,-0.16069003735262477,0.002718677543657928,-0.0790809258345162,-0.1014167117051444,0.014411684139237182,-0.02405516780579954,0.00940225198369208,-0.042630598669050807,-0.12027732020444011,-0.05200531046166297,-0.016922082428832898,-0.07124972804004004,0.05221942245471842,0.0021289792503975573,-0.08383951394156713,-0.07858108488478516 +C52:4 TAG,-0.07616467575603766,-0.0941514193191257,-0.026685494043375963,0.013060427689973573,-0.1113377885160557,-0.09754051516994663,-0.03658495034857206,-0.14339187085479535,-0.08336774962866068,0.015569128068945032,0.03775033726244086,0.04466847783005227,0.04467156763517917,-0.0484997095650737,-0.10859006573990236,-0.0818426273125858,0.046196669935077025,-0.025435312550704064,0.025081083961309678,-0.036147031520997006,-0.03425177030323436,0.040540830204724015,-0.06563869641078006,-0.030265337737123275,-0.04637003856967674,-0.06219319358163594,-0.1361713034035105,-0.0073279367745356415,-0.0745390415059226,-0.09775196502639032,0.01091462651299463,-0.02965306165289684,-0.0022884288820477533,-0.038940743751356775,-0.09452735465432432,-0.05271148596063906,-0.021287449709326372,-0.07932726582236939,0.053024512338894145,-0.015186579009118949,-0.04116785714515334,-0.06404119062754454 +C52:3 TAG,-0.06711003613906594,-0.04795482672526028,-0.04591833083331978,0.018257935881507696,-0.1066975212560857,-0.07889641880320744,-0.06259550906824901,-0.10695845180225674,-0.04978458902894226,0.011203821688172157,0.05453654406650151,0.04619888722751721,0.0706196449602273,-0.013997987001878927,-0.10801289887151397,-0.0473406402282111,0.0401930771633576,0.010711244510157848,-0.03714286427086286,-0.08681628751423336,-0.09004222545789939,-0.03384604355625699,-0.07014751136635283,-0.06748089025319574,-0.085010495073873,-0.05943692969348256,-0.07474092237168477,-0.013391757272154026,-0.046262068523721396,-0.0818319080471532,0.021590321601360502,-0.0071517340993661836,-0.024647732108193793,-0.04767474730557776,-0.08647577801239045,-0.060780915156381544,-0.021026994082062357,-0.06347718753754064,0.05586711342505941,-0.0591255624721372,-0.004982497879840055,-0.030608881621095037 +C52:2 TAG,-0.07881088203222102,-0.08281001850856949,-0.017991205453133995,0.018428924537244266,-0.09376353185333025,-0.10187032221970642,-0.07719218796323883,-0.12222444379707767,-0.05167815089332288,0.04730851427865225,0.08647924419175418,0.05693027567324275,0.0847676894087744,0.0020177450707544713,-0.10626123796724647,-0.04614874171421249,0.04170712537917843,0.017218979838201944,-0.035254710252886096,-0.12186963230468179,-0.1089498592130772,-0.025692782654588665,-0.08558247241321969,-0.11847768122259109,-0.12033303775364755,-0.05950680352511459,-0.08315850441513108,-0.041860713635410475,-0.05657659290858695,-0.05840728916786539,0.04904868213114875,0.02204906219826219,-0.024070625593971686,-0.041285336769042516,-0.07596273735474902,-0.04748758643490857,-0.07435740654625725,-0.05440362585013312,0.0567372347929837,-0.07417927779896487,-0.008549131285469544,-0.027897067654556084 +C52:1 TAG,-0.07370984729220845,-0.09104973228729993,0.033943847149405515,-0.018502973681141077,-0.05195745688504022,-0.07918418860768667,-0.058865816006611185,-0.10810299223464563,-0.05213786996239603,0.06294818527051489,0.07439535198118503,0.04432543836214836,0.053967165854724344,-0.0036227977618994425,-0.06715228305063504,-0.03543059676648082,0.04499267816862478,0.02214570419137085,-0.009640340582657692,-0.11438086474489498,-0.12519072105153334,-0.04350560058017861,-0.09950831532387001,-0.08925278210978242,-0.12963438195481888,-0.09087276835438148,-0.08174575370773049,0.00520391519811747,-0.02794725416322034,-0.04367072895676229,0.08160065703579115,0.05802077332224972,-0.02315253377954874,-0.037218573350984885,-0.07197380558223411,-0.034037143629250054,-0.08923296646751626,-0.03377659933563552,0.07519273989209607,-0.04197383497878934,-0.0262790360023854,-0.028070910559710244 +C54:7 TAG,-0.025714886097682174,-0.1006491443225884,0.023960420606367546,-0.0021081016816421093,-0.021065680540589105,-0.030370997778250183,-0.04512511881305431,-0.12577819404918428,-0.10603495960834172,0.0608507451571424,0.03814587428720903,0.015081586801517962,0.003915285509982618,-0.08560763544501157,-0.037855476491407455,-0.07383326030979713,0.058879819782154834,-0.06683268627182332,0.032936809110635276,0.01021444342731577,-0.03362710376457283,0.033539540417171894,-0.0839743350372277,0.03764606520112154,-0.022440086524601343,-0.10922816151944517,-0.13152699904139714,0.026133761781067112,-0.04305899680013441,-0.10673560153915815,0.03301064812622932,-0.01744020077182833,-0.006694902021803415,-0.04878611091152852,-0.11962396824015308,-0.059107265850242716,-0.001031869880272912,-0.010810728774531394,0.0793243676209461,0.029690923401935722,-0.05740101006216474,-0.06716544147762103 +C54:6 TAG,-0.04373092358630784,-0.12045047028339126,0.014652104813178825,-0.010686256652602713,-0.05565934429308297,-0.06306903250386042,-0.009098819910164282,-0.12018127201901116,-0.14839964113405793,0.03405892350803094,0.0417104012956896,0.036706494141202015,0.026224360260983407,-0.1151089557075887,-0.05255409160827671,-0.10186069951460087,0.039149312216352344,-0.07911471203827808,0.05145952446622851,0.033864713619909344,-0.006665411587912917,0.04832559131733864,-0.07697655679427293,0.018370128779611434,-0.04722380620453322,-0.14814254086961895,-0.17909217287497783,0.012090768836972257,-0.09539594545757568,-0.1346244375494138,0.012357863986485355,-0.037599846142720175,0.01342335293934136,-0.04875889962609829,-0.12071855397657247,-0.05621439828690401,0.037910118987970406,-0.03444956813939216,0.045620776993855854,-0.011563060331305457,-0.09585637690607493,-0.08595583517190081 +C54:5 TAG,-0.0736696932152145,-0.11325812695904211,-0.007718033828499119,0.01563441390217434,-0.06968579681624028,-0.07413823527389701,0.01208004876852611,-0.11355656520753561,-0.11910379416754213,-0.022009256389389085,-0.012017795908137964,0.0057947606998516345,0.008890715322686073,-0.11547582020656917,-0.06764527670648217,-0.12378252550552475,0.015579722671975944,-0.09348115712068039,0.06246930055931621,0.0036311037871468435,-0.00041083170745144845,0.07186182687649963,-0.06640316794109367,-0.0028821907622943654,-0.038435651372304945,-0.06736002009040679,-0.15779876474130855,-0.009088667525950703,-0.10369883759682241,-0.10731565764506423,0.006598867968819187,-0.031121144081807318,-0.02432471364584228,-0.05713284985430844,-0.11099455300953666,-0.06129711446545268,-0.004981004589903349,-0.04830517414972989,0.06236446078195661,-0.04044454333760123,-0.029974946983998642,-0.0508065638888951 +C54:4 TAG,-0.08792565229604077,-0.11339846613963703,-0.006340320556521354,0.026583568204646326,-0.09152399400308131,-0.07183365968069265,-0.022084188961587887,-0.12577490050445778,-0.1087253189202519,-0.012036500865450725,0.005538009612907442,0.002086241978105425,0.004814029564698311,-0.08979929804520682,-0.10219586923642077,-0.11552152097726852,0.0018296783204915545,-0.0812442836539768,0.010455136597041847,-0.044113934013231645,-0.04338734757452672,0.03476637507055088,-0.08207915150259344,-0.03521279907533247,-0.057066318614099255,-0.0651146282984479,-0.1391617039610605,-0.0145634369301317,-0.08035511423610374,-0.09122778440884959,-0.006731529152985381,-0.039991422482142894,-0.03922551982377509,-0.07705003042391499,-0.11252407964125846,-0.07448400067444073,-0.018844156648927697,-0.08311833651302769,0.08135016924732483,-0.039950020985106964,-0.03495621817875019,-0.040379297858241736 +C54:3 TAG,-0.0874599833082629,-0.11047019300550369,-0.05362747864974107,0.008228156531054987,-0.08387435098507974,-0.060178152217712715,-0.031911605275656396,-0.08054409000664438,-0.08998123404582307,-0.03890334711096651,-0.003709538153814881,-0.007796066774044802,0.02781480548985502,-0.07939843474868352,-0.08360240116882106,-0.09645300913133538,-0.02629847374174182,-0.08208332170163143,-0.0029304951851937128,-0.06664815971027226,-0.09500301390761741,-0.026172814545388584,-0.06884650708169038,-0.03988506181673523,-0.10410518878625678,-0.09253060524828471,-0.08679207846701524,0.0004441688727032072,-0.06255642095560578,-0.09998944247644746,0.011250516586420147,-0.022926884650547406,-0.04432746916360887,-0.09379656302851987,-0.1254111542754109,-0.07015031765496016,-0.013544124908058938,-0.06924882607676465,0.07585657737370866,-0.09466319219234968,-0.01153456396927218,-0.004398063966723349 +C54:2 TAG,-0.08057490327600919,-0.11074212159679092,0.0024916428023564596,0.002872132299700101,-0.0698552815053789,-0.07438427856620743,-0.04035661846517663,-0.10720733728598236,-0.08407229954892752,0.024800212329942044,0.0544018855901386,0.037707657469222694,0.057338295410979484,-0.05108292948094924,-0.07689164591840184,-0.0699996765290607,0.016595302417963177,-0.03750113342506539,-0.017186563892680303,-0.10738320001411962,-0.11148936969265222,-0.020899571923625994,-0.0849327251864561,-0.08537458844345121,-0.1144084029845954,-0.08211642056305957,-0.08971648887808048,-0.007266503404116533,-0.039756079665622605,-0.057650156425730806,0.03949420580154256,0.015603227487987299,-0.04017449569519466,-0.06804434897010657,-0.10573043012869371,-0.05254731743298284,-0.06182153692328092,-0.03902326561736504,0.08282251691475123,-0.06934495917160925,-0.00855920029571937,-0.010798256117572055 +C54:1 TAG,-0.07203435514850821,-0.12113412555552759,0.025896990028389803,-0.013506995832854253,-0.059057014948095475,-0.07585076994937685,-0.03556496669247455,-0.09949642227061804,-0.07042163943689395,0.029041335845332163,0.04571430914418822,0.04011010583621021,0.050177845333598814,-0.04628627490022575,-0.05804950355886632,-0.05901143047526254,0.022607856455656772,-0.03289303403788129,-0.009175607235524514,-0.09530069160975287,-0.09317422791957697,-0.005029769279525696,-0.08742865185310694,-0.07644925779021772,-0.10019213912248215,-0.08162921237584753,-0.09533769339672436,-0.015402743310621556,-0.03214414776131559,-0.05067838476302145,0.04270160289239666,0.027247946671156563,-0.046178260544275554,-0.04878839186034324,-0.08207857413297771,-0.029173021783783032,-0.06764637625022213,-0.04253321174373286,0.08360937025246283,-0.01717040477595195,-0.04236271222650238,-0.05013634278321715 +C56:8 TAG,-0.030382166775465756,-0.14827230614610534,0.0037498434463872766,0.035628783248893646,-0.03157805490380891,-0.059981089871253015,-0.042877720570475876,-0.13004771324123246,-0.15472153642637895,0.03753546515519383,0.006917350912989123,0.0016625381293682768,-0.022362326930322106,-0.1237195555851496,-0.0614173904853851,-0.09017479890427274,0.017509852224494398,-0.09011582649235692,0.045655878928748964,0.04217103256531788,0.029978118578374912,0.04691943674459156,-0.08684404279854137,0.027432973034675994,0.0040105683471180174,-0.1060301410552487,-0.1334741570430208,-0.013502075840181682,-0.06534598015202282,-0.09138914514840141,-0.012962689837061716,-0.06964396752440773,0.053792672272471545,-0.031198833023431054,-0.09352693105501853,-0.07232142609712064,0.041717269858570605,-0.06258748320939397,0.012651278227486986,-0.00961815918742621,-0.06720663429271213,-0.05388498052298116 +C56:7 TAG,-0.0290667856658476,-0.11004798706121245,0.026378127189791763,0.022739969003160568,-0.04091951441401961,-0.06052900026738226,-0.0006423591507987004,-0.08877814023090318,-0.16049779594342276,0.008329444286561433,0.007534794746658571,0.017378815148075818,0.023958829833823757,-0.1265526504597486,-0.0143691343866788,-0.08540008550088658,0.0315943230477782,-0.08636765787108092,0.03400734806159255,0.028011480834315088,0.023733393206162044,0.06701516618651161,-0.09000874370524928,0.01037568333825273,-8.724396238846023e-05,-0.06121031272224401,-0.15214893001495644,-0.0041922571302307155,-0.07911188634830185,-0.09606178887522214,-0.00035151116734617976,-0.05411861886841854,0.013340270594732667,-0.04512299218989121,-0.09860772292347957,-0.07566895835307363,0.026386779326224914,-0.018124630753075063,0.04838546456615416,0.04945710290588341,-0.049109553019720496,-0.07300924827412615 +C56:6 TAG,-0.05438879110366353,-0.12998220096419275,0.014502423682114622,0.021810165883713453,-0.0657468244678431,-0.060134161279991064,0.022999298275261423,-0.10954163485602193,-0.15307275793576472,-0.009394883133461865,-0.0026754908734531293,0.008079940896875956,0.0018020379427252807,-0.13282218047022432,-0.051134874186172886,-0.13277765907233,-0.018391813580235866,-0.12503287914212757,0.05990624898372305,0.0034598394009774367,-0.0007604759812688339,0.0821591703337873,-0.07739553617585428,-0.01435358722574186,-0.04367342147494984,-0.10009798918873526,-0.15837348670477852,-0.019975538522882048,-0.09662488381104842,-0.08952464936528053,-0.004280303198067479,-0.03839066562638192,-0.02923515001914694,-0.07585014518209625,-0.12075442751713542,-0.0683281756132139,0.03306501754394156,-0.03919404629129915,0.06100595122177187,0.006571911699397263,-0.0684339941617431,-0.07220277131634863 +C56:5 TAG,-0.06562978834013779,-0.13967443811368857,0.014634345270173934,0.023868068304474622,-0.0755946553154738,-0.07851287798407455,-0.0073445579007228165,-0.13367897647197285,-0.15163421222913023,-0.00013547046127838347,0.004290913842331155,0.013507431188980094,-0.00298386763038574,-0.12167448052155348,-0.07920356992687713,-0.11761614359492309,0.011542403409898885,-0.09498068609203351,0.032849606849754416,0.009087031568833587,-0.0007168304305995382,0.07595109138909059,-0.07399590995030879,0.0004116093368159547,-0.03828704193977318,-0.09021059320376498,-0.15368700556134862,0.0007952954459053582,-0.10669557263120533,-0.10378250426894983,-0.010848160426008875,-0.06001644560426047,-0.005122153069723059,-0.0643883443827488,-0.10901276210577698,-0.07114227076370476,-0.012323915868141933,-0.06655155530078483,0.02830608216531751,-0.003247144086354664,-0.06482095609321734,-0.0707195753030975 +C56:4 TAG,-0.09741462599162679,-0.11907521950627988,-1.8796127796123816e-05,0.05501575773392318,-0.09337991195830027,-0.08781236643463929,-0.020553984112084586,-0.14708114018831975,-0.11688683149781566,-0.012691721523405065,0.005056568950562887,0.008214041722473291,0.006328434459048842,-0.10301208352224375,-0.11023857262605709,-0.10838528973618336,0.014950626119842535,-0.08000262796767366,0.01944284869838581,-0.03583472220158781,-0.028933509516869828,0.062696561227318,-0.07841374529589695,-0.028202443033385427,-0.06501747335193145,-0.07396516709276024,-0.15886365037166983,-0.011103923179436183,-0.11556118671864767,-0.11006692789266972,-0.01248146692409709,-0.07092914569489385,-0.013905234201526655,-0.07177065726261554,-0.10680906814298168,-0.061220237704078403,-0.00743861124027886,-0.08770833055940479,0.06835631126729524,-0.05060383009525216,-0.02839379867525013,-0.04239980566538693 +C56:3 TAG,-0.0920316169331434,-0.12492357399093451,-0.03868640805671677,0.015127984774787408,-0.08202179365654269,-0.06876946420555356,-0.03248045557925604,-0.08530117966170597,-0.10018061755183205,-0.033661278275169536,-0.0007491578469904014,-0.0001526061737456153,0.02339058715260595,-0.0867213941399774,-0.08203311874145182,-0.09398360518237434,-0.011630906573151242,-0.08155021806017669,-0.01384382720507246,-0.07054039747515,-0.08486131812319916,0.003393408702372372,-0.08647433741808327,-0.051178458052300105,-0.10031415810005877,-0.09113723094769922,-0.11380055288078551,0.000764882468279546,-0.06840729088610184,-0.0966781866695956,0.009904769411109847,-0.033256716894134536,-0.045226464778796965,-0.08683632230073689,-0.12402232117461016,-0.06730841883233234,-0.006702929192075199,-0.06307900931505331,0.07437077139195233,-0.05200610290136811,-0.008740302629470906,-0.021745191779938833 +C56:2 TAG,-0.08258004182917222,-0.12710501586812953,-0.011320817182831025,-0.012633193317162452,-0.06423991143459087,-0.07228526540879529,-0.05898066367782606,-0.11864185000915495,-0.07766204816393053,0.027445889121529215,0.055285294739284195,0.04066479192188126,0.05269768036896514,-0.04624951651252374,-0.07888104254161411,-0.06605670606542148,0.042557467579692636,-0.03494286134585389,-0.03393706634777767,-0.09965242946694608,-0.09393395381277479,0.007932950444459458,-0.08288987213254255,-0.0807677613350641,-0.11193569109771616,-0.10486442833702016,-0.11700850956511097,-0.004321305447332746,-0.051492658801329895,-0.08861359438663823,0.050987209924830176,0.012838452603642454,-0.02686277999136883,-0.05146845012782718,-0.09613314242914377,-0.039033994950866034,-0.07495571872011207,-0.045600779833071536,0.0657457199663451,-0.030143898476705292,-0.025247792742240285,-0.04612882966915757 +C58:8 TAG,-0.022876254374877898,-0.12158148995705378,0.024798011614046208,0.00722042489846924,-0.01997357971365292,-0.020387500718639224,0.022385305189779915,-0.08038046612712232,-0.1584135197146285,-0.0026216366797183572,-0.01221655160092847,-0.0014513381629397573,-0.012101965849442745,-0.15308806254432122,-0.009688959735490622,-0.10365071474171376,-0.004433526963791969,-0.11961043847651688,0.06690156476167412,0.040316474180070096,0.017316270383379306,0.07841531509656871,-0.06926248538398372,0.04346732843260087,-0.011635765190493537,-0.0734690821738443,-0.15128857040065283,0.017962843137666436,-0.07766578189032114,-0.10472223540368383,-0.0033915372306920354,-0.05465853549195083,0.009838469866013685,-0.06291224068263368,-0.1146017074513011,-0.06619466684497251,0.04267401902093026,-0.015419502947834,0.07514257106562942,0.03610338544342997,-0.052344671153739204,-0.05530465640230921 +C58:7 TAG,-0.037326201322065836,-0.11544103228469962,0.029760543806287943,0.016483708999683426,-0.019207752189720918,-0.009687548779629986,0.013548464273010269,-0.06574484591105319,-0.14117245817197316,-0.010677997306802993,-0.01596910464243535,-0.025214867987442983,-0.03018436214716374,-0.13888745983053036,-0.02036735659975647,-0.1127005522254127,-0.025989513850305956,-0.1200376424164689,0.05114971475782211,0.01607786907122631,-0.004603598034551106,0.05748784795988171,-0.06892736145123057,0.028895458430456523,-0.029740557353119798,-0.0810899095898076,-0.12708656271108595,0.016391696646724952,-0.06563608122090217,-0.0900768573119127,0.0035394182162679804,-0.022590581474527145,-0.00022109897742723328,-0.07992202190700809,-0.1248792559258554,-0.05700914366970432,0.026002262352006266,-0.01777208305052023,0.08850600809519017,0.016925217505480965,-0.07136297483379975,-0.04583853142542449 +C58:6 TAG,-0.05507013264348719,-0.13346830148667246,0.033981941464476084,0.016396208926907067,-0.05294099240430394,-0.06733049920576348,0.007472482978644297,-0.10733635431652523,-0.1550543670680304,-0.0027346116533804787,-0.013681678001130794,-0.0040683649941602165,-0.020023375460788834,-0.1405298419837326,-0.05960726421041537,-0.12473652911195261,-0.0037260556956836242,-0.12067236577817161,0.04243898759452463,0.021507767677588496,-0.0047610244895523015,0.07031270298310308,-0.07018184678064247,0.026801801538874275,-0.035136361585723204,-0.10751307744196094,-0.15326112350516277,0.02677406588463313,-0.09605037312579723,-0.11781850596393405,-0.005567476814233555,-0.05873729852043423,-0.018372802183688603,-0.0782186962401158,-0.12606678430285356,-0.05686833296582664,0.014647162221614305,-0.0539115376926136,0.04977143354100591,-0.003480709804189238,-0.0813172469948959,-0.06190701083229029 diff --git a/src/python/EDA/correlation.csv b/src/python/EDA/correlation.csv new file mode 100644 index 0000000..6216f59 --- /dev/null +++ b/src/python/EDA/correlation.csv @@ -0,0 +1,268 @@ +,2-aminoadipate,3-phosphoglycerate,Alpha-glycerophosphate,4-pyridoxate,Aconitate,Adenine,Adipate,Alpha-ketoglutarate,AMP,Citrate,Isocitrate,CMP,Cystathionine,Cytidine,dCMP,DHAP/G3P,Erythrose-4-phosphate,F1P/F6P/G1P/G6P,hexoses (HILIC neg),Fumarate/Maleate/Alpha-ketoisovalerate,Glucuronate,Glutathione oxidized,Glutathione reduced,GMP,Guanosine,Hippurate,Hypoxanthine,Inosine,Kynurenine,Lactate,Lactose,Malate,NAD,NADP,Oxalate,Pantothenate,PEP,Ribose-5-P/Ribulose5-P,Sorbitol,Succinate/Methylmalonate,Sucrose,Thymine,UMP,UDP-galactose/UDP-glucose,Uracil,Urate,Uridine,Xanthine,Taurocholate,Glycodeoxycholate/Glycochenodeoxycholate,Taurodeoxycholate/Taurochenodeoxycholate,Phosphocreatine,3-methyladipate/Pimelate,6-phosphogluconate,Alpha-hydroxybutyrate,2-hydroxyglutarate,Inositol,Malondialdehyde,Glycine,Alanine,Serine,Threonine,Methionine,Aspartate,Glutamate,Asparagine,Glutamine,Histidine,Arginine,Lysine,Valine,Leucine,Isoleucine,Phenylalanine,Tyrosine,Tryptophan,Proline,Cis/Trans-hydroxyproline,Ornithine,Citrulline,Taurine,5-HIAA,Serotonin,GABA,Acetylglycine,Dimethylglycine,Homocysteine,SDMA/ADMA,NMMA,Allantoin,Anthranilic acid,Kynurenic acid,5-adenosylhomocysteine,Carnosine,N-carbamoyl-beta-alanine,Thiamine,Niacinamide,Betaine,Choline,Alpha-glycerophosphocholine,Acetylcholine,Creatine,Creatinine,Thyroxine,Trimethylamine-N-oxide,Hexoses (HILIC pos),Adenosine,Thymidine,Xanthosine,2-deoxyadenosine,2-deoxycytidine,cAMP,Cotinine,Pipecolic acid,Pyroglutamic acid,1-methylnicotinamide,Butyrobetaine,Putrescine,Methionine sulfoxide,Carnitine,Acetylcarnitine,Propionylcarnitine,Malonylcarnitine,Butyrylcarnitine/Isobutyrylcarnitine,Valerylcarnitine/Isovalerylcarnitine/2-methylbutyroylcarnitine,Hexanoylcarnitine,Heptanoylcarnitine,Lauroylcarnitine,Myristoylcarnitine,Palmitoylcarnitine,Stearoylcarnitine,Oleylcarnitine,Arachidonyl carnitine,Sarcosine,Beta-alanine,Anserine,C14:0 LPC,C16:1 LPC,C16:0 LPC,C18:2 LPC,C18:1 LPC,C18:0 LPC,C20:4 LPC,C20:3 LPC,C22:6 LPC,C16:0 LPE,C18:1 LPE,C18:0 LPE,C20:4 LPE,C22:6 LPE,C32:2 PC,C32:1 PC,C32:0 PC,C34:4 PC,C34:3 PC,C34:2 PC,C34:1 PC,C36:4 PC-A,C36:4 PC-B,C36:3 PC,C36:2 PC,C36:1 PC,C38:6 PC,C38:5 PC,C38:4 PC,C38:2 PC,C40:6 PC,C14:0 SM,C16:1 SM,C16:0 SM,C18:2 SM,C18:1 SM,C18:0 SM,C22:1 SM,C22:0 SM,C24:1 SM,C24:0 SM,C34:2 DAG,C34:1 DAG,C36:2 DAG,C36:1 DAG,C14:0 CE,C16:1 CE,C16:0 CE,C18:3 CE,C18:2 CE,C18:1 CE,C18:0 CE,C20:5 CE,C20:4 CE,C20:3 CE,C22:6 CE,C46:2 TAG,C46:1 TAG,C46:0 TAG,C48:3 TAG,C48:2 TAG,C48:1 TAG,C48:0 TAG,C50:3 TAG,C50:2 TAG,C50:1 TAG,C50:0 TAG,C52:5 TAG,C52:4 TAG,C52:3 TAG,C52:2 TAG,C52:1 TAG,C54:7 TAG,C54:6 TAG,C54:5 TAG,C54:4 TAG,C54:3 TAG,C54:2 TAG,C54:1 TAG,C56:8 TAG,C56:7 TAG,C56:6 TAG,C56:5 TAG,C56:4 TAG,C56:3 TAG,C56:2 TAG,C58:8 TAG,C58:7 TAG,C58:6 TAG,H3K4me0,H3K4me1,H3K4me2,H3K4ac1,H3K9me0K14ac0,H3K9me1K14ac0,H3K9me2K14ac0,H3K9me3K14ac0,H3K9ac1K14ac0,H3K9me0K14ac1,H3K9me1K14ac1,H3K9me2K14ac1,H3K9me3K14ac1,H3K9ac1K14ac1,H3K18ac0K23ac0,H3K18ac1K23ac0,H3K18ac0K23ac1,H3K18ac1K23ac1,H3K18ac0K23ub1,H3K27me0K36me0,H3K27me0K36me1,H3K27me0K36me2,H3K27me0K36me3,H3K27me1K36me0,H3K27me1K36me1,H3K27me1K36me2,H3K27me1K36me3,H3K27me2K36me0,H3K27me2K36me1,H3K27me2K36me2,H3K27me3K36me0,H3K27me3K36me1,H3K27ac1K36me0,H3K27ac1K36me1,H3K27ac1K36me2,H3K27ac1K36me3,H3.3K27me0K36me0,H3K56me0,H3K56me1,H3K79me0,H3K79me1,H3K79me2 +2-aminoadipate,1.0,0.009741743018411641,-0.027004769466657048,-0.015531157943805397,0.11917191557228898,-0.03065784540686791,0.08301333042708944,0.10411665102656854,-0.16133189293317143,0.04227475841734011,0.09454930391479842,-0.1381712217561908,0.223738916418204,0.07369541001371116,-0.02693415882564198,0.011196817091553174,0.021510784665979707,-0.0246100691571056,0.09120425997227251,-0.024451733873636878,0.048848073056306195,-0.036489829967379636,-0.03907090249823831,-0.12098496392131818,0.18154699423691592,0.18085334016428029,-0.064512191333366,0.11803005698868585,0.14609948526579455,0.06168871334300082,0.12310988579662253,-0.006395575990983143,-0.03925885616923651,-0.049737806240395664,0.012512958876966924,0.03851755245655442,-0.01382839256527511,0.025320334341895966,0.15088733920917308,0.07561197688479342,0.0686652654479123,0.025207528504823412,-0.15530730854995686,-0.014517687996291473,0.004112472489763382,0.13068851926008304,-0.010077186386154718,0.13981217132247356,-0.013706544393094008,0.1836060546593258,-0.21161075695913303,0.033117105302002244,0.07101947331460808,0.01811509349983706,0.08161374649502676,0.04612307683043817,0.062094561640770714,0.09559852921204759,0.039890227782642625,0.08424424299110451,-0.10762487297097656,0.2355212588752347,0.11470079435349959,0.013483794461173575,0.11201292273123692,-0.1550470289771199,0.051280309558609405,0.22312412564222178,-0.019829188590614846,0.19985258386916155,0.21452415234309935,0.1099503872555694,0.08082812023323391,0.21622204106714873,0.18761711053718544,0.19059955986678628,-0.06008102602846638,-0.124112164034942,0.04071811132560158,0.11221274751648046,-0.056454721551913105,0.11609216988936011,0.19214858447829913,-0.17493236209858368,0.04964121189156079,0.08567953338030207,0.15844459879069875,0.13064521474308396,0.1497969284119933,0.10201792094711407,0.071087541707205,0.12015316521322499,-0.08053657979631805,0.11340165424322732,0.20936555450660346,0.054030431698511586,0.043625647882742494,-0.016177976843469763,-0.10174510578492654,-0.040911391960371184,-0.029490780732806282,-0.09590644402812847,0.08765865769167677,0.14012956561888718,0.016411844588151602,0.05116369208774605,0.0010434149049999238,0.16093910257665717,0.037791373590915445,0.05047895184833134,0.12768803598067838,-0.01927484865958356,-0.06313921065799027,0.36035445010071765,0.05945591231993733,0.176536759432296,0.006337674787831366,-0.04488998719297401,0.04193139421827026,-0.01780972873636492,-0.019093611538448556,0.1286988380314451,-0.06698116798778955,0.022683970020059226,0.012211739374643066,-0.17944036499830532,-0.02245565032420671,-0.05179196176796955,-0.10653741483685486,-0.11479126382711088,-0.06957510345342413,-0.05085311482249885,-0.03722469692827083,0.099057479079448,-0.027343449814800164,0.14173015101959055,-0.05321257190822156,0.034029379749571036,0.00384935208299141,0.0117069660316425,0.02971312360262722,0.010208948034348266,0.04888741013532775,-0.043918995616403805,0.12049840370919929,-0.010407003123230046,0.03955198656228638,-0.0778846382470732,-0.036511417303259255,0.009366349155963844,-0.08945954956496568,-0.13638093911171653,0.02344376549560528,-0.027010910564369352,0.010327463620921032,-0.10367865376135109,-0.10144620657431128,-0.03374827727991387,-0.00873906702472743,-0.007280786619743952,-0.11213470643776394,-0.09660694225023772,0.012708467798226162,0.01896984221016704,-0.00887735772767152,-0.04893620595824303,-0.002301351670378087,-0.08970917185954826,-0.03669949652043291,-0.13204158457598375,0.028864936879502708,-0.005851069342120667,0.026003345316679274,-0.04827444226936336,-0.08530541387446212,0.006365160552143524,-0.044201484792617145,-0.09040371436270338,-0.10058089179944138,-0.060288919615512165,-0.14932130763518983,0.07857946448923928,0.1127582830050639,0.0917852575008311,0.12175761045039792,0.12781733325507974,0.0899056088769842,0.03717965370687851,0.13173809623140734,0.12405770827129164,0.15475316173435752,0.13029893918582203,-0.15513504998478525,-0.207318244398631,-0.15661688130448628,-0.16005678730335476,-0.2426093828238579,-0.21265767576028735,-0.17478909844179877,-0.2066241345603949,-0.23208062501666316,-0.19396339600566648,-0.15953666817695325,-0.14209312227617726,-0.1284190320496825,-0.20998075656148935,-0.20542651694536773,-0.19093794284178314,-0.0984170465747131,-0.11392436916822445,-0.09435429799475747,-0.13397746230582436,-0.19544728155893618,-0.21194609348541898,-0.16230062501740988,-0.030493144318680963,-0.049074895810535916,-0.04718344698451548,-0.05279330257923714,-0.11825326503546574,-0.1608530601400433,-0.1946417479378995,-0.04289225128800906,-0.05006056162164049,-0.06285645570478143,0.01057970886037784,-0.0021257326882899857,-0.04119337857641152,-0.013647997245459712,0.05092332411548106,0.008835506676204644,-0.004897430326168107,-0.026113350109523734,0.11530413339057893,0.008429170491233692,-0.015076697579731763,-0.01574322193489893,-0.08817515795482431,0.07659925980098957,-0.014575980955547565,-0.008393018317853676,0.026148634593900353,0.004068771470790058,0.07283082763488581,0.06545159711348547,0.10641125511029843,0.10006255960026497,0.06310295455888207,0.016540998989601995,0.06109271722891609,0.048129734225293784,0.01652449377065407,-0.0536719203638974,-0.04388620265391038,0.007491999671582064,0.033471411015884966,-0.005939860516253553,0.005170698574555114,0.07212515998676679,0.10213331718427261,0.040593714970034285,-0.04733395131217922,-0.015090300065203994,0.03849637076363528,0.02600360396754287,0.021895033149677917,0.009091890241570585 +3-phosphoglycerate,0.009741743018411641,1.0,0.005107996161040721,-0.26669122156048153,0.38503732369202925,-0.05494109508680628,-0.2567669871205779,0.4089224661080887,-0.12334465010874085,0.3574616822337459,0.35444237081072033,-0.10457164763601103,0.05257098834617913,-0.2698051976500777,-0.13159145076383483,0.5450099681128047,0.35385954786344576,0.4085556339623906,0.07181527740824528,0.27270195626125016,0.10412024046034841,0.37103816854361904,0.3909093039829616,0.025662695164772143,-0.051074734894622074,0.006413076116618843,-0.31142070155232904,-0.21636946317723735,-0.055675800145025045,0.2680553043705692,0.1380356637914778,0.3011808260245434,0.36725164198954097,0.44090780315634487,-0.28217134453073717,-0.04950961352700669,0.7419974502587137,0.5645823959513794,0.12767459620932897,-0.008999016370664924,-0.020090874915777063,-0.1282500204349378,-0.10325895354433445,0.38049136881008677,0.0652290419140044,0.10101990818324542,-0.17196943035985804,0.17124129712806813,0.11192559595407339,0.01164802349897683,0.10646723381216536,0.27534839749130946,-0.22501654790926437,0.21685111773328228,-0.23165136478197138,0.0757525264534589,0.10119877516539476,0.18426124285709267,0.030150741847532962,0.2249059303232888,-0.12596198802216432,-0.008218362452589677,0.09153199398852142,0.05615894352253302,0.035846058137178956,0.08490571953844021,-0.06915630860297076,0.05345490572334003,0.02519366526301564,0.02827230555680529,4.700618014937269e-05,0.08755158811585179,0.09861749613499839,0.06109116670851501,0.1035059685627895,0.031000726743008952,0.18375439577198238,0.04746039534176778,-0.11802945556300018,0.041484925244737555,0.09013510484838157,-0.17091203860779786,-0.12343415425580825,0.06155593100082013,-0.15459239189838636,0.08502446455398023,0.2964542945824911,0.12305549403450614,0.18622634956068687,0.07047117630038316,0.02394869525094526,0.1604834313573237,0.10692214243368493,0.09233633559723858,0.13734260766730763,0.12363123330631788,-0.02514437724997676,-0.015904995373164692,-0.3182771282837498,0.06951698405495202,0.0021249946145879923,0.2422534730151017,0.2074136438845399,0.02341084595882641,-0.23710420727972237,-0.049025172482323714,0.02331270675750366,-0.030116251000525104,0.11996511485509549,0.19611374356256642,-0.08289239843079797,0.057233288865275914,-0.1834710207871686,-0.1008987355458066,0.13702472256910178,0.1450880893681232,0.17031180248583083,0.13363464116649282,0.11817915630276905,0.1543550523372918,0.13577364921816304,0.14217251776494544,0.11213848795608355,0.07972590383980542,0.06633670807523034,-0.0552515091148723,-0.2351236363281933,-0.18877464155158466,-0.21556811404347676,-0.2841679343560793,-0.312330703514338,-0.2585687259372222,-0.21005742392227392,0.17399723642617304,0.27336076497348594,0.044266271824215386,-0.1252500717229384,-0.10556414830599054,-0.08913580903264244,-0.14969774972694871,0.030649443505866864,-0.2504395311315923,-0.03241512682640198,-0.2813541251902955,0.002155097104296825,-0.0018498322083629888,0.028735695773345563,0.06921753593778955,-0.08294607074869355,-0.22003288296204387,0.1921318982090634,0.092453329375884,-0.1490988228359133,-0.03258405559609986,0.08138779249236985,0.1862239133953214,-0.07897326116885199,-0.2075788290670937,-0.2820412395019751,-0.10833873250471553,0.14850934355446063,-0.08000911717273652,-0.3099236902596413,-0.32776848243345535,-0.2528002217200649,0.1283991139615766,-0.3173931671508169,0.14226969973498213,0.187934734136292,-0.05837513376742624,-0.16786096224026403,-0.09936326821877446,-0.12450657327177339,-0.08659374087760666,0.16979482212278882,0.022807390631795998,0.09035855658822008,-0.028278643482709823,0.15858771139986538,0.08620939433509367,0.04110422437636596,0.09116110284949107,0.1842750096593707,0.17746529100520006,0.14455113209041023,0.17151903972860766,0.19306241842473756,0.1311908609702083,0.12971060256219005,0.17572003335167052,0.13854046655710725,0.12705188748164017,-0.055282219289681356,-0.06688767530206896,-0.08904096744158631,-0.012717657053526446,-0.0025197051248649124,-0.024295533678408265,-0.015891091779024556,-0.028772059963124555,0.01848984505576749,-0.013796900098836547,-0.03962958205744471,-0.26704927304855747,-0.19445442534696422,6.187425352376951e-05,-0.022739776150470854,-0.05535706709148839,-0.26836788718361404,-0.2833041880350993,-0.30667629407909314,-0.25346601439618754,-0.024213206654599334,-0.05631117712562809,-0.07924570748704932,-0.24294566158360317,-0.33645614424202697,-0.3798410665350602,-0.35141541999421605,-0.26509733074678726,-0.05795358286910202,-0.047309592004203836,-0.36366716510167885,-0.3702961812032869,-0.373287124405844,-0.0015811654692138484,-0.019890222409867268,-0.07145925601434414,-0.08401754247017691,-0.017794825550670888,-0.053067902200615,-0.06487460053389535,0.09079799567796779,0.03409062225278605,-0.03603496060038301,-0.07446555266026951,-0.0705387225342463,-0.012573215204769598,0.018480233241026333,-0.015484677762547276,0.052707486925805666,-0.07910746065343471,0.016749526870307348,-0.029572568274196687,0.08650965255056446,-0.000558755348120012,-0.04903735150833766,0.0430760427387467,0.08936014588373245,0.012633007352773222,-0.014806696022845229,0.07344619974282075,0.05885736039201961,0.025798454233691284,-0.04117848699777371,-0.041017167999127455,-0.06135105326737855,0.07890028558777247,0.09340419884407655,0.09014992928415728,0.026672519461363835,0.027274743138812903,-0.053513503316877764,-0.011798804802610667,-0.041461241066900315,-0.02851845115606883,-0.009319413243138144 +Alpha-glycerophosphate,-0.027004769466657048,0.005107996161040721,1.0,-0.040587538881348716,0.16867669212035982,0.15867681327317282,-0.11008699032158704,0.13376202174975887,0.45551746230579365,0.15774706797818497,0.21938049593309633,0.41743949105705275,0.1378038841019499,0.2591183627156274,0.19013991340354358,0.03879419137257736,0.0420591415241422,0.06036334766337822,-0.37704951797322456,0.2053624954778986,-0.042527939967136136,0.05659392005953409,0.1296253725250125,0.42568463659327066,-0.020021326711779783,-0.23038905899805978,0.04377771967399513,-0.03875782511959897,-0.045152406710528704,0.06957681805982058,-0.22349159758932333,0.2490188866505853,0.2716138873807739,0.02009776375440488,0.053586235852652105,0.15809624053696755,0.07506951102405389,0.034524663072160684,-0.16587232750148473,-0.07717353459432287,-0.14110137901121506,-0.11445894767950063,0.4391531371709369,0.32546873230590934,-0.2634786875514759,-0.11004627141829673,0.12598085457075947,-0.2596376863474241,-0.12811783216974104,-0.2743312188440658,-0.05999166433581242,-0.15652420035142334,-0.07434599242862254,-0.1360939275461881,0.008575354714593933,0.2825092135414126,0.08988595530186243,0.13622728708788337,0.05308023991275825,0.017057038544702644,-0.2909796883038236,-0.20059567829379665,-0.29174289939566034,-0.10444556650950984,0.24229710897358034,0.10595534004796477,-0.24754251511753814,-0.29375045710765635,-0.2485484849121277,-0.3628576230480008,-0.29185783828376877,-0.28639468851011296,-0.23024047165782868,-0.28585037015786297,-0.2510871966555584,-0.2472946939915053,0.24272725968044973,0.2099577764974931,-0.0967973182374948,-0.09465530053060692,0.3073290086918517,-0.06669816153691206,-0.01599026175680311,-0.012210859317747859,0.02604233693469663,-0.2033966479635972,-0.0009642134432946654,-0.12624884438240938,-0.13698131917955944,-0.21704247439155877,-0.19213306720079518,-0.2911086824034211,0.32599056738701604,-0.2897156408356505,0.006756661712989731,-0.26230441266374005,-0.15046973192929414,-0.12533432840378816,-0.1130649171003675,0.07051013441453728,0.025857838671363462,-0.04009154582271098,-0.2587164783454168,-0.30811741271846677,-0.04610843937689619,-0.3760934532445331,-0.0831972015079783,-0.11271332116803157,-0.14586997623571465,-0.0198282322917494,0.05175067682986057,0.09271717520261172,-0.034781230897014376,0.12712343241578633,-0.2671232568665814,-0.21994296623496437,0.18015554520799756,0.018239279944646223,-0.28896180022789947,0.0015354452564297924,0.17784068076506873,0.08710937360791757,0.16744045579713757,0.17706189643545814,0.0765223763156876,0.07520107258057109,0.10897198444250995,0.022008150709732107,0.011377614573011362,0.006965093052314127,-0.029310707182112934,-0.06129999839690777,0.09036580560741307,0.07116699878923431,0.20199942277769206,-0.2737077943268084,0.026171820728227317,-0.08274608049366,-0.15229312960864252,-0.1425624772645901,-0.1903047837316493,-0.16713929382623963,-0.16722680330908898,-0.1467567883632891,-0.33730213364958855,0.17205589170641317,0.17228845195747486,0.11069641091984142,0.020629889143496914,0.040416674992046514,0.04807370529271176,0.11472391032488248,0.12704957129457242,0.1257867786913473,0.0768508514842251,0.09273066794624586,0.07260952132314573,0.02743154422020374,0.06864210541565714,0.10685986915391382,0.11146563288313263,0.06867776054104778,0.06556569382421856,0.043827538016310855,0.04998541859638166,0.12191057743158021,0.025724231364831967,-0.052548948565090625,-0.05121604770103571,0.03489864048871207,0.10365393937279545,0.06018658189084831,0.08123022686690033,0.15941501781747783,0.10987839124479709,0.05711298377017459,0.015448120709438665,0.038824286591065356,0.17098207409534072,0.09012315605614275,0.14081414213619836,-0.09760779472407184,-0.3267828854429788,-0.3133807784479581,-0.3442409082883442,-0.37016711558135673,-0.2785454082339511,-0.14150380799816725,-0.376680805547031,-0.38491355249271586,-0.30694929507676766,-0.2726450305278054,0.11564153067431727,0.19784917005961167,0.17175602164221354,0.0407856741655331,0.12949056410660523,0.18348275572785472,0.16235446898179598,0.09492464755823006,0.14655024086979318,0.18123738642046486,0.17915731506633165,0.12764651722869869,0.09235467859885936,0.09585013530864545,0.16217449795138325,0.17203839550753847,0.08289545330481334,0.057529056565018714,0.11039027823960613,0.09874238099201732,0.10390565260176014,0.1803221035238395,0.18930736214121835,0.07407862838258492,0.09524473154602303,0.05447763646366577,0.09047944556467402,0.1294396100099612,0.1383276579927571,0.19592120417186373,0.08762474394612768,0.08206764921134711,0.08467524154026808,-0.0024531587526654044,-0.0454343729191863,0.08709684907076769,0.12492126689842678,-0.04679462881516987,-0.09067031513050919,-0.04087715834200786,-0.059713578611187645,0.0024683217376542266,0.09368973114677409,0.10596411649471821,0.12598699973359642,0.07230738688032809,0.06592977777128313,-0.05299337592410294,0.014427336304481765,0.11849870547447927,0.09310518557833602,-0.05973055099521251,0.02610722331808098,0.0009150049035814431,0.11072621438237547,0.031081878859057336,0.023000743142503225,-0.033702662098828724,-0.0009213068688767126,-0.05052892636805459,0.029055137642611577,-0.04723914621006559,-0.05214094712470441,0.06163643979608405,0.02549580700337225,0.0933949957288136,0.051769355163272336,0.05086130433357989,0.10843714444123768,-0.12637586177323318,-0.050834431561577964,0.08133455135136693,-0.069508567875402,-0.05464069338893814,-0.010630711491055548 +4-pyridoxate,-0.015531157943805397,-0.26669122156048153,-0.040587538881348716,1.0,-0.26689129651347676,0.06920429189177031,0.2952973495278999,-0.19060162059591063,0.045089213231387225,-0.2280181224056192,-0.2153909120017063,-0.0033565066747524254,-0.035134742154011946,0.07499198304669408,0.11810162405632878,-0.06894926827119706,-0.09752502757173279,-0.19758991272957985,-0.00875463734027909,-0.17913510640410624,0.09934551185263339,-0.20684028784505634,-0.1747088891748137,0.002548418257529083,0.09121626179360391,0.09904612089460003,0.2182879754847587,0.23652494107583819,-0.030833472959465303,0.002699898337875204,-0.02841661759383075,-0.2377937561713487,-0.13068805324686122,-0.16350705742978602,0.40280357528673344,0.12436699476612346,-0.16263307780742095,-0.17857664727899994,-0.050272276044051274,-0.04757801728763372,0.08468529502022348,0.26752689769988597,0.050933168153884024,-0.25553841779600456,-0.03949646720737046,-0.04340004215541531,-0.00045773259197037883,-0.12293479581525882,-0.009250334316141563,0.14194131810189314,0.01552534836359722,-0.19837369243492706,0.30813187977961354,0.05787191046284377,0.2927711143773545,-0.037648131248761166,-0.024478050197689522,0.09215910775388214,-0.048643849181055215,-0.19189817814871382,0.09557483431158065,-0.01120046565458587,-0.14069579886625447,-0.17797274236649352,-0.03885082048400346,-0.13425765057747752,0.015034637863105896,-0.15094788586328498,-0.04732456008406271,-0.037176262146012405,0.011778391281984981,-0.1692852601023549,-0.17857938938366835,-0.11174020660042155,-0.17127618571748343,-0.09593535088624111,-0.1438890751492681,-0.0314501029031255,-0.019240079053913374,-0.051845638119044496,-0.09549949460602553,0.16192807606965529,0.1269162621440191,0.03848417228443048,0.2656985908997569,-0.08302933042045213,-0.12800096075012818,-0.16645359669706766,-0.18581168763090744,-0.07545103074078513,0.018612648762027218,-0.23979306262743313,-0.03185236607610099,-0.11104417865682231,-0.055542566849912066,-0.12742628915046947,-0.06299444724252165,-0.0841452243367693,0.2073667094410914,-0.048109853416557664,-0.04628836993521869,-0.23753766427700201,-0.17244836814880898,0.000922696313904,0.35677431320336866,0.16279820256719793,0.28332884648711537,-0.015546722977142184,0.0012193681606650932,-0.011607752980689752,-0.03161859552741261,0.04137029231971724,0.4242495735228326,0.030230353136283413,-0.1370750660603983,-0.07003510601924223,-0.2220346007940294,-0.04220732418423644,-0.1335412260260881,-0.17824161112114806,-0.20948934344261796,-0.20131504576749035,-0.24503500928531352,-0.07645598273443784,-0.0742863758504737,0.030129172098340453,0.18409592202317113,0.12432982541024157,0.12249510128798097,0.1524947403934204,0.18096139359345803,0.13381958591768156,0.27919961918952724,-0.05931281207257171,-0.193554216590162,-0.03210384520465282,0.16842447325170845,-0.027247785487222134,0.01687036451202929,0.2104453744284024,-0.10831791050582004,0.1613187788666988,-0.07011518616570177,0.18434800636445822,0.025377306455561115,-0.0018105911919517935,-0.011978408044656575,-0.09677991208823469,0.012978644404634376,0.11566139900658166,-0.21472595240835066,-0.11949014950102999,0.09561482173295793,-0.036793937392627186,-0.12341800867454446,-0.1823741373237382,0.10388885888409251,0.2067257699277847,0.24581374078884863,0.1324729301374968,-0.10581605483979273,0.06681622917237828,0.25662579057449086,0.27433523280311,0.21917257042223048,-0.12545003204197674,0.27073872761408063,-0.07405617608900626,-0.13198139628733108,0.08266340431434496,0.09955402403287042,0.08011831354015159,0.0797891643418388,0.1096012668622553,-0.12307962962308493,-0.05965282848760003,-0.00040024253260841514,0.05776537985407405,-0.12299052480630346,-0.04586412224704892,-0.018179624907455394,-0.04161518463524742,-0.1412393171929396,-0.1268872924608043,-0.09488549434442506,-0.10626775343068626,-0.187546061184522,-0.11342999289365176,-0.05940025273879173,-0.10125141076385719,-0.06804225040309125,-0.06560817111701123,0.02513965573123594,-0.013964401155538788,0.041311852259024645,-0.04577826884400213,-0.09020453846489708,-0.06986024146573318,-0.03073521275807387,-0.05080314280083491,-0.09875041153537986,-0.0386072360137869,0.005214838384468138,0.16437644701907844,0.07600751920926109,-0.056899584066740824,-0.06272861290290804,0.0385150668416737,0.16582790103795414,0.19222799357289042,0.13864910077878295,0.12563444921148706,-0.047767064500565386,0.00765410171459068,0.028566609452348547,0.1580173627548032,0.2286523562829253,0.23902117387867208,0.2043153903219864,0.14942590584996765,0.0064690475310242475,0.020432650350178553,0.22205680152354404,0.21040889749347977,0.2532141603290682,-0.03742499917633833,0.042511208349840277,0.057534184927169475,0.05047556570005352,-0.044777785214544064,-0.06486660145155031,0.0010366491205641905,-0.042039591277837136,-0.04788891947400402,0.013348839290885936,0.022194793219906698,0.06190972821785756,0.030272441294501306,0.002926147423294868,-0.028086723322626853,-0.034406154652293366,0.07573608509312459,-0.008330659851369904,0.015069169415733729,-0.010167308954998023,0.03312127702157471,0.028291355329974757,-0.0128612754354367,-0.0029870362991937247,0.0470558499794841,-0.020066623487140278,-0.05206086497384025,0.022173615268975662,0.001739785076439004,0.0013409387611745332,-0.005881289526394328,-0.01576037070691261,-0.017765572795886076,-0.020869991811713815,-0.0038741633963800086,0.007819291173866616,0.004126823307834269,-0.003100347914881825,0.010449979183631133,0.04961490887439416,0.011765141673079139,0.04242608670273421 +Aconitate,0.11917191557228898,0.38503732369202925,0.16867669212035982,-0.26689129651347676,1.0,-0.1504504496273991,-0.27694514474452375,0.5732663356492332,-0.07480666204026315,0.8595114684126967,0.8488701484046965,-0.08650975025844584,-0.012170570367374437,-0.11766529622730726,-0.3028626845169794,0.2193599426690749,0.24425792292989018,0.4183661378158889,0.15881239011195492,0.35226693306437734,0.27272866197874335,0.46140496052411284,0.41939041014548456,0.07557210203547206,-0.10807769682966557,0.2430978971275276,-0.28927739021842613,-0.2587371005897771,0.010109023545200572,0.42043579047637825,0.18261212491884254,0.5213776118685115,0.47409626212343103,0.3212026397821814,-0.5393281685514988,0.06503538202139177,0.23737123355580328,0.34516464349574927,0.3477676420142739,0.2921270740074841,-0.07083981484527248,-0.10595617991336802,-0.09662317443189478,0.5542629165438892,0.19757610345506013,0.355309036413909,0.055292783201230766,0.39207101871218053,-0.0429902019487631,0.1308002669683207,0.09893247096015281,0.36708000781524747,-0.36772977570000165,0.08186508445844713,-0.43104250604929534,0.18286187905302032,0.15823131408704455,0.09175912661224456,0.12229189811731767,0.3981374630990152,-0.1279972068074016,0.10235501995953922,0.271353552393087,0.18863468991792534,0.22633258370977763,0.224753251456227,0.04082975246884736,0.2737854618146278,0.1918286110286375,0.14453527460335658,0.11217081421484527,0.30466361413547727,0.27344889618324986,0.2432249734881307,0.2868757066633916,0.1799049442583947,0.41596100690721965,0.1507741107183545,0.13936773998422616,0.28909144325538133,0.24510296987109928,-0.23928066923850233,-0.0265225465779891,-0.016776632833501764,-0.2979871604666527,0.32235858294584424,0.23547455424221983,0.4666396265796629,0.484408408997743,0.34618636288095794,0.0836121231071754,0.37892227359788383,0.08676008057534208,0.2817842957325327,0.2444771305324897,0.22863676012835707,0.06236012027043965,0.17810705628020526,-0.24456081891289358,0.13500798611497358,-0.072528350112148,0.30554600588015274,0.4217308615590869,0.1837450758783029,-0.4196225488007697,-0.014430174599426422,-0.015591317849870853,-0.007531323613711022,0.2666191560480751,0.08021411375348451,-0.0005287149219469876,-0.10513627301881927,-0.35356317868723014,-0.017452568802769724,0.33511948971099953,0.229857514878079,0.4287726948247653,0.06139302573789276,0.20018340879717894,0.3328981027280812,0.39312230201444587,0.3225968634993026,0.32346896395763397,0.15784294366491913,0.16661683934805002,0.07454362522862085,-0.23212495352510704,-0.16483504403658386,-0.20713868738819913,-0.2591879639333403,-0.26213067144021346,-0.23265865202997113,-0.4289860732475363,0.11389696149170431,0.3911453389632006,0.15244561705024567,-0.31189751412308114,-0.15578195457621277,-0.08543692297540378,-0.36140395916808365,0.1025945278597215,-0.23342058468544227,0.017137623037546193,-0.3280529356278067,-0.06824866020178318,-0.13173272996451812,-0.09605033950501682,0.041019290472782494,-0.3394873059233259,-0.30592959685835,0.1967923810736828,-0.019624372851135052,-0.22873534546356789,-0.1566288168954984,0.045494085193450357,0.10826634131203196,-0.252956974839925,-0.3648992576702071,-0.4243905776619695,-0.15480086274232416,0.03967009374074356,-0.1513400923929942,-0.3877008745931991,-0.4249809740367823,-0.4188898717352487,0.12786889309254854,-0.4271126228953649,0.08330451430494702,0.21798814098024347,-0.1644948454757312,-0.23731768826362803,-0.1723588895572514,-0.20349244649555898,-0.14602330753968595,0.06026680737322512,0.07092644367184332,0.04331819759316988,-0.26197277330138136,-0.042416485488422334,-0.10935337708223117,-0.2002874441873541,0.00012543308939538968,0.21167621762418604,0.19854086030872897,0.1760446987783944,0.2229425902959104,0.24196365908894588,0.12289096874782678,0.17768489301671478,0.24404588758258433,0.11823504148061002,0.15104129414303424,-0.2855223736091497,-0.254716756230732,-0.27622671751326755,-0.18697028637938337,-0.17485212327669114,-0.16019972294148255,-0.11706597090162495,-0.21605097381535726,-0.1534837749711637,-0.15738694020895955,-0.1621304876166539,-0.4506694990072426,-0.3951159735249202,-0.17816433124172376,-0.18734417901653042,-0.19875672643426875,-0.416656165862095,-0.4793633854484772,-0.4564539735304039,-0.38330361236325466,-0.17205813537819195,-0.2005889401815706,-0.21940122557649402,-0.421353604959396,-0.43567079598453123,-0.49834303825687304,-0.4418120072025079,-0.3831334228184284,-0.18279953854700648,-0.22202684278423582,-0.44107022194513235,-0.42503494275144776,-0.4335555303880793,-0.010916000303303973,0.06224217793261248,-0.017422368729849286,-0.047795476996276134,0.04519485132507352,0.04286471094241431,-0.03414224974015483,0.09369054599559862,0.07102024768957883,-0.041497072599009255,-0.0800589227026287,-0.08653625706047623,-0.08079213766428986,0.027514856503792238,-0.008396283350905987,0.06534570615182618,-0.044045523255865644,0.03931505837409937,-0.08781681969118763,0.020570791068451038,-0.015939638970786638,-0.040561232362266594,0.05880116728043846,0.030152620637961414,0.018072158203066527,0.03149645319007133,0.1023705943685129,0.002047888126120595,0.05359948484873669,0.043056788182877996,-0.03212245957594108,-0.0011353167162057851,0.009038522576369425,0.04871723468357181,0.06604453790580356,0.035412652199710584,-0.009439738929913276,0.005705272408247284,-0.041540741350614835,-0.04293262058198245,-0.030498233159289005,-0.0058614184991551506 +Adenine,-0.03065784540686791,-0.05494109508680628,0.15867681327317282,0.06920429189177031,-0.1504504496273991,1.0,0.007942338968022,0.03906610501045223,0.30409435557228726,-0.13971281427248916,-0.12488314717716617,0.26532565101953565,0.09805316080221402,0.2038426857555475,0.2698915679867444,-0.09348396638233386,0.0006561039148806663,-0.10355134289758909,-0.2781686646167606,0.11338821000589375,-0.10696509766083188,-0.01922014136704686,0.029562544351352048,0.23889159384585693,0.09378565564911348,-0.3167041528650079,0.11652252542109,0.0750549815532493,-0.01429796904852074,-0.23421836163400625,-0.21848830889591933,0.020855021710755015,-0.002419071641578528,-0.04093631029587608,0.2538719979697447,-0.011637902920571335,0.04740001801775651,-0.07692381728832275,-0.2490883165539847,-0.21549179209812194,-0.12873168682988892,-0.021668379644352014,0.29607678629718537,-0.002735167562371774,-0.19657387024292067,-0.2260901442015506,0.0646736222791675,-0.29919881987654634,-0.05672012516429223,-0.22840261135936055,-0.09677026130741656,-0.12886741314678918,0.15202365935546072,0.01924655112732238,0.23418517006493011,0.03874265714003752,0.07779324781057287,-0.07258753973554997,-0.03227213374438186,-0.12894637846729895,-0.10497830082432232,-0.20105052165126205,-0.31949480902626026,0.03965924145649109,0.15311883857577713,0.03783277567036578,-0.08892910583421913,-0.2980729661293909,-0.20321840403631233,-0.3198641779062095,-0.26056920614400614,-0.30959366104050484,-0.2663084773901561,-0.2979085782869553,-0.29570438094487794,-0.24169635080007382,-0.030559708536948713,0.12165778608007938,-0.1401911251466632,-0.14884193634525691,0.05508846238526194,0.09396369761278085,-0.020523496366279887,0.1135533783102447,0.16009028762670452,-0.27629552144770453,-0.012230361920435943,-0.29539987738934986,-0.29825110042714065,-0.30307745974444544,-0.06915905093370767,-0.3051860357712392,0.29847992012724156,-0.2703243956532836,-0.10461703677548223,-0.27862305027746587,-0.20261775877960914,-0.1710144869825513,-0.006401782667071349,-0.05365402571138821,0.09106778605424391,-0.09486185279441822,-0.27947002842281127,-0.2503012347647006,0.1436224786821775,-0.24534105467186063,-0.07449119808261558,-0.10448646147973815,-0.2523603236632156,-0.018526559680597333,0.09642806513630597,0.19282955905600377,0.18188487918628526,0.005776609345665009,-0.31055034536445064,-0.16254490777426508,-0.09636177163677655,0.07250437159202544,-0.2257452136544512,-0.13500984680563835,-0.11809122919599085,-0.10232305664749292,-0.1032025584788162,0.08022017540048164,-0.04539099106835637,-0.042939405158789544,0.06808584773814601,0.06913990094564419,0.08694614589882192,0.1110070836735584,0.08223785047180154,0.024220449580231423,0.24129625056615797,-0.02788598481048262,-0.0052859214572289325,-0.17258891800388487,0.1191206773688259,0.021941023489554613,-0.025522719733685188,0.14916134990050278,-0.08743573799366022,0.002903941134175052,-0.04178978218878203,0.05777681938899378,-0.038623695915144036,0.1754271782524907,0.1652623313964242,0.09672795306365888,0.21309279000858,0.18656919424909735,-0.030934490034341747,0.07875764947383149,0.1935731412069869,0.13654976444349234,0.012485431314286633,0.04802474716316853,0.19512021860886108,0.13302566116573863,0.17447461441498208,0.12102720056224207,0.16082909694485947,0.13836343708232948,0.16814414826363475,0.1895889548578166,0.2089300606529872,0.06480843864718819,0.14097890024479617,0.008644276032588242,-0.04249987837935579,0.0996722773024549,0.12436347904256276,0.18262223691049012,0.13182479803727754,0.1340848417697735,0.18214154401908686,0.010088253553572067,-0.022740360026763645,0.1917818318606888,0.14684845684758938,0.13894498563263866,0.14745132904179797,0.02561769813950341,-0.17709848430068725,-0.17950119701280523,-0.14635315573438692,-0.19016581762833018,-0.18162793830178228,-0.06885735133079728,-0.19785122211974032,-0.20881000789018586,-0.1593078287424024,-0.15389370013072634,0.0604030420129765,0.08714120804507094,0.11718149643373672,-0.03239675814412204,0.014755941798266824,0.06642882053667315,0.09267684300499587,0.010870485541175302,0.02444115824036626,0.07805353186918285,0.10788335896909541,0.08805202477969724,0.04231641365159578,0.020979490180147026,0.08308653860571892,0.08279735666041023,0.05579707368131456,0.05830657926193627,0.057188614220584175,0.08663617316361256,0.06519820606307504,0.09509166688303555,0.09250356056948277,0.2073432475053211,0.08035282785125081,0.13476679332938923,0.11102357194469553,0.1091544060741309,0.08907035033927604,0.11427995781263751,0.09443109045595374,0.09524823955860273,0.11394700583989326,-0.012144024521523767,-0.05736417246870906,0.018703503783974347,0.05030851728461475,-0.020080723617385703,-0.04622319752446889,-0.0038225894953111267,-0.10639807980085456,-0.04945504608820275,0.05173026309298754,0.07873349359533417,0.08368540804869108,0.03756912443815015,0.0009039104909381849,-0.04941870656997447,-0.02273083750721269,0.06396700631321295,0.0027389820253597144,0.07019453931428932,-0.05177710565196878,0.00982575400651188,0.06030908097342107,-0.0018034268083410257,-0.05976297917118081,-0.03040097957596015,-0.04101151381160568,-0.04553765804128035,0.01873786985427602,-0.043542249025874495,-0.036723184468047836,0.07887936041235954,0.005947067873317767,0.041792920262894745,0.018842419592487506,0.008544067236608045,0.022730166604402875,-0.08754152265166468,-0.019569426747200577,-0.06071871899930513,-0.008097917868234656,-0.03523334098226005,-0.03386256794961398 +Adipate,0.08301333042708944,-0.2567669871205779,-0.11008699032158704,0.2952973495278999,-0.27694514474452375,0.007942338968022,1.0,-0.22778520003621308,-0.17663597872742753,-0.31580420622553057,-0.261982511989194,-0.15952289839049627,-0.0651409612809436,0.04159030427702915,0.09874237069116758,-0.09789940381859116,-0.05885503897463191,-0.22980477331764426,0.147078964840964,-0.12587280699778416,-0.025965805799052943,-0.2130906308871569,-0.26558233335821385,-0.2234447112683559,0.03924185229256133,0.2107378263648287,0.20354963980474539,0.1302153636600195,0.08181102412471619,-0.1691549600151042,-0.02603141922718177,-0.26488171043717357,-0.34145720982061417,-0.14761954563869586,0.4999927970042042,0.04532683434413659,-0.16404129412168178,-0.18829547159168686,0.0651416504196259,0.12398187071330388,0.0880800325803615,0.2669384318613977,-0.1602847576335155,-0.30719543238897884,0.07764738500662274,0.024148560671822968,-0.0899376738809945,-0.03137677174016247,0.11055951184753765,0.3074236858007475,-0.020237857205765365,-0.21780667389978967,0.5090275690506947,0.02516404445945746,0.3628666591446399,0.018341881337682817,-0.032777589299264595,0.09654126364883055,-0.11560542674736722,-0.3434650152977965,0.155799505063869,-0.06800963893852138,-0.07894199751250863,-0.08221151876498896,-0.07185792338013207,-0.07862273567654877,0.09684165790368421,0.02065770814731326,0.18773519729575627,0.04908224916891803,-0.01944213561383493,-0.0877671012552394,-0.1107955579539476,-0.09560019523143796,-0.14072022213856836,-0.05794199278686199,-0.2756867140854868,-0.019631975030983077,0.2362552040108993,0.005754398553557911,-0.11463524303004417,0.2795405446955422,0.0893773774491967,-0.12121473547167871,0.3605538483174686,0.008174418215818064,-0.12659958983659902,-0.11799272086774458,-0.17558004260915747,0.013467457961851975,0.14987952595719514,-0.01476537726336648,-0.29661724301940473,0.05869667963621073,-0.08682804831009423,-0.09979616210375485,-0.0483898783664127,0.0421855079530192,0.29186430063741725,-0.04280271414867924,0.06665059855353178,-0.23878097404385193,-0.0816346422144682,0.17354446279538122,0.42337268691401786,0.23937701560830468,-0.011414708408639581,0.046369528966965536,-0.10178849048856563,-0.03727425887275671,-0.037032840411800834,-0.02628270041846313,0.3515074926310659,-0.041693737218522285,-0.05129171786909202,-0.10142449855752296,-0.34130186291835923,-0.021326522718071568,0.00778039246178724,-0.23107559804847724,-0.302485967008924,-0.23663410795860887,-0.36416115255221276,-0.21628467841168136,-0.16725680686433023,-0.18604309929748664,0.12296896603371865,0.04789175132340182,0.035770927010936086,0.08890895960547072,0.157921229713019,0.07250806676934887,0.35920335748460297,-0.09920344450616857,-0.31119873220347766,0.15127582067776293,0.22274717969612987,0.0002504034093036571,0.03438429973694739,0.3413218456033485,-0.10721088737374687,0.20587936311451605,0.00792768683742392,0.24507629843490014,0.29090914136608265,-0.05774611879429591,-0.0588730582990585,-0.24449484181744346,0.13326711916804226,0.2423693815569673,-0.31160549806868765,-0.1551316341321449,-0.006436439033498791,-0.041123690038980004,-0.14154154100195762,-0.1985518828992331,0.09465235961210487,0.30495545617127945,0.40153189042556586,0.15254932775895325,-0.07428700858797695,-0.002625965317198549,0.39555455654979454,0.4297108149360622,0.39173506170464845,-0.21562504714327677,0.4036681940709457,-0.15818612952222352,-0.23283030709849176,-0.0035539933296745846,0.07032342615986582,0.025362580817861368,0.01002313799393102,0.15713911979866876,-0.14330511683621275,-0.130905336821137,-0.14835252516358358,0.12823747054826437,-0.14786509783631335,-0.039057252319066774,-0.029271260583551617,0.01859459213220497,0.01596178815378311,-0.03233675696210628,0.1158847355700491,0.09711004366123514,-0.05852153393122041,-0.06748340973921124,0.130441235886546,0.08377994962608043,0.0989431336844277,0.08066942623309552,-0.009990943745448755,-0.15352059135997173,-0.09350865977653539,-0.11152083819122957,-0.17839845004240676,-0.23899779835300966,-0.21868129161572325,-0.10367704501110866,-0.22977824986124157,-0.22082690880388833,-0.1739903604955395,0.18204259958500635,0.07857616383781675,-0.11701552238520763,-0.17637353749593168,-0.14540845242733996,0.209424986373248,0.2752159970467526,0.18796921265143324,0.15602106983293246,-0.052813182363401656,-0.1201690954546489,-0.09703692122307293,0.35900440653477317,0.2777031785527074,0.3422737942262302,0.2905203846299206,0.1829523089822546,-0.02330881083451089,-0.11700639071951137,0.34381803998560434,0.3327905906482334,0.3244061762467981,-0.003950092571497177,-0.028594612647727346,0.016446139387870342,0.08254910970527171,0.0008501395214663124,-0.008690381119424212,-0.0017544893025874344,-0.08206548622566037,-0.06538624745017023,0.05197755371190712,0.04218602824490902,0.03130669626553953,-0.039079229852621036,-0.039302871536819994,-0.009939416253699866,-0.03032386779980251,0.011030283829772204,-0.02697795086234252,0.06445532919429556,0.07999441583410692,0.08875687541447229,0.06955464864528411,-0.0014762087163344782,0.04941963999774093,0.046028417114416006,-0.02884242729504663,-0.07281737432163038,0.006410958801674757,-0.06332445362032439,-0.07225191103744853,-0.009794197219933624,-0.06973657277796491,0.09327271925579746,0.04128556605037954,0.0016828544678719963,0.026605824906180273,0.11254148590639093,-0.04050733269536596,0.013079839454991807,0.018268320275873804,-0.06150569291596647,-0.032602598143696565 +Alpha-ketoglutarate,0.10411665102656854,0.4089224661080887,0.13376202174975887,-0.19060162059591063,0.5732663356492332,0.03906610501045223,-0.22778520003621308,1.0,-0.0154596731917947,0.5502555929400632,0.5835795061438028,-0.024223679548555827,0.05585067599786089,-0.11581253700465848,-0.18434543515195626,0.32185817194125593,0.2656743455740283,0.3922139760882349,0.10973815768912229,0.5064765289815673,0.22390940488265024,0.3758955911698309,0.386871276595,0.08161462303585215,-0.04870143961673083,0.06869920163411594,-0.21653816658561112,-0.1754718203153612,-0.10177442824601454,0.34072473171510326,0.14497723436357762,0.541893646420862,0.41983540430423977,0.21998761628994276,-0.3591572804669458,0.05175564404948009,0.3037748067512322,0.4549699370563896,0.24280793293881406,0.16427157698715023,-0.024827923821671982,-0.16080229688830877,-0.017299102990415777,0.5110268374176774,0.10555864276648663,0.22483347541922388,-0.0491728593324083,0.25428790432223974,0.02539159376881121,0.054517202842149545,0.0638627375352376,0.19607651818821525,-0.24638680184063064,0.08232345901737383,-0.2972629845352165,0.33152989004068606,0.11787764060581966,0.16490257433343694,0.09667435865885243,0.2605839338090668,-0.042609779713423064,0.0874162820458276,0.17311083625601492,0.07516272539459272,0.35784275136613236,0.05173065293700926,0.11115603950828706,0.13165494863621166,0.053357125275806515,0.12803834103612652,0.10659323523878882,0.17886501548837433,0.1587747562313469,0.17985748663440038,0.18829149945162302,0.12964878541720168,0.3019999357305257,0.014465764774853958,-0.020156130218301094,0.1805696098946403,0.18851119768296745,-0.20884896288891452,-0.06671215864801425,0.012746500163328506,-0.22298023828962288,0.17996286264240674,0.13375864478808036,0.24068226145696608,0.25598346179094195,0.20133990865763512,-0.04917677282808198,0.19556771666611317,0.11474806038475963,0.13289504171451363,0.13324205522972846,0.21593749249356586,0.09051936006878357,0.05700897578035394,-0.19739449529458186,0.04265056531917653,-0.042211053186459076,0.2563939801749807,0.23014855235546605,0.05202301893428225,-0.2869993519548351,-0.02029582877895823,-0.009024094460126355,-0.02074419589879484,0.16435411039790684,0.06265796149680092,0.04385878136397694,-0.0303974491944127,-0.21689836515490762,-0.013328661205441177,0.23143345155591255,0.2205377576321407,0.28329684283406303,0.09318501829707007,0.1026248018226759,0.24991929455499615,0.1668250692758067,0.21399643936273569,0.17273820246809815,0.14040851327864323,0.06716186438004954,0.020480934901605612,-0.1793870341101451,-0.22647954627562716,-0.24779051686108614,-0.27832896038473004,-0.31003631378721724,-0.27092804696293976,-0.29614086459821765,-0.011494467525615585,0.3065566803999354,0.033194891609104084,-0.20087151757109345,-0.14270770508431505,-0.10996506580858356,-0.2539969597649017,0.006347728290367874,-0.1990792969837298,-0.03210542423717298,-0.24204075062292343,0.011318669962499847,-0.06775073689737193,-0.06798042742687249,1.4529711938808727e-05,-0.2411269811265734,-0.21634702473652206,0.19036786734040456,0.013049197299330349,-0.09797257207384759,-0.043800270766508005,0.07866784959178985,0.06199544645444281,-0.17437097506317956,-0.24948653084698122,-0.30949116441939645,-0.1705921667577145,0.002496348118106178,-0.12713653066401806,-0.27080955790066147,-0.29458052447824795,-0.30238669464807366,0.0940824598262218,-0.3257622237834929,0.05789379676853101,0.1420993768212062,-0.1321964024304493,-0.13928399886503534,-0.05727474891238563,-0.07362019223252621,-0.1579131042526891,0.04003924316579038,0.0816758053506905,0.050714014046268366,-0.121489522497614,0.035590118908246655,-0.0623506969638037,-0.09149996372787593,0.012676942386429534,0.15105336045943293,0.12879774770598842,0.13298754439427185,0.16789451205126033,0.15712625292297552,0.10327995790393739,0.12097436337239549,0.1722882078428402,0.07275300976446583,0.13457256495553022,-0.1919067364175814,-0.18418372129634644,-0.18757622895699244,-0.13294728997008673,-0.15403946659893705,-0.10400616017337688,-0.0654242298220591,-0.16765277183246916,-0.1201148300987826,-0.09747286795634835,-0.0827816019249075,-0.34301609192257065,-0.29473194299067396,-0.16095720544901826,-0.1389184617482298,-0.1262007784946584,-0.3252134243746036,-0.36151448246536483,-0.33142870773406913,-0.3014301952618287,-0.16303524604462216,-0.14838759670779095,-0.14321439116478507,-0.2938113307567001,-0.3468191278689608,-0.3559838071837811,-0.32636195157485276,-0.29208849223741423,-0.16336759496372213,-0.14732972818173204,-0.346223824819918,-0.3371857116581601,-0.324866520818499,0.02669792020284879,0.07608770551726765,0.007481678373472877,0.010281799226386128,0.013978193242100357,0.022233120039563136,0.014381853817129623,0.02415719802017934,0.06945566049575234,-0.013339624664442603,-0.020946128017578596,0.010050023772444358,-0.03829661363170276,0.06266253107503797,0.0038147408477968627,0.07488446455193663,-0.013439261789358892,0.07644407894168352,-0.03382856762531423,0.022213124347507635,0.050689566888150114,0.03486186696339681,0.06980305568261,-0.005206949296954886,0.052913378387521685,0.06390866882038991,0.0810093049681624,0.011534501345237307,0.046400215693707315,0.032006160751452094,-0.012328798653842043,-0.013998646848859632,0.06206928585779851,0.10869755036657656,0.13866423641349485,0.08793105594540347,-0.047067645490176564,0.0037405580384595044,0.014590803496330426,-0.0391197104144652,0.008989280689361317,0.05829796540779538 +AMP,-0.16133189293317143,-0.12334465010874085,0.45551746230579365,0.045089213231387225,-0.07480666204026315,0.30409435557228726,-0.17663597872742753,-0.0154596731917947,1.0,0.03466960595623882,0.01028533344729225,0.8543630025835302,0.17026383781692414,0.4405134449206401,0.4228708482903891,-0.18251485267607082,-0.0623503074786921,-0.10762796378413211,-0.6877059962393246,0.3192495762844896,-0.18091528330392193,0.05843708355717708,0.21874678724908958,0.844776770740346,0.08376354166732444,-0.6158731453771822,0.1437282177562524,0.1567034467303128,-0.02723279172187916,-0.1676475199818082,-0.47795814688747296,0.3202547888413004,0.3136690954995778,0.04124062690970444,0.25206572577028546,0.19145698862066704,0.08231473975592413,-0.13999629476002395,-0.5588999214878482,-0.30570598365401813,-0.278608862888351,-0.1650914704501722,0.9238705662796756,0.23484180683846453,-0.46105543973174085,-0.4153783752686234,0.37607122495645157,-0.5844881886767352,-0.260991945875043,-0.5651772465000642,-0.14593720828868462,-0.24035877390449809,-0.006803515484192809,-0.14050673808743316,0.21134582470329535,0.17234556329630957,0.11171779115074748,-0.007874242679824688,0.08731755450556272,0.0416209114504492,-0.2712184682402362,-0.24001683689488074,-0.5066168618337045,0.008915055750594331,0.2332036300501835,0.1071585674437401,-0.2904705185609863,-0.550228686273752,-0.4768552641751009,-0.593499211008137,-0.414909290798864,-0.5217774600474334,-0.41734272478057627,-0.4609413527256174,-0.42759068234335074,-0.3728062818786013,0.15399525878689693,0.2077571404680272,-0.3624416699094057,-0.3895133984189771,0.24820983676750455,-0.030391634016447143,-0.04163479051861918,0.27491283661617644,0.1460805915474565,-0.5308112585231689,-0.08184920203352905,-0.43723988275687503,-0.43193440552782897,-0.5652334446061444,-0.3235395625629927,-0.6614756738382838,0.5885944006860189,-0.5994798951270788,-0.15840510612293973,-0.39492647965635636,-0.2608207860892209,-0.20343207121866647,-0.07432396989645199,-0.12183903513215395,0.086992654309561,-0.06117900965482006,-0.5760093255071064,-0.6403838042046003,0.09359699584816725,-0.5807324171083694,0.053070715602754205,-0.22739830939981173,-0.34945974332352175,-0.034022726045274426,0.09007908632945516,0.2290817660230829,0.12671974449010745,0.1324841326834537,-0.4889410186076844,-0.39969978910003806,0.11017979174979467,0.13690004836451117,-0.47182696037701327,-0.13085115975284609,0.04391516485438947,-0.04049509622538554,0.10681907224987977,0.24013960053994812,0.001163285494212192,0.12632303041147813,0.16076006476777624,0.16875816156461176,0.23846539944749684,0.23101948971952302,0.12228302237098822,0.10394891528337592,0.24081840790375178,0.05427619856163069,0.1319185904013768,-0.5591777149794067,0.13397598399277433,-0.029889669263387375,-0.2197946046195591,-0.12936887370512837,-0.3029848472312322,-0.2173388821501087,-0.27073763043988913,-0.12348658298257152,-0.5299454359179513,0.2521206715547924,0.2793434225938621,0.265868595969136,0.1623605274709662,0.05329903054006748,0.251109552068582,0.4245857057131425,0.31900145741767966,0.25841429165076457,0.14717922322819216,0.34165338077125834,0.3797488807801736,0.13303675762003966,0.17121630993428702,0.22855099757648276,0.35234211237232443,0.30577605363225263,0.13134447306893282,0.1135642580845514,0.2036508636540399,0.2946154670763937,0.1889942973094506,0.06606104360357212,0.022566639135466585,0.22137004347023387,0.2869665479670629,0.18638971898211817,0.1619956538705376,0.2972100185629019,0.3282913350479464,0.10362319299813108,0.08621519977356963,0.23827710581566092,0.30617522069901776,0.24932059874723253,0.3399241253085347,-0.2080871619390686,-0.5356765257867026,-0.5521650374551471,-0.5317210497859657,-0.5995921152899274,-0.4985314243034771,-0.2743171797570968,-0.617862738804266,-0.6293149219871454,-0.5198339043815025,-0.4955347086832529,0.26776425481937105,0.36795856205509875,0.339567647540979,0.14966675159874268,0.27363825251711493,0.34382086704763554,0.3008136756836987,0.21561704175248003,0.2849708973036139,0.3110393732891934,0.3018733293757903,0.19781085501347276,0.17258245724281268,0.19646962639395915,0.2920762544785942,0.2981518814837266,0.15910700871978942,0.13443177308826368,0.1456790498679655,0.15897008413805186,0.1911311198262132,0.2984008284448816,0.31591350284157294,0.19438099391281963,0.15494637114726226,0.11398816784319135,0.14858414335153702,0.2214440977432285,0.25112526007120595,0.32656913195609244,0.1305188729156331,0.10954630085845064,0.12895034058044852,0.02563513899894147,-0.06545834352627018,0.063393898856451,0.08518648034258625,-0.048031737125587844,-0.11676837388016677,-0.11174427783467111,-0.23410393190351952,-0.012665722870086884,0.19153727074696503,0.21270723838181446,0.18630515676329726,0.10869138875315049,0.0964249280395293,-0.1491601193668348,0.04907432726213703,0.20203301675009958,0.12532235137344602,-0.01702243563402899,-0.1139019510041124,-0.07141194693281858,0.03268381216038285,-0.06256702696218652,-0.11902137267490773,-0.07529543628295152,-0.040802334116850074,-0.12611080874293285,0.014610778315801255,-0.018915665204317977,-0.05366728836809077,0.0950406217360268,0.027248297487192107,0.05743134939308886,0.008144588346859303,-0.024944179691162204,0.01321760495086972,-0.23117370882955732,-0.08776020968570522,0.00019761172109035517,-0.021996406839646068,-0.07929254078755053,-0.07505825425569744 +Citrate,0.04227475841734011,0.3574616822337459,0.15774706797818497,-0.2280181224056192,0.8595114684126967,-0.13971281427248916,-0.31580420622553057,0.5502555929400632,0.03466960595623882,1.0,0.8771462810256977,0.023630815379045985,-0.00887996813409999,-0.09435687167025153,-0.2588564339593442,0.17702345715178494,0.2456143475386324,0.4597165435164425,0.09436759108132645,0.3866974715742112,0.2749318748380679,0.48367597157481457,0.47758016105397955,0.1634384970848656,-0.09592912660954094,0.17772094160150287,-0.24843178615636252,-0.19813135802858742,-0.02034038095199487,0.3711008524098986,0.1311056087362719,0.567438889488219,0.5322235215352296,0.3753154447602266,-0.4925883274403611,0.13643234449044714,0.19350166275468328,0.3186542694987904,0.2509398706108073,0.284750210907612,-0.06685618028020651,-0.1342609976815981,0.0060538877452867654,0.5989366441493434,0.16195411706868115,0.29123524177903426,0.09807712119869265,0.3226567248651232,-0.08804594579136238,0.08145274318850912,0.10320092736295489,0.36462930467227694,-0.3655086859105256,0.0398567456929442,-0.43564940209941183,0.15130218388476357,0.17728819838832402,0.05904295412073033,0.15103724252160408,0.39809239859225726,-0.1204729307872367,0.13411345066874833,0.23174543836822922,0.19539055726696497,0.22961706102182902,0.186703931536812,0.03864913089376496,0.2060075656931249,0.08797436585428106,0.10551092885076124,0.11640944572924841,0.2560884538442523,0.24342846320784564,0.21753946839934035,0.2617486819851121,0.1499734316160275,0.3899876881392151,0.1239840401181596,0.03338728867200257,0.20491096075516407,0.25884347320137147,-0.25111423515839254,-0.03923368242372618,0.04982171598305132,-0.31552746438897883,0.233500550129477,0.1875743570180766,0.3622239003820758,0.3840438145087783,0.24892083272821197,0.01720327425322418,0.26177411683989216,0.15184477841976612,0.19698144216504185,0.15021833235998827,0.22399178200235223,0.06514623122908639,0.1628459326631212,-0.2341472941202934,0.09467883676190639,-0.07172977703952076,0.3040326692998042,0.34860087513213306,0.06492508539901073,-0.37739749687685475,-0.032343851403160144,0.058472463072502506,-0.03976810389038309,0.20653249096856552,0.059941949444197264,-0.016450387272440824,-0.08124670905696173,-0.3135390334550473,-0.014666707174244127,0.29284739102023255,0.18312352064408782,0.43386690706073855,0.058399874701301875,0.15410919624613545,0.3211416152215337,0.3789018849051566,0.3098640707170036,0.33749285572856774,0.16441341591610248,0.17745950481241854,0.11785479755564286,-0.22619021054402758,-0.14215265818297868,-0.1629866133004974,-0.2276591750883394,-0.267391774702896,-0.19812604613567686,-0.4073654406050253,0.07855411335976005,0.3813539226957945,0.06279498341266815,-0.2891581620289757,-0.12425097614252337,-0.06568486574338568,-0.3480077648574732,0.11844411432848133,-0.22423149522247576,0.021435333445282333,-0.3019414617535914,-0.09271866990949494,-0.11988214916801276,-0.09180667500324333,0.05501200961490024,-0.3085370204007235,-0.2943836855385346,0.2327554044512727,0.03438128981476309,-0.22284944743898197,-0.10189967641506782,0.05050264331518775,0.14647956769396894,-0.20051214716294308,-0.34390361407069947,-0.40934080976106185,-0.16631270335632733,0.07283720735708324,-0.10170367502515319,-0.37736408552024553,-0.42661219642010034,-0.3914113096198087,0.14472132515361938,-0.39579406574119824,0.06300204783759046,0.17074845130832647,-0.1443696096546607,-0.22185008468535813,-0.18632142286912515,-0.19945356479388798,-0.15267548550073504,0.0859680779262352,0.07335812865660654,0.04725765799645985,-0.24388160713012783,-0.021874304747614707,-0.11037953274180981,-0.17029924577194613,-0.045808311299982016,0.1439415275410687,0.13747168494675635,0.12008155450548597,0.1597475139238569,0.1788546116078301,0.07417172185324829,0.10211660080777644,0.18223594501610352,0.039825116319263776,0.0818946307567345,-0.2347902572489687,-0.19740786613477196,-0.22117186632703145,-0.14601006030542354,-0.11506739980090425,-0.10429044289110638,-0.08090797701617766,-0.1604208322434974,-0.09283127451986709,-0.1120094952880452,-0.12450006930223217,-0.41499586093296437,-0.3552088571793481,-0.1257369329841812,-0.14514227097451815,-0.15781580363063527,-0.3869836953985124,-0.4502090506521884,-0.4248680140538377,-0.35462372658312225,-0.14478335133276815,-0.16345329879328982,-0.19564320032665777,-0.3703443613437135,-0.42413015458321185,-0.4744302982103909,-0.42433817919981526,-0.3673918697478326,-0.17579991714827958,-0.19060031007457387,-0.42141898248903686,-0.40967414084140924,-0.4145957553189234,0.00591521777417442,0.06592568194245597,-0.025813962442492885,-0.04898816009398227,0.015234713571833062,0.05656928696732477,-0.002611824928356469,0.05987149137528328,0.05275432438952396,-0.028327176071655243,-0.026966686528921598,-0.02265688473227077,-0.03812587016158355,0.03043206900893408,-0.0081386066233884,0.09226607573061346,-0.0027570479156210745,0.07915112099807878,-0.07756935082457268,0.007161485757323427,0.0018149618241623806,-0.02037123275155148,0.07186962808974516,0.02112742549866784,0.04853356836598952,0.04138541479766861,0.11714634190741582,0.01601456957084422,0.10248990419536705,0.0624333538384077,-0.028493619419539647,0.0008646375314417938,0.038747962037204466,0.07975012775467367,0.07680002826657654,0.06139401912656296,-0.0064279036175246065,0.03966952042452374,0.010624707459029771,-0.035872019002892115,-0.02162894970620966,0.013074835317099276 +Isocitrate,0.09454930391479842,0.35444237081072033,0.21938049593309633,-0.2153909120017063,0.8488701484046965,-0.12488314717716617,-0.261982511989194,0.5835795061438028,0.01028533344729225,0.8771462810256977,1.0,0.015423405365189203,-0.008485019483479985,-0.0556672480179342,-0.23334691015615341,0.190005255296805,0.23004728108154823,0.40215132119260244,0.06388126159592153,0.3779876979471191,0.2433494855890589,0.4097594038419014,0.4166142918929,0.15654622437575394,-0.06945639989287439,0.18888980596870986,-0.23018068083110424,-0.19349919526340448,0.013563394216255766,0.3876541234717101,0.10924840393889655,0.5447662238402865,0.4992590554684192,0.2842817940072267,-0.43548320050638994,0.10831920310959407,0.22711550236571598,0.31654350573071227,0.2733354910856019,0.253937436202212,-0.06983585092387964,-0.15021232361019188,-0.025686129835478928,0.5585393203202685,0.11159340196848985,0.30420666855981315,0.09392902964116799,0.28847160395120985,-0.088865796881338,0.07161905556839104,0.09098312032281383,0.300017523856,-0.3413302646426091,0.0652262131292762,-0.42059413746398083,0.2320803820940414,0.1915500855930275,0.11451314588533382,0.10415652947747624,0.3485001159219876,-0.16956771437083526,0.06185901196041065,0.19245070795897148,0.14501531672461598,0.26208745145958673,0.22879387279385224,0.017462000231744955,0.18419877298169202,0.12785980936727032,0.059535139164512446,0.056889987626029495,0.22286975803824077,0.20681912603227,0.16717053016056152,0.20804612570332898,0.10798137267553795,0.39262705077958426,0.18449121317560513,0.07627705484941083,0.21849860284807457,0.2585275050721107,-0.24987303289704899,0.005986827740367612,-0.01577212302431702,-0.3002215214734442,0.2048059670880645,0.16172191461328525,0.3702765478830933,0.3742052083270239,0.24413089527847642,0.06264466370630606,0.23503006135943408,0.14528872793012618,0.16366349439377845,0.24148116706473285,0.16262358433479857,-0.00982046951269322,0.1128681881097975,-0.21741019914774076,0.11714783073687572,-0.0723587160607633,0.2698123835848413,0.3118768133608669,0.06123154901198353,-0.36139472660569016,-0.061110491946484206,0.04205992931680191,-0.06579155236282153,0.16630479884985844,0.04826607754949976,0.0074219446165618985,-0.06670362837133915,-0.29149380813471304,-0.0016250117468274408,0.24515133868247843,0.21606574281174803,0.3783340423428472,0.06209221238018883,0.10073372201530341,0.28996416838692896,0.33331713812373737,0.2584775117320867,0.3045710802106396,0.1597248880523779,0.16558362870682028,0.08914655867111891,-0.1811628298574565,-0.15349529144938384,-0.1746293890299645,-0.23677195833483874,-0.23696618424623467,-0.19579818367160595,-0.3528931755502197,0.07034946438878348,0.3699703551292472,0.04725414332365406,-0.2773911003970609,-0.15233325702458492,-0.09837507384238355,-0.3223836598883687,0.09293434214820251,-0.2223545953071671,0.010656639364496227,-0.30750418946652025,-0.08966247420056797,-0.14567862124364978,-0.12069723016759568,0.04179450413128974,-0.30593229930573396,-0.293914045077065,0.1873079447778927,0.013691150794871204,-0.16960756234504903,-0.11851181096231912,0.05676740516863325,0.12047300405249052,-0.18699075663864806,-0.3270936650624357,-0.3699771369150657,-0.1323373349140424,0.0688774103703388,-0.08196812231007852,-0.315770860235935,-0.35746480350979387,-0.343751344403526,0.1781732406134682,-0.34515573961009455,0.04862125811729072,0.22398631442971836,-0.15428209739353368,-0.20967395664933286,-0.12556400273679383,-0.18830459900897606,-0.1205496190754699,0.0754178238508896,0.1022552251794059,0.037647827887691665,-0.2678717924608578,-0.0272225199492126,-0.11643871401009435,-0.17241734955624813,0.008487586725943727,0.16301593065970146,0.15024122123033423,0.1341444149474796,0.17480903682542046,0.20768304928688355,0.1081339156616416,0.1396723059581886,0.19854120871132683,0.086854606644417,0.15036762946103102,-0.29509573040613285,-0.24262906673976817,-0.23129906068632688,-0.20609994992860348,-0.18204809494451607,-0.14689360930070416,-0.09678800841302737,-0.21702815546619145,-0.14497321540471578,-0.1413194794982592,-0.11615181923475082,-0.4171148857322919,-0.3637340837692135,-0.17113354211607346,-0.1746090044023038,-0.1626920760470395,-0.38469522733019956,-0.458382171510621,-0.3867376156074255,-0.33644248199279114,-0.17024248216580803,-0.1794726761733497,-0.1738172220782218,-0.3613162080642549,-0.40707274412448746,-0.4442985873095539,-0.3832413460472533,-0.3322122731810368,-0.17511602948599916,-0.19359500858256148,-0.3935294990859341,-0.37707087687491847,-0.3705875136027848,-0.018909239642748477,0.027998348257597366,-0.017076585165920435,-0.025363454173817718,0.015230300776928132,0.009497484255889276,-0.029482197525517534,0.0703293245125557,0.04717995297612817,-0.029856129294420063,-0.0659946836678141,-0.05594144093564576,-0.06213483886208582,0.02330686155743351,-0.022735873550865832,0.08072058390579363,-0.0318686211397536,0.060820174171948606,-0.06833301783203305,0.04218021409121975,0.030127438245392074,0.010563684115530275,0.07838275266821683,0.026237787793161677,0.058355512609384215,0.07461817892904296,0.0845920003478017,-0.018763482284906343,0.05213261838590607,0.05403200043590119,-0.05597640852541185,-0.026781969163976654,0.031385542764867325,0.1088934531352186,0.1109288405761046,0.08392932986632876,-0.021025472808928865,0.0011558695071556284,0.004024915187193376,-0.05584159033502485,-0.03233534219285799,-0.019551417826114855 +CMP,-0.1381712217561908,-0.10457164763601103,0.41743949105705275,-0.0033565066747524254,-0.08650975025844584,0.26532565101953565,-0.15952289839049627,-0.024223679548555827,0.8543630025835302,0.023630815379045985,0.015423405365189203,1.0,0.15191001789974698,0.4494078489579829,0.4866399373236404,-0.20438475433484363,-0.07506943560022084,-0.1573200571908788,-0.6438170211293742,0.24482707029681985,-0.21909762141159148,0.0009466330974904818,0.13936637874797103,0.7993376624224298,0.096760150865808,-0.5972816771376037,0.1368690912667169,0.1387020285398766,-0.050551149936287676,-0.18056440933397586,-0.42790948335707607,0.2526409101812616,0.2119601887575299,0.027180542456693928,0.21336312161320317,0.12100415360954055,0.06878557712196909,-0.13807186469202237,-0.5331574394350341,-0.2857893137520761,-0.21982936294288843,-0.13739927081933181,0.8549830599704182,0.1896828574907932,-0.4193636992046327,-0.38053577791746457,0.4160224947648265,-0.5508205828648941,-0.2140477620803197,-0.5448166389259592,-0.13591578205278573,-0.26026091442616955,0.01745774599088768,-0.13408661366459462,0.19877898181589262,0.1721870514270271,0.0929023618565197,0.00117663334471151,0.07744621703336625,-0.0015029854835038811,-0.2626670288462532,-0.27115876237251607,-0.4891488175254436,-0.007142539432328687,0.18510272404786304,0.12487272088959854,-0.3033013190305105,-0.5218934687003236,-0.4305349658267052,-0.5786938005038847,-0.42920877571700133,-0.49394889422382027,-0.3845403700889964,-0.45444061890532633,-0.4141562407805161,-0.3741998454630447,0.11219713847594982,0.2046047665477546,-0.35737456436353177,-0.35365743947234085,0.19110612741031827,-0.041329322935479834,-0.04375496946620443,0.21092613143174885,0.12504399033347888,-0.5081427759341145,-0.07792260722305948,-0.4155098230393032,-0.4157076733379852,-0.5374849093429879,-0.2909750268046803,-0.6175058186422079,0.5409967758665493,-0.5876827093084745,-0.14651288122705308,-0.3994827786606104,-0.25738841975770893,-0.22682345321210268,-0.0973671305735941,-0.1495784849409509,-0.0008210816430773999,-0.10064321129873256,-0.5436384131794978,-0.5887930186995955,0.08657496184031734,-0.5955139886424344,-0.049773635595320796,-0.1925354651394286,-0.3245136471162445,-0.07944255047879936,0.042378195805661364,0.19310267352749708,0.0929078393703169,0.18326772480607445,-0.45560895278306823,-0.36997537139875697,0.0417850077068309,0.07686023542684858,-0.44412983824338487,-0.1596210671393521,0.006872920263207819,-0.03458193045588493,0.08098239709629185,0.16420157260279528,-0.02076835255638772,0.10380308289800172,0.16799145720995676,0.1340846603524088,0.19607492322313613,0.19865102551036634,0.10456852676001448,0.08545054544815096,0.22218883979161413,0.03083617310537033,0.09299667733631568,-0.5401826078453261,0.15661361767093515,0.0025653520673930316,-0.16870878483453455,-0.09891782109402716,-0.23459506501031446,-0.1731257392040188,-0.18819564966401578,-0.0781766830829427,-0.48685777397332375,0.2094534215580659,0.2546194379579724,0.29951431781848864,0.1351531499127937,0.036405096802110286,0.21963894261482975,0.37700749807925055,0.28536079978402906,0.25786399315137226,0.15543315165285795,0.3106104480343544,0.3515255012410868,0.13859440042702384,0.15680626685644591,0.21156368412894108,0.32563228922342863,0.29635219285264053,0.10337155716938627,0.10224472546671827,0.21587175658012833,0.28783907564832123,0.17719110562668647,0.06084967208115572,0.025932719021232547,0.20940547714625934,0.30613454307646776,0.16898746521996053,0.14439221541926825,0.27513276609160464,0.2968844642484509,0.1308254523231705,0.10439244181804519,0.21333467315979443,0.348606253218415,0.3110814903702825,0.3886958108347335,-0.17804118461542615,-0.4838302578734126,-0.48813036934309895,-0.49276810543710875,-0.5547378984117352,-0.4407614170680425,-0.23924851599772914,-0.5798418740824406,-0.5894616953025045,-0.47558409390580714,-0.4551899127532599,0.26434606482144435,0.3647671536007062,0.3214127859637865,0.1553806826232048,0.27694562481852747,0.33949601872691276,0.2668649492431182,0.22345046216717884,0.28176809728558977,0.2950630424649203,0.269270962341428,0.18423655442575582,0.1692612468313827,0.2038121896146435,0.2743358613641424,0.2876590145358588,0.14446340418570885,0.12413372768104348,0.1380353553173944,0.15429253403045265,0.17479414861300627,0.2743109395949324,0.2898135427455593,0.19754110045839982,0.13401080508621985,0.10982322546988578,0.13358877986259937,0.21429795401056081,0.23010031534005174,0.30376314741895916,0.10699539064614255,0.09586680367201028,0.11322205537697133,-0.001842407182830571,-0.07141298753995144,0.04822454758657308,0.08576946479683194,-0.016980870435438958,-0.09309050576170759,-0.12145758422919736,-0.2005790648452611,-0.0187362209076349,0.16110802994846163,0.16911710956707574,0.13640522483506773,0.08127408656408808,0.058509858885870646,-0.15595422513096543,0.034640083352734496,0.18497632294216013,0.11971982544419499,0.006923932718412987,-0.08407722675535968,-0.04192311068065743,0.06036215936824749,-0.037470240601412436,-0.07801236140066027,-0.06433319761049705,-0.010992773720674642,-0.11398813144248307,-0.004030858879989998,-0.061530645701174676,-0.08069189423165904,0.08256856302404011,0.008617675121820989,0.04591713593833689,0.019762558204927477,-0.0074222599894784354,0.03220563568766118,-0.20871664681740204,-0.08060476075945129,0.025299014224021383,-0.01407983653315095,-0.08061539764000497,-0.07516035544099176 +Cystathionine,0.223738916418204,0.05257098834617913,0.1378038841019499,-0.035134742154011946,-0.012170570367374437,0.09805316080221402,-0.0651409612809436,0.05585067599786089,0.17026383781692414,-0.00887996813409999,-0.008485019483479985,0.15191001789974698,1.0,0.11506266623709151,0.17803328753914094,-0.019971618031660445,0.056144797412394844,0.028826745383592013,-0.19760373589115254,0.07731457018789338,-0.09154256627309573,-0.0028115453871323695,0.045964676767310114,0.174463715319463,0.14614872887119787,-0.1576278331933539,-0.014798248826535482,0.11864944439886706,0.04161233620712465,-0.09784659991147864,-0.14450059208870292,0.04508474679871653,0.02186568492273923,-0.021632517871448015,0.0855592479926794,0.11119256214126098,0.10407602997759423,0.022335145636784508,-0.22528522512982002,-0.18558602232333174,-0.09780569445024813,-0.09375168804531424,0.14879539383630838,0.03434123699552692,-0.27252667004079306,-0.19007356199637654,-0.02879948565185047,-0.18194577025044834,-0.04391455085334714,-0.13051630753929133,-0.1950181191516885,0.06002779246220941,0.01608503957943127,-0.03945635277543953,0.15471550160683203,0.07672924132490454,0.01401811186786351,0.04134768318080483,0.06838690880930968,0.09280076659202799,-0.11904779436236905,0.09895908806578739,-0.16357709490750694,-0.016390012473904786,0.11368701806312703,-0.12655820764842823,-0.03948453684249151,-0.11704966923836731,-0.3023664505380517,-0.08027106650986215,-0.02070059563863324,-0.17117542513378567,-0.13438472348517297,-0.06095506475972313,-0.06045341223625412,-0.05790265280331978,-0.003832022970387473,-0.07480491727131351,-0.1879626874233999,-0.12734020814950503,-0.05609669819705347,0.08582109688470195,0.10184849704045502,0.08361336503239541,0.15248565012405296,-0.2024903705296674,0.16334964506743824,-0.11999310185441833,-0.046632775159609195,-0.21190381965592717,-0.0875734933636551,-0.21337565975678843,0.18077703263497896,-0.19153666799738736,0.023710471378616878,-0.06816247946143242,-0.03831341815200053,-0.14166610407576807,-0.15692427965317784,-0.04908804125011202,0.014971213484486054,-0.026014814371942314,-0.17329322045192175,-0.13216019145848906,0.09793661126297393,-0.15526057892298803,0.025159571816109325,-0.0019799400150673644,-0.17188247532228065,0.11478492118262389,0.1811300504492767,0.07492638629493575,0.04402754742129155,0.1298634560908438,-0.1534121859654005,-0.10775455070630827,0.002830824707242207,0.06476718923375055,-0.12483291074518385,-0.10024836366199762,-0.030797044972441984,0.06311842694330438,-0.030154396389245792,0.043901287636539325,0.009192439649243146,-0.07264845273564755,0.015868425186505584,0.009748770527734832,0.027926452084944795,0.012343872730400529,-0.02217439345430321,0.028893856924689484,0.04770978795875517,0.1972745409484348,-0.03536393544047551,-0.14419510630622623,0.01653992561410546,-0.009503418905007208,-0.1408829924887888,-0.03025269320216402,-0.16178016754853333,-0.12384465334955658,-0.17255417485216776,-0.09141329747548767,-0.13156905827555299,0.06667791082578087,0.10971076957382044,0.018911404717252354,0.033213934071010816,-0.027878337816470467,0.08257819352599902,0.10446879513988878,0.1028736634570628,0.1179620380029929,0.08343805424340552,0.038722764948653704,0.03466569664790802,-0.007907274894053956,0.012478449650456483,-0.0402227798785902,0.017294533858212956,-0.005965136429633041,-0.019911291610111265,-0.020656603343930213,0.06144305455671172,0.03902673860963225,0.010395801117758549,-0.10472087518736171,-0.11253079302691948,-0.05789771009343762,0.07416482439592699,0.12093459888073035,0.1303142257791621,0.03280697109575069,0.01129192042401322,-0.0393739429962734,-0.04834691855389752,0.14089186783347704,0.1796327649203151,0.1324358861639042,0.15642607213631907,0.06107457138658873,-0.09864619197340009,-0.14994590164929564,-0.16815154257566048,-0.17513198600892385,-0.11163695575694446,-0.017581829924645874,-0.18210304912041225,-0.1946778360858048,-0.08301935023182055,-0.10566052825558253,0.09670295308583361,0.13271559868251873,0.10968488826184246,0.04692286611245713,0.09144742110844659,0.12817360220467444,0.12272643814157415,0.08145708961744876,0.09742154328598944,0.12282668616337647,0.0910098801661539,0.022878507801313352,0.07158688036919976,0.05495217383704298,0.094775271941011,0.0450961737316227,-0.050094871084577795,-0.026773988073404045,0.027347968929733086,0.042412399737651915,0.021465867731272462,0.03359358015028026,0.0377006984542179,0.02276640823990105,-0.008170822007552364,-0.019012730631164668,0.012557925986113112,0.06861091336927114,0.03813365657419355,0.05741623287559124,-0.044124064940382283,-0.057092688885911104,-0.02735340922324804,0.017385820158335747,0.017600504654994867,-0.03970237873404702,0.04498855331798747,-0.08162844087976319,-0.09902241815218354,0.02724011959409703,-0.058946512886537676,0.00326829712093261,0.05714880828924434,0.12460779832422754,0.15225398731468265,0.1340136784406326,0.05502921790257414,-0.02502381585591994,0.027760289296683865,0.15396210442460026,0.11249833714863543,-0.0017647464278023946,-0.034120279397905226,0.0694085797703641,0.10874417970044038,-0.010591170565472494,-0.10182423428688159,0.08918360223676917,0.11567383514370126,-0.024810937809981046,-0.0754947860533908,-0.010667844267527097,0.06302473654761946,-0.04927311429152663,-0.060401498558985675,0.04381201428113083,0.1087719163680385,0.08725608334992738,0.0738942003011092,-0.10530916607662714,-0.014288222187779538,0.0032648020616064654,-0.0002348845987457272,0.0002513683752015937,0.007385491079233834 +Cytidine,0.07369541001371116,-0.2698051976500777,0.2591183627156274,0.07499198304669408,-0.11766529622730726,0.2038426857555475,0.04159030427702915,-0.11581253700465848,0.4405134449206401,-0.09435687167025153,-0.0556672480179342,0.4494078489579829,0.11506266623709151,1.0,0.2950608927608198,-0.30545606651370205,-0.1479096417508327,-0.2646815912657198,-0.34887384502496865,0.023086833766050616,-0.1962218400659929,-0.17273758171437986,-0.11349032953964269,0.39581012308765473,0.33309992027256097,-0.2690357479038651,0.2385092517923835,0.30617427788369905,-0.03036409269345257,-0.15096167369786817,-0.24770598148287565,-0.0201125622722267,-0.06379496269164492,-0.19655535020931586,0.23173962226627887,0.10946589742348177,-0.11360185592940612,-0.23315881190794951,-0.2738299600534626,-0.15049261859589727,-0.11706212062011022,0.03245575055046673,0.44753633082886457,-0.05390998492636404,-0.19920024092715072,-0.21840360176932327,0.510549068899606,-0.2936622929005254,-0.10954571639343631,-0.21552636800850267,-0.0941604217519837,-0.2528351328383412,0.09259453160503833,-0.09100415711512025,0.235621171015949,0.09209499546522328,0.03314372096383319,-0.026333577623217398,0.020891435171962725,-0.09198191320375011,-0.10831972729199152,-0.09881807305138905,-0.2618186439066894,-0.003261699524109786,0.12929272207438372,0.034159214406530795,-0.16748750437867263,-0.2510347031162286,-0.22103752689595718,-0.2736324730657452,-0.19337516294065263,-0.24892950273344205,-0.19864117435263579,-0.22942390436614887,-0.21997564807090147,-0.20055305748169452,0.018388582113776964,0.11896485530327797,-0.12323639839878006,-0.09193766391292023,0.08981106201948355,0.022502561245720473,0.036473194833229604,-0.05912378046604793,0.15894289196921366,-0.25268978458544145,-0.10663523088044197,-0.19223898941238576,-0.21478596359583704,-0.25826600217339507,-0.11646481955680146,-0.34131630439894783,0.2437678120206572,-0.30346742367817847,-0.02853420615770315,-0.23924301470892317,-0.0974472585120184,-0.1698272200903837,0.00811743116220535,-0.148480612776288,0.07193993434549333,-0.1178600376939877,-0.3475867531655526,-0.2758822586343643,0.12989232127416528,-0.28967018901503266,0.05179820142991384,0.028418410847234527,-0.1837284969986201,-0.08181729424132987,0.34952088374567397,0.137000841376139,0.10593704339281215,0.0994091860938074,-0.23744742401828847,-0.19721337937901318,-0.054115603395509866,-0.04457928995244804,-0.21508881091155937,-0.17230640203688474,-0.07101683376765797,-0.03693044724916564,-0.05262012187974649,0.049756389351103214,-0.02788523273929332,-0.039023026372939175,0.16340789809882614,0.14150688525611724,0.16143856689986177,0.16491933663588745,0.1242895865130969,0.11209541845086081,0.20362321682267157,-0.02398495462619724,-0.0488490064779114,-0.26697196739266366,0.16999900755225095,0.09312255945454533,0.025301277817890787,0.02570666922708074,-0.08099369390318176,0.041200381981051026,-0.03622256006026582,0.07503391721495965,-0.19881477388100463,0.13758837420560813,0.16015219096749134,0.1105981927210852,0.1474236117996157,0.18864764804669232,-0.0034442812509898604,0.09814560368241458,0.18093913096282713,0.10453199277855026,0.01358655849100016,0.007648184151356397,0.1008871562316927,0.10193267438239222,0.1561070197298882,0.08571404651043414,0.009020060900939986,0.06270841401126187,0.13506674918231176,0.16004708366435594,0.1901116625782549,-0.0018203354523786577,0.21421061638262676,-0.10927009055150749,-0.1268361664269394,-0.021943717513082963,0.1382379227019288,0.11892586869592361,0.12309590084914511,0.11793864903918833,0.014786664129480365,-0.018864768820600248,-0.06389467840202652,0.09626458367531142,0.10648117614322884,0.08790784471154241,0.1372613044994075,-0.06220188298870412,-0.2605613120092136,-0.27330411383947956,-0.23445624389789296,-0.28820557243627926,-0.2654301226014011,-0.16007166734724562,-0.2895682374349501,-0.298758035236924,-0.2338388300727113,-0.25732032824232354,0.1185648345494701,0.156446261291363,0.17741387671580233,0.01829764068349413,0.06369044753859679,0.1030353882548572,0.0994098145539326,0.05941771148595469,0.045095005496761854,0.07728317820870213,0.10224201651902484,0.12842127929934774,0.11432813048936658,0.021012800557759868,0.043562777742836255,0.06447467434616101,0.07970207056791312,0.11351341166407619,0.1306490706574525,0.11730168543201402,0.006969742133375489,0.045981809844394254,0.10216105471601115,0.138954499766548,0.12754056658497068,0.1603586835874201,0.16760569300249847,0.17085512563360783,0.06684381538939399,0.07740956456688562,0.11792882826576259,0.14797382089395972,0.1540340022613092,-0.03162082416394213,-0.0026138175301470197,0.08679786544836743,0.05453989531705662,-0.05112726835533198,-0.0988042794240683,-0.0396532154261994,-0.16419655686925097,0.06407505343781586,0.11003353807528397,0.1439473548287898,0.12699886715602332,0.06173008661312666,0.1249815997396708,-0.11072316661181024,-0.02080215947403285,0.1579026969957665,0.09335248199594838,-0.045513071058310865,-0.08510006840067215,-0.004791423785504335,0.1014533499979447,-0.03051456752497652,-0.1273444119405312,-0.03635303942661717,0.02944936029665425,-0.1404713607584039,-0.05086009107726849,-0.09829749337674662,-0.008677283687618829,0.06448770968317752,0.030311172147650802,-0.00570887056714891,-0.006498251361334126,0.005073432490640373,0.030521402824135953,-0.1577866762617565,-0.06418446823763717,0.034325346177384114,-0.025710478486659305,-0.04183172530683848,-0.044449228449409614 +dCMP,-0.02693415882564198,-0.13159145076383483,0.19013991340354358,0.11810162405632878,-0.3028626845169794,0.2698915679867444,0.09874237069116758,-0.18434543515195626,0.4228708482903891,-0.2588564339593442,-0.23334691015615341,0.4866399373236404,0.17803328753914094,0.2950608927608198,1.0,-0.146413369094174,-0.060680456524539364,-0.2646976369793451,-0.4038486880485244,0.07157254681712819,-0.2737314133673516,-0.16627249938670327,-0.0809873930394911,0.371790794970797,0.12415796013112464,-0.37485472838635897,0.173044603725501,0.16082184905894883,0.029357158366176264,-0.3081471347363041,-0.312958073222985,-0.06380268466847686,-0.09369910577200241,-0.13169577109912248,0.4737805869386894,0.03352388836368612,0.009894078012443732,-0.18695648443991833,-0.37843028514947064,-0.3650044227846604,-0.14225613124495592,0.020190776633480904,0.4176010521917211,-0.1180354491054814,-0.3627094164844037,-0.3176621529098234,0.10656675302776733,-0.4845733170012847,-0.026461601959337184,-0.36455869347966274,-0.2008729888329559,-0.3015002663338144,0.27008100032999705,0.0013747148933515824,0.4090031823716192,0.019891235602775996,0.07065244332097177,0.022291213370207303,-0.07369055024408688,-0.2590541483744259,-0.16722548677479784,-0.23070112520570954,-0.4519518141108887,-0.04230480001834312,0.062406905547243756,-0.009040591049702082,-0.14473037980685832,-0.40807304151767837,-0.29454527621090487,-0.4252291291417032,-0.33747275485095446,-0.4580340231749852,-0.36888374862047957,-0.40448816931636905,-0.39513544131725425,-0.3063496370151417,-0.16120541123101484,0.06905027915354232,-0.2378407438759308,-0.304304488408029,0.044474266486581385,0.1394550709583114,0.01402596999514041,0.07536463407518736,0.27120579958378527,-0.39778956174847757,-0.04698791704688777,-0.45498388939682194,-0.48898442130785047,-0.4574706155222212,-0.1556743882144886,-0.4995801157268229,0.29903297224918923,-0.4468684169138548,-0.10776644770205113,-0.39595466462418005,-0.2609934701404284,-0.2113936117861139,0.06459230568410702,-0.04911914287945019,0.031354424048318875,-0.21659035967541077,-0.4821623821007577,-0.38860641804201446,0.31064319908654364,-0.3379366262731483,-0.1008630139582754,-0.10270772884429161,-0.3564746096653802,-0.03247838453363455,0.07032673900579417,0.25775649464963846,0.26690304452866864,0.12439332475930176,-0.4124062958528691,-0.2886304175951627,-0.23471676913663927,0.030133243039506045,-0.3631769686175233,-0.31731283539383015,-0.22021258136196198,-0.1620590311440104,-0.19974475324116706,-0.018308303642599524,-0.1915718904942336,-0.1149349290253403,0.14808309995619037,0.157188733527693,0.1810695762487972,0.2083113582127216,0.17065117529423598,0.13093682516386332,0.4382880505240457,0.00979129880176701,-0.11253629355014716,-0.3461806800876174,0.28498500689212397,0.07619123652931521,-0.04025168611130042,0.20940097857645426,-0.17439784999354194,0.06444149540087522,-0.07226929306079315,0.16293350467669002,-0.11708927548925266,0.23234274860668327,0.2641641165463947,0.17786703138567514,0.3320279376598773,0.23113872941168642,-0.04832480825641575,0.17259862488086333,0.28525910456815434,0.23690252313152682,0.08398831597935866,0.10193721176110739,0.34044754696353097,0.3184007538227514,0.3766213967468789,0.2327355065537428,0.1956895454764379,0.22964957593376426,0.3251628281434977,0.3605735750058284,0.4331916881815703,0.08835662950857955,0.3889101926936904,-0.039337022046861986,-0.08905705166535346,0.15688099383777135,0.2951762548311935,0.1910290953537481,0.19222814841010288,0.2775286560569185,0.15386955355211307,0.00479910348976498,0.04149420980149972,0.3472873605286668,0.21648972745043335,0.2281454740531943,0.3236016899604956,-0.04969387453458929,-0.34070556012921704,-0.3449334908781289,-0.30980027722374137,-0.36923388457323697,-0.3563019565875427,-0.17301658087068855,-0.33785378807944894,-0.39226775350353177,-0.2771546161251782,-0.28226280253739866,0.21608370403958094,0.2090743045442219,0.2798080550375581,0.06101086924142981,0.09779708091027192,0.1497667143910026,0.13578280667616172,0.10026564612590347,0.09839589135868357,0.1391215870159655,0.2121488054309395,0.2824426552585239,0.2088682991017839,0.09498291994127916,0.14064356761027266,0.18890328289159944,0.2484996541709427,0.25391010733347585,0.2558495504331512,0.21500783138656998,0.1065832770227683,0.17995436086887784,0.23807314118099515,0.3642592325191809,0.29644125264929744,0.2993990736947854,0.3049067155779652,0.3015080514294905,0.189054477142485,0.22358393519121564,0.27741606757687315,0.25574387391456355,0.28256512549642615,-0.04266682883456771,-0.07447341926926823,0.01682796766688308,0.07153584885659346,-0.0663952577073115,-0.12230781869898341,-0.07110464384026956,-0.15935372442119147,-0.04018908187419461,0.08858829355263621,0.10368791245625762,0.10855789724108461,0.07070429808302696,0.021431033323788064,-0.11484575367400565,0.00955236667126166,0.1473427299907899,0.08172727992505348,0.01591237952537915,-0.021653737989063178,0.03647533297238026,0.0968529768918206,-0.029165388281276204,-0.05165777523225563,-0.030864626428380813,0.0032956752821107567,-0.16504367313924034,-0.030720234326352177,-0.12388297919044365,-0.07805364320672942,0.004755844142097643,-0.06312586050634342,0.047896592800698315,0.012146432916959568,0.024305546696808313,0.01779825786181497,-0.09366500818416515,-0.06342077138264851,-0.03626562988450186,0.002435845270576443,-0.10999820246532876,-0.1460845020648019 +DHAP/G3P,0.011196817091553174,0.5450099681128047,0.03879419137257736,-0.06894926827119706,0.2193599426690749,-0.09348396638233386,-0.09789940381859116,0.32185817194125593,-0.18251485267607082,0.17702345715178494,0.190005255296805,-0.20438475433484363,-0.019971618031660445,-0.30545606651370205,-0.146413369094174,1.0,0.3216431193719501,0.40010688845925346,0.1968829697197566,0.20983324689240468,0.19612502749969676,0.32703394680326653,0.3197000052784502,-0.11100418478421221,0.0058864771651455745,0.09597390197230188,-0.21400033600100743,-0.06180832423825114,-0.10591381890699011,0.38083412086618823,0.23711419118736635,0.2180974021769178,0.2919415179828831,0.19943796381437484,-0.1814302956844243,-0.023394607675065827,0.37579855810394575,0.6558074928822003,0.19914692695699854,0.05259270044200339,0.11004679406677446,-0.07991816379677628,-0.18784176142519313,0.3371671396822174,0.085369891368346,0.10430786751815725,-0.24708116427531696,0.1774230203891448,0.1989807060630574,0.10625379360539797,0.21579707727255165,0.19839769734880686,-0.17562043990920828,0.20852790992933465,-0.20090447322872743,0.10049999790734374,-0.050479925102947895,0.3000325847240294,-0.06724185734814869,-0.02235347951126219,-0.05637485281171796,0.035853123474280615,0.15171311743441812,-0.16679184886551154,0.07228884937271422,-0.09071257705137101,0.033554420578550334,0.054532437086181475,0.04403761062665349,0.131087463991681,0.11762142518721529,0.15157773900323987,0.1325720629958692,0.1291342106796495,0.12187692380226706,0.09672307474493869,0.0795541098178815,-0.06403975690423847,-0.05191538934638604,0.07349758633797566,-0.0008271872683012313,-0.19951336073497164,-0.07330290399560027,0.012951640603193097,-0.15961579454322547,0.07574709152517882,0.128176958153161,0.08679534779745936,0.12220902162200034,0.10549002876302035,0.05717917426113319,0.12312693337078062,-0.030139898049923494,0.09809853000927406,0.14031037058098342,0.1679235603923234,0.06548387705552594,-0.02430915992587833,-0.11744762183228237,0.08171951972521305,-0.06012319320574626,0.13891609074533331,0.15653115934390588,0.06397771396358805,-0.1742130814634643,0.16371919159340878,0.10223188264515225,-0.0656898124603751,0.17295861306291963,0.1407002834791354,-0.10785234861152238,-0.0015285014062249695,-0.09764900109686662,-0.08298175511011914,0.13599313106450056,0.25129259687489686,0.032267007568556674,0.0856466844354972,0.18792226275029275,0.06162890199949825,0.034331503466633745,0.02608673394291313,0.028854370461244585,-0.009451514941170672,0.013729776728245645,-0.07644691052061688,-0.12345154445853909,-0.22823587314065427,-0.24643706780038133,-0.24891934452363595,-0.2143006852357388,-0.2413358508187742,-0.1667835919872652,-0.07053711113932129,0.1726494684493825,0.025869091770804622,-0.0863027921151616,-0.10720042827217217,-0.0866295076591461,-0.05415892551532277,0.041791184530687295,-0.13738668424788955,0.010151282101453036,-0.17111433746095026,0.10372390517980788,-0.08746165789270093,-0.06593785465138541,0.02966568337998749,-0.09562262132000159,-0.191368409332157,0.09601678509858104,-0.014077797227407058,-0.15146886362651515,-0.028112011224377967,0.08994310918423605,0.05733763990704387,-0.12228470064734583,-0.10701415659577995,-0.24750294117767713,-0.060400493559534224,0.06279195051060889,-0.07049567176886785,-0.20773079850551487,-0.21325957518146685,-0.20552769689060246,0.026569674437633296,-0.2275821850853804,0.08621219268898392,0.15658557676485124,-0.05831216716714389,-0.13508648351814556,-0.03601047176872039,-0.0975537813876461,-0.07090255824839559,0.0833804461888474,0.03305240126128475,0.12522922770648237,-0.06739966121062764,0.027578249256957583,-0.0016661053588595512,-0.01164620669390215,0.10066119241314388,0.20474722226356123,0.20297853620383602,0.20567814840073328,0.2110633670595626,0.19537227238681948,0.16840133545615765,0.2129337307387607,0.22226432001662694,0.19310898563416456,0.191511403041828,-0.13008070870082744,-0.14975937354744331,-0.12789868688171688,-0.06395709518243492,-0.12751597000612938,-0.1317944963419206,-0.08083348723302007,-0.13264715344648825,-0.12368006936625404,-0.11213541148498835,-0.06630384791586026,-0.21765156022346077,-0.20533340092828042,-0.11938958245708754,-0.14131729102540477,-0.08913358383904273,-0.19873308523985755,-0.22899376652430375,-0.23174181595179985,-0.24603928038425185,-0.1271108451031737,-0.12162685625087209,-0.07915484644567512,-0.17348292924803144,-0.24722680780156092,-0.2780358557456506,-0.27646037429863357,-0.26812237246193116,-0.14545068724899085,-0.11010929364151804,-0.26727767815062614,-0.26887649381008416,-0.25008162439632997,0.0029396860826741353,-0.01972990808069706,-0.046651531298822047,-0.030969494890895097,0.036997577115127564,-0.031020623730278488,-0.0674063953024224,0.0763696917215116,0.057712814555991684,0.010304833643898953,-0.03516725513467289,-0.06603608602181488,-0.047257466878090994,0.062158886586758104,0.02889628413985426,0.02711484439406801,-0.05660889521064809,0.010121215274124507,-0.06221085268147726,0.14724316689592062,0.06374537147081637,-0.02064926124234105,0.07590032624424943,0.12159400038416399,0.06304235539293368,0.03784939857154819,0.08451187186492042,0.07140817253150769,0.03318561915501324,-0.016043750360055075,-0.05964212093044532,-0.057221899654466855,0.08693995797963741,0.08461722676505856,0.11664039300704263,0.06510245653461144,0.005967382199923794,-0.012890307656524765,-0.06740477264326443,-0.03486297778576689,-0.004614496740960744,0.01936642007797231 +Erythrose-4-phosphate,0.021510784665979707,0.35385954786344576,0.0420591415241422,-0.09752502757173279,0.24425792292989018,0.0006561039148806663,-0.05885503897463191,0.2656743455740283,-0.0623503074786921,0.2456143475386324,0.23004728108154823,-0.07506943560022084,0.056144797412394844,-0.1479096417508327,-0.060680456524539364,0.3216431193719501,1.0,0.7238747510848105,0.1275815627690885,0.2137136821852819,0.10540171005410051,0.2801114575680996,0.28632692550449773,0.02535360753149444,0.026661281990886368,0.006280618895533769,-0.21383500685663454,-0.09991592323682323,-0.06555904467066495,0.10342607731219387,0.06589742942109872,0.19408402897244695,0.3250811160514911,0.23204056854061073,-0.12873875327108242,0.1015800303638902,0.2394429783693258,0.367804424090189,0.08007455019674185,-0.05050793485348129,0.01849337315038135,-0.0377605136090491,-0.07656550965914508,0.3236632368021951,0.021556137882739135,-0.012528850129906179,-0.13441130890123584,0.04707736004630128,0.14318716031647924,0.0359623327502021,0.1538672214295017,0.1980575136198823,-0.07600580045911638,0.24654085016052818,-0.09524887994031235,0.007406933634841616,0.12159986520086379,0.10734733151495988,0.09505718908299325,0.12613161176792834,-0.009482616471387213,0.10891002800275744,0.08555951874415754,0.131790453597548,0.10156544336475958,-0.009074312532156546,0.04679760394824534,0.033785974713011854,-0.02288165876531332,0.06217343314249995,0.07791682278060327,0.06360304598790403,0.08743025688179434,0.07242798342352795,0.10438097236680809,0.01837959779640488,0.04493990928501071,-0.06524084221229565,-0.1299097113742707,-0.05336869513747227,0.09109095505355339,-0.14775198657435626,-0.13432152713392026,-0.00421215162787296,-0.014798422136228135,-0.014406672508323384,0.2292031080309858,0.024400761123753244,0.09296671011875289,-0.022737817525362816,-0.021851085527710593,-0.008286516259563444,0.044775594428719645,0.008874447803544398,0.039077215869214206,0.10400043657340094,0.022906466886391693,-0.06938336549322444,-0.1894073577302173,0.11126040619092865,0.07264740658421766,0.144149109070429,0.044502665633812916,-0.016749219680696557,-0.15132040669556843,0.1053205352200337,0.10693200154651814,-0.08677785933673994,0.00132149694149201,0.04009128372257353,-0.09354740520595962,0.1139803366699693,0.020812433396640267,-0.13324058684736628,0.10504906595014285,0.05910723645636632,0.14602522428221423,0.06422045115992803,0.12203626070075002,0.10525484277544199,0.09913297192483586,0.07159111081482519,0.05322360987428445,-0.004779015437296167,0.0157197349933512,-0.06465801120419537,-0.17207717578479007,-0.07994554167990896,-0.13466691381185875,-0.18257720682185244,-0.19845911637350483,-0.1733499483772131,-0.0811630852383464,0.1045213503733607,0.18210818859249656,-0.00949461702013335,-0.03451708257322477,-0.04520356336965756,-0.11444946926263691,-0.060738894374948726,-0.025604103467372134,-0.2188604941630081,-0.046142314050367325,-0.23755214277918996,0.0030721491007117637,-0.001925574371837275,0.03973172888842112,-0.01282721430388471,-0.08286468226937853,-0.168919714498697,0.14895757537873922,0.07001131972245328,-0.10769155048736936,0.02792653177992217,0.11075161323306043,0.16008057096620576,-0.04011398749890354,-0.052720288741930264,-0.12191098069526499,-0.004344122385039647,0.15259605355363176,-0.07595307958999725,-0.18894943786044804,-0.18092882921901712,-0.10422980700956877,0.07850230249743398,-0.17421738811062337,0.030026245418932458,0.04166964536397221,-0.06661025166854768,-0.08531920258512399,-0.08595135925656942,-0.10432129947018888,0.0015367199478804252,0.15916793939375112,0.0077494435768965825,0.005698014070315652,0.06524265325463904,0.049214792053166666,0.030554375954263926,-0.01923817882298328,0.05350214496433427,0.11103329679729207,0.048361676188204125,0.07278767848377932,0.10630691663753353,0.09971902030568942,0.0038255184059244156,0.031016342065968663,0.0909527458822056,0.043187701013518445,0.00795744364025343,-0.05992726594587695,-0.08965081566759395,-0.0664756123779355,-0.03756703484028816,-0.011415524054495217,-0.05216648349268983,-0.06397496226716969,-0.04708297278244362,-0.021131772100170115,-0.06699369329883721,-0.07823888469306117,-0.18441147984450068,-0.15627833646899617,-0.027494176009137387,-0.07165688076611303,-0.08775841876222176,-0.18883912335443004,-0.20108636704648544,-0.22701380604927734,-0.1706998959877358,-0.028694381791738926,-0.09340615826342076,-0.14388656044634923,-0.11785643582955516,-0.19315221036345623,-0.2538544955256961,-0.24636668259178338,-0.20506063973192665,-0.06872401935120122,-0.10175585287718347,-0.20963627597587142,-0.19478346999252197,-0.24615458496245937,-0.07743582435346814,0.009554210464976592,-0.02883292823823127,-0.06738638569941072,-0.0354762263694039,-0.032922852677277264,-0.02624591921931332,0.017578100877138035,0.0007409523373088944,-0.06372972047459889,-0.056225375677781436,-0.04032459841151021,-0.017937618877159195,-0.007007135030547045,-0.026149409520934218,0.002517412741889349,-0.03808445400558786,0.009150306816575152,-0.012282481961543286,-0.010324882860967138,-0.04234330986106086,-0.04716449415563825,0.031963735586180826,0.009370605195097765,-0.028686740654338485,0.022084361444723026,0.029413112234268304,0.04023506070982572,0.04131050936239247,-0.011377230767798155,-0.030347381520325883,-0.046055244715817754,-0.03189116484234925,-0.006048072719974652,0.011469472175943901,0.04020534207628309,-0.02239984349811357,-0.051147736321620875,0.003384540041536331,-0.06765813656779436,-0.00010550611393612684,0.029617991167995565 +F1P/F6P/G1P/G6P,-0.0246100691571056,0.4085556339623906,0.06036334766337822,-0.19758991272957985,0.4183661378158889,-0.10355134289758909,-0.22980477331764426,0.3922139760882349,-0.10762796378413211,0.4597165435164425,0.40215132119260244,-0.1573200571908788,0.028826745383592013,-0.2646815912657198,-0.2646976369793451,0.40010688845925346,0.7238747510848105,1.0,0.24094190805446516,0.28254049200859294,0.2302150519120044,0.4194418102220523,0.44758148377209966,-0.025363378417844834,-0.09313682475399472,0.09883372299165159,-0.26150558696660475,-0.14618918465368314,-0.08894049464790207,0.24684421862498,0.18709531698127346,0.3523926384474062,0.47715940589494277,0.2714879453739528,-0.3407982977498181,0.1233129239785022,0.24102321082689937,0.5119415363032122,0.1942112924085008,0.09713705885641419,0.040952669152782256,-0.10798226430495253,-0.13195018556415022,0.48698075081111436,0.14160472174934696,0.09596530344282432,-0.10921320820350017,0.2223047247560447,0.10445324661564767,0.08542136476566771,0.18507321549947145,0.36587717187620933,-0.25891758224450745,0.20052422137482104,-0.3292650356913042,0.02790674482492648,0.0756968296303286,0.08815657735139588,0.16419879748511654,0.258274755043494,0.030312812229056654,0.22256051701071658,0.23652604209994738,0.14041343859346767,0.08252582599997758,-0.0014616421388394562,0.07320552923301504,0.16682376407228705,0.010147082131696777,0.185844824108279,0.20255864451782343,0.23291473463950418,0.21662950845809015,0.23250709002538583,0.2707746287329601,0.15100747701815628,0.16393633396717858,-0.09859359830259251,-0.09135258357115555,0.0533200976989892,0.1413237087196435,-0.2634319386394194,-0.1540174963460371,0.06101695187884748,-0.22830408386563583,0.11859425792093155,0.20081805678254924,0.17483854681612682,0.2408189680527865,0.12354200145704469,-0.02929105571497779,0.1470162142824177,0.03400165722660915,0.14102334012908926,0.023371695999502843,0.2576693465693867,0.13749294583909036,0.04551035920689816,-0.1997141572248358,0.16538196403848876,0.020113663717313823,0.2652537942990936,0.21505305214296272,0.05227856269078738,-0.2773647649462536,0.16854498671470264,0.10162614595223474,-0.062286394559215794,0.17155758117433173,0.05229293145316409,-0.09878093804452082,-0.007621683663284183,-0.19928665277053484,-0.09702606763266682,0.2123630908920373,0.15873538956616592,0.31204058078961233,0.09800981990833667,0.22542597617721666,0.2706187606766365,0.26046087849029453,0.17542177329545194,0.2192973536790716,0.04413175289516639,0.0958220071175187,0.025258700639230337,-0.23264637761139506,-0.14779256954185072,-0.19503078465999973,-0.2502289344488993,-0.2630183327690666,-0.21724153500725676,-0.2695442508360478,0.07362945820150757,0.2823306223717277,0.06139885339644384,-0.20071348406045333,-0.0603656895463699,-0.09349307648153478,-0.21135501444180016,0.0693281402828646,-0.24714715376346744,-0.015964873675153906,-0.31195527009748036,0.019612750077134526,-0.04360161850847184,-0.02123791966486336,-0.003601292556768716,-0.15163530549929258,-0.23781397161263484,0.21514716789534138,0.051929489079199,-0.20530644174809448,-0.04425021602317886,0.1010419151799615,0.16577164137679018,-0.1468769516612001,-0.21008121927970266,-0.30274943151604305,-0.09446194697319173,0.08814066721928858,-0.11983787745213789,-0.31575948325488695,-0.35379078201730974,-0.3161092138644277,0.07357485892010357,-0.34133286334795077,0.04593079334991956,0.10463580240187129,-0.1213026889042927,-0.15066270838896254,-0.10958444441466507,-0.12335315484199025,-0.08588003511820898,0.12014873383316581,0.032823005374283745,0.03189648113385135,-0.10896055077086998,-0.02260129278120214,-0.09579849269140966,-0.11854464917872655,0.02171704478584097,0.19139627727959935,0.1507340052284199,0.1373138853601278,0.1889632305117077,0.19183827554347152,0.06851253871492285,0.10741718043190526,0.19047243976278294,0.09432749614476824,0.08247680908144259,-0.11427526901158319,-0.11951316285653932,-0.14353545682202792,-0.033166385720238944,-0.04863901583040219,-0.05979502267079361,-0.05311801962577645,-0.09166580990322427,-0.04270032798006328,-0.07498215223308888,-0.08966880244282159,-0.31006148542679657,-0.25168496035686416,-0.07579560866043292,-0.10443001999428447,-0.12775531573991575,-0.3116576477604787,-0.3553700125925807,-0.33038830913843326,-0.30594324945157847,-0.10082203432334087,-0.14288562884287584,-0.17310255649649553,-0.28101995157271087,-0.3453028971934092,-0.41227762334496226,-0.38848952484761967,-0.3318705426415773,-0.16063324842613463,-0.15309113037498295,-0.35966615732991164,-0.3512805252901325,-0.39140457732733347,-0.006405499344642938,0.09055174758482763,-0.0021760596609413574,-0.0668573420032783,-0.014440952357919062,0.017238869568927628,0.042523396766502256,0.08735760504151743,0.032359557088046886,-0.09555153763564081,-0.06760017607864911,-0.05152048755744661,-0.006695388537831615,0.011057910409372974,0.033629829307834216,0.034235160094930515,-0.06632423180389889,0.0205213944173202,-0.053607039297097835,-0.04953828160214193,-0.058072268432819665,-0.08174225606266732,0.01858904540333212,-0.009333461491893572,0.015798339833625427,0.05250844165133658,0.10357383681810893,0.03777676501624604,0.12552970384993825,0.06843185060955582,-0.0400894013739788,0.0024041941085325065,-0.04115974322792407,-0.0067603973297247,0.009015217035504518,0.018952205600010714,-0.019840697513756295,-0.005917663656446968,-0.003305441434234255,-0.08341692442920497,0.03019771208246978,0.07013416107122197 +hexoses (HILIC neg),0.09120425997227251,0.07181527740824528,-0.37704951797322456,-0.00875463734027909,0.15881239011195492,-0.2781686646167606,0.147078964840964,0.10973815768912229,-0.6877059962393246,0.09436759108132645,0.06388126159592153,-0.6438170211293742,-0.19760373589115254,-0.34887384502496865,-0.4038486880485244,0.1968829697197566,0.1275815627690885,0.24094190805446516,1.0,-0.1953691426802015,0.21548878506635052,0.12305081057531458,-0.0720670372538361,-0.5619440965742185,-0.09383079450177623,0.6856996324271427,-0.07902421734259966,-0.1247736105569515,-0.04596210366579979,0.25643735367964887,0.498497016510252,-0.14143203377040753,-0.2043839227686024,0.05462723915546203,-0.3154011975669966,-0.04881519181366635,-0.16726016462147952,0.2659812937388022,0.7021285601831146,0.5668531223478117,0.29730495369820253,0.17929878232206353,-0.6647343920122102,-0.06548074042506116,0.6199222770122697,0.46900373789579397,-0.15307132143826296,0.766755938128819,0.22982369743668996,0.630225725517946,0.33476425683562994,0.26350696102206506,-0.08081930211756236,0.1285875178311535,-0.29849275489699195,-0.12641622398280242,-0.03799069359885105,-0.027004665940072302,0.12167068443443863,0.03683035128324089,0.4429766130577944,0.40952562503863016,0.6881070441895567,0.11809625134824696,-0.09609235505654032,-0.15739138677983674,0.4632517049834979,0.6525849931109842,0.5183211742697456,0.7875930742313094,0.6066088518523884,0.7121870852529744,0.5673490253562119,0.6444218828069915,0.5831319180790522,0.560599933273953,-0.043352823866612954,-0.2770521072954374,0.4326766186429731,0.48899919816532306,-0.15033692202684393,-0.0773984446783056,-0.0027173515574866244,-0.17890590405642545,-0.21036312767052798,0.6411353959953319,-0.0074676640971045975,0.5593195310745378,0.5328471149331885,0.6996738871284293,0.2632054055935872,0.7341104161959816,-0.5350975395913014,0.7060577856780772,0.044732831379835115,0.6479887916719715,0.5180021279994036,0.35348150474066703,0.30344802913026986,0.09379265746647118,-0.030731241032981402,0.12786393684864544,0.6609414379079898,0.6151697439514708,-0.21059427165728428,0.8546996016928374,0.007366175470773733,0.267711953305273,0.48918083794152495,0.05280641385190339,0.007894505071039828,-0.23116224109987882,-0.19328470407698184,-0.16230705955406094,0.6798909071153074,0.3379724889671498,0.015362392147086065,-0.05214545259732851,0.621564597120331,0.23624487856338186,0.00745338848670047,0.0737283901642324,-0.04829540601753135,-0.1771542918593379,0.02777280197926756,-0.02895775864581334,-0.15865078588090759,-0.19941919890237633,-0.24510673333748947,-0.2313901445202339,-0.14837823986050078,-0.12910851087701722,-0.296104776835106,-0.11596370727606126,-0.08473346408475196,0.6030167975198887,-0.1551286566666741,0.0728806944526756,0.22409864194271642,0.08078709860642679,0.3516437084894386,0.18036225713613585,0.30145609754823616,0.06446869619770423,0.5709305446738246,-0.23184590449444173,-0.2730846547335868,-0.2838935070197627,-0.18808831375792942,-0.05097787110323809,-0.1662141449282913,-0.3833280725990929,-0.41418438337534974,-0.2396532906504951,-0.1740210839726136,-0.3310409412970463,-0.45178026239853053,-0.19961771061583755,-0.2148003317552484,-0.26885975662781814,-0.3734900746080662,-0.40885020177703607,-0.15842779269493007,-0.14863911608558927,-0.25745816953489914,-0.3198359889538603,-0.21208060248963354,-0.13955324321956775,-0.06671177919553165,-0.34602657788817415,-0.3188983334782669,-0.24796494929202356,-0.19345199026976265,-0.32441352267343593,-0.35635923248132534,-0.20555379154508518,-0.18943899433815417,-0.27863460332087325,-0.36944241571316666,-0.32666711395629705,-0.4544531423624479,0.13953020286967727,0.5468447387178917,0.5456548654452008,0.5602367832917482,0.6563857327517034,0.4881486743430178,0.1950053504288476,0.5902924317456285,0.6762632846131017,0.46951770149197763,0.44319083980809193,-0.3578132468039809,-0.4924837432032904,-0.4543266039481362,-0.257102706083629,-0.39294141372117636,-0.47163465335711613,-0.4119467762390236,-0.3380522655817026,-0.4402205114917534,-0.4694127514030946,-0.4215107444443016,-0.3702791575073536,-0.350950886443478,-0.3638990434539732,-0.47946911893126726,-0.47221253852103906,-0.32219010771185846,-0.3158989164077988,-0.32033433357657276,-0.3453947044564542,-0.36567088782993357,-0.49078417520464107,-0.4786249504509185,-0.2636847115228901,-0.30751045728059984,-0.27086602059521925,-0.29912297170071345,-0.374641042067479,-0.3958145683965639,-0.48458158271253177,-0.2516510740847524,-0.239181264348515,-0.26759570407606076,0.047034870082537455,0.15536081623444184,-0.027420938874288647,-0.0708891015524025,0.012635778929455055,0.12626414149587736,0.12211032213057525,0.21548469112838042,0.026235124575232183,-0.17214606870757465,-0.15581432370993595,-0.10336029612640273,-0.052544774891453525,-0.03926627494547465,0.16295215143871808,0.02196588749897776,-0.14107030875072615,-0.03420318208939616,-0.0005307722318759129,0.035078578412788206,0.06231011771105951,-0.05912503454969093,0.033466296789069865,0.027677681282188154,0.10405046332507796,0.08283865141744665,0.12351469126008105,-0.020052481892550197,0.07712668486196791,0.13194543289160185,-0.09599707444233892,-0.009349899410401442,-0.042140546833847145,0.007208787532071491,0.0459939026827643,-0.009798233751047132,0.17496689059323423,0.05172871656019721,-0.012781900807330797,-0.016983781890012695,0.09217031231294798,0.09604510815367286 +Fumarate/Maleate/Alpha-ketoisovalerate,-0.024451733873636878,0.27270195626125016,0.2053624954778986,-0.17913510640410624,0.35226693306437734,0.11338821000589375,-0.12587280699778416,0.5064765289815673,0.3192495762844896,0.3866974715742112,0.3779876979471191,0.24482707029681985,0.07731457018789338,0.023086833766050616,0.07157254681712819,0.20983324689240468,0.2137136821852819,0.28254049200859294,-0.1953691426802015,1.0,0.10530847604602772,0.3793143900848631,0.4359052170455341,0.2580360695430688,-0.06214295227674123,-0.23673990098109285,-0.09348930620604404,-0.13049213072681765,-0.08864623449112397,0.14084522278219652,-0.07302729217841641,0.8605487175173142,0.4337324896138826,0.20980406705137458,-0.0363171801722274,0.07487548692996122,0.22469316681478282,0.25716380493183644,-0.0734119901541878,-0.044422295867807146,-0.09210658537221368,-0.14924667458151672,0.2850135170877321,0.49091044088644586,-0.1292684005927352,-0.021049082952906733,0.013043873223315912,-0.10598945797488449,0.0427781362049296,-0.2038044138301549,0.06281095579907073,0.09789079314224754,-0.08139475871164067,0.09266096058466786,-0.07044729891530724,0.2157638182576541,0.104840887424703,0.15589941071195795,0.03261353726790357,0.18566237246288,-0.03644900125762308,-0.11535578499400292,-0.07934426487566204,0.3370187685275695,0.41775349265037914,0.1957116443285008,0.13009013226369712,-0.16576638102433214,-0.047941054393846,-0.2275837581725304,-0.16285770565626692,-0.08716451263799754,-0.053888357478466126,-0.11912065571796605,-0.09006872081299667,-0.11029739416724789,0.2659869033293056,0.172696419881631,-0.10201034772782264,-0.0758690773725728,0.21049100872398294,-0.18038091941610962,-0.1134513477328266,0.23086176153242857,-0.03843176045421404,-0.09665383698311052,-0.002037907160076497,-0.07382814039350642,-0.09055919260888504,-0.10143569023150582,-0.11944380969837332,-0.1306471508199089,0.3379982018531067,-0.1062533682291992,0.02802714916450004,-0.031908510050521734,-0.06755989292039812,-0.013374659806896321,-0.10776166187575774,-0.012326971743574913,0.05381839700366687,0.2147150837647403,-0.0459513471153133,-0.23686530389868568,-0.07396698551322047,-0.23604915691728307,-0.036450818305281,-0.16609614752349056,-0.09626969971297292,0.08132877059852361,0.05783939562766513,0.11202671931867188,-0.06118708547744334,-0.07601924873365645,-0.019527220748629535,-0.043201629591173775,0.18210377834275332,0.2663690277989298,-0.09261530816962833,0.08230335102885686,0.07916278579374972,0.07553745440851573,0.19960087783226022,0.15874954443152697,0.040657046932492454,-0.01646437824921562,-0.09750934136000364,-0.06514434644186376,-0.07225716629620874,-0.09188766566636729,-0.16366216886517435,-0.2029322480484536,-0.010708786081812862,0.02674952029224908,0.22119763053869895,-0.14294631170181474,-0.07509834696633856,-0.10813450373466511,-0.1562481104330745,-0.10390280986419541,-0.13868295874306152,-0.23015598422677885,-0.13199643293336824,-0.18696197287599484,-0.12134834500506005,0.14618564109710047,0.1323538647102697,0.15736038014946538,-0.015163261459459556,-0.045679424846999786,0.1805151243122227,0.209247626766982,0.031109277549162272,0.035942209896130166,0.09573665250078862,0.195746656901228,0.09977385556749371,-0.04888313241365924,-0.12390788577703264,-0.05573702090767482,0.2257724634291726,0.06542739594786255,-0.12102305693690708,-0.14434358363875477,-0.0898404544825465,0.1522046508696279,-0.10145902027970721,0.019660954903987372,0.07098496450147282,-0.018102079736936946,0.024819937387730074,0.02231906153714046,-0.01089160061176617,0.0036025660236499836,0.20525168436582264,0.024485026923870345,0.029541667780388886,0.05889663292387479,0.14273131858334995,0.056517699384137095,0.10327554766499546,-0.05327857394489825,-0.10716871022000393,-0.1520468398514696,-0.09103185592999534,-0.11184178108007345,-0.11961920494084605,-0.0827749295803619,-0.15787644515866198,-0.12656232246452484,-0.14600055667684192,-0.1017130612659062,-0.0639836861164598,-0.025791183927214658,0.03986287396267133,-0.1103920073801602,-0.047784981620005544,0.022555811845546076,0.08160426252715759,-0.11112178670508181,-0.03619663448250648,0.02426951642062015,0.08472627343287223,-0.18715056425456986,-0.1972651191033335,-0.08836911498633658,-0.05050892881947777,0.008816189762862435,-0.1790671050706564,-0.20270000735227592,-0.24097367887859955,-0.2157871443515804,-0.0978081943088731,-0.04184400848247315,-0.010333048597308627,-0.08167911437213127,-0.19645881656511247,-0.21287068446362042,-0.2114258318777091,-0.18258259945836977,-0.07979680899956249,-0.03714567052543715,-0.21650471291382226,-0.22615661549902086,-0.19687928606511512,0.05211585122382587,-0.0033247020292691254,0.03373974021065744,0.03436389079187029,0.03107868152031738,-0.008836812905789729,-0.0718509949226782,-0.09049796356977832,0.06445412829104258,0.11944298734020793,0.10514039159664634,0.06911370123453316,-0.0015098562640236412,0.08523106882283339,-0.06855418491408057,0.0937524098041573,0.09108144833519975,0.11754310025768608,-0.02643480315803801,0.012470035826432007,-0.016851535679950708,-0.0025112578574864484,0.004745894400123205,-0.013409298502297181,-0.028595303792958784,-0.02417092329111438,-0.0060586903155284986,0.0351247549306413,-0.007523607220895944,-0.0635523800675985,0.042967244312622194,-0.0350142345357275,0.1050247227563739,0.08166595826343816,0.06120975723928747,0.05418423603981138,-0.0677603740384354,-0.06621076934104805,0.002075460989721228,-0.04115234317034231,-0.1016975816481612,-0.10312453140538247 +Glucuronate,0.048848073056306195,0.10412024046034841,-0.042527939967136136,0.09934551185263339,0.27272866197874335,-0.10696509766083188,-0.025965805799052943,0.22390940488265024,-0.18091528330392193,0.2749318748380679,0.2433494855890589,-0.21909762141159148,-0.09154256627309573,-0.1962218400659929,-0.2737314133673516,0.19612502749969676,0.10540171005410051,0.2302150519120044,0.21548878506635052,0.10530847604602772,1.0,0.24038532762156667,0.19652543157121521,-0.07929391351172778,-0.06340138730685982,0.29707196850697287,-0.10533021701088344,-0.020324015257939726,0.006073004812788168,0.4210800696055776,0.15229179454084146,0.15992742388817943,0.22519644064477745,0.1449923163049181,-0.19832713536321075,0.05219019516042521,-0.0156685252772565,0.15576998462268923,0.2431707120984082,0.2177528094055936,0.02000609712232101,-0.019043045916583855,-0.16157472793860703,0.19017887248725548,0.19325583984094194,0.2475141234015016,-0.08134458633386762,0.33726419062046253,0.042351632295384946,0.23255922594083367,0.20337517971633276,0.1787515794093489,-0.14781325900422407,0.021979217697595088,-0.211883397720396,0.03396718002220489,0.08718639371599224,0.14319125442162053,-0.02102700194743707,0.09809290240537334,0.028987432065792865,0.11726812559622306,0.200766813146099,0.01129543973367788,0.03265408609209576,0.012182836586462223,0.06693719800605298,0.14970084093874228,0.11531548276682851,0.20666399764917376,0.19321498780950327,0.21969280748657496,0.1739494993127402,0.20544218492726457,0.19747679140936608,0.1581656441393974,0.1275702472535816,0.003013512129793958,0.14804216607685583,0.15299706657618056,0.04916776334185554,-0.13433777121996035,-0.03332561752961525,0.04339614076938712,-0.145193022283763,0.23209995515049198,0.059834240248834006,0.27696750235231077,0.2829921572885213,0.29285491198153496,0.13133679170030077,0.2122327995628627,-0.09863797420704662,0.26885420331579035,0.18289737783510573,0.202622039052699,0.09449247676745955,0.08028569148438552,-0.009258671349543234,-0.030651973239745615,-0.027276709032429236,0.0902236996724438,0.2633410069328523,0.1889537519695374,-0.1744100366861088,0.18970779833331058,0.1707423051426461,0.013438606374859432,0.33545378815876187,-0.02709790456886702,-0.0771757961415828,-0.10034129636371131,-0.05668135184327876,-0.08002413373736873,0.2286556540094577,0.17726875597507438,0.11497955259252282,0.0005255240011394705,0.16072495891217037,0.15110046442293626,0.1511614077411586,0.05711323288397828,0.1267746541703749,0.005568070607139046,0.06103062946105159,0.13388741295463644,-0.06691848797355958,-0.053105036021924706,-0.07070117572412646,-0.033752484388853574,-0.041892713461343475,-0.03128890246910448,-0.23188413225997903,-0.045824313804997456,0.14682383928001022,0.19943432616695003,-0.179861635275606,-0.08667925945171288,-0.02934146159453676,-0.15057367587667786,0.0846217688889413,-0.07751149056484631,0.03395004773928645,-0.12386293475293887,0.04145128196049767,-0.108154393521529,-0.11246316212872577,-0.03097256298360051,-0.21369305742304925,-0.1579215880390897,0.007240775956369196,-0.15309270213025178,-0.1645578034112223,-0.15351295880037183,-0.046250133035242585,-0.06730104876768275,-0.23809963735537437,-0.13623658570066444,-0.21292865746422165,-0.09851687149832859,-0.07922186062261381,-0.15493886213918176,-0.17320041631660765,-0.17678192981041363,-0.2154957234029772,-0.027731825287304366,-0.19124819792642136,0.040920518093553696,0.04432799814600656,-0.019723077137086698,-0.1595868010231264,-0.10388874881320351,-0.04642153667974179,-0.12434331331850913,-0.03846047667265871,0.04230573423848861,0.07487797816607909,-0.15434895253165923,-0.18553980441415696,-0.14434305349028614,-0.1941674918780452,-0.0802417782310115,0.06503636673916813,0.06778534342636695,0.08494871217693041,0.1173433965190267,0.07488772091854555,-0.01003769287351933,0.1356163011612222,0.15420069697003883,0.08097352423805945,0.09005815782572912,-0.17311898753824975,-0.20983659801864543,-0.23883849297563675,-0.11266699973248923,-0.15922309277071814,-0.16301968834545033,-0.13615188883515142,-0.1594844726783084,-0.16514050438232158,-0.153732353332376,-0.15260612410859117,-0.1935855732736913,-0.20593872474188443,-0.15400717592271612,-0.17340126559549446,-0.15828858848615698,-0.14330991319021918,-0.2102707049095966,-0.21042088764291048,-0.1853189678270769,-0.13284314394792449,-0.1507587280008984,-0.16247583846961133,-0.1887028885963968,-0.16951687331618215,-0.2085243753645978,-0.1968310621701362,-0.21903024424351547,-0.1491197390951806,-0.1756586384552634,-0.1642163493501031,-0.14827273434861907,-0.154738612675327,-0.028953590002978948,0.02490868935330795,-0.06455635234759496,-0.0344286573752136,0.0497126341496319,0.0534884246757328,-0.02194123740338353,0.0016739887585743214,0.03245778543249245,-0.026290635522210677,-0.06765642166553047,-0.10385610119763572,-0.13964156307386108,-0.0066389525759827876,0.02909441092029089,-0.03906677699363772,-0.07008423736107161,-0.07977570390467176,-0.0746043912298827,0.0752781369384774,0.01645164145173754,-0.036214299259157486,0.07835131304669879,0.13261395708150908,0.10698356957626262,0.06459324211869323,0.12125861909054225,0.1087246112999824,0.1322640978617503,0.015870211830180895,-0.015517760016730303,0.0025355944489691188,-0.0070252859749126125,0.005573003829440892,0.007614691909388799,0.04757008636109268,0.042218747007080275,0.07607585612170818,0.03061821762749594,0.06927490459308755,0.00043341013455594425,-0.031115118169944278 +Glutathione oxidized,-0.036489829967379636,0.37103816854361904,0.05659392005953409,-0.20684028784505634,0.46140496052411284,-0.01922014136704686,-0.2130906308871569,0.3758955911698309,0.05843708355717708,0.48367597157481457,0.4097594038419014,0.0009466330974904818,-0.0028115453871323695,-0.17273758171437986,-0.16627249938670327,0.32703394680326653,0.2801114575680996,0.4194418102220523,0.12305081057531458,0.3793143900848631,0.24038532762156667,1.0,0.8342761576151921,0.18648397035856568,-0.06570808754425558,0.0806414320633039,-0.24056336225542155,-0.20155298886629006,-0.08720836562967825,0.3415993512682228,0.15491743521341175,0.44748860202909985,0.5418956242981974,0.6420704547631111,-0.3703074519060279,0.0865312006115561,0.23336657979501654,0.39996044623319404,0.17796169839828765,0.15576122938933712,-0.022892241500539666,-0.1301507661356567,0.04595196287728009,0.5620970946767894,0.10462869824036514,0.11432797935322844,-0.03541239625050311,0.18803732116691899,0.04746422965692615,-0.01044618805216033,0.17735882826257382,0.2897218017107596,-0.33664696000399297,0.05208564002025225,-0.35760076141935687,0.01511975826893201,0.0937935027048174,0.10955673337087438,0.07408229832511763,0.19840503206235122,-0.10292034177608121,0.08228715614898066,0.1877010961057828,0.140930886388343,0.17899501148590607,0.06307752331120327,0.016495882906194845,0.12746536897401614,0.07443836044276253,0.0882353686552504,0.08520747696840256,0.2047676076318249,0.20101296847928063,0.17347232530431442,0.21820292325460675,0.12635756796307016,0.24551969082346392,0.04998634947409291,-0.00982590058064271,0.08667152885369964,0.2676196757433057,-0.3374265143424727,-0.17263718417687382,0.15275019736131384,-0.23293367460929376,0.1125772354551454,0.2769486140645324,0.2248778643344043,0.2752939156661943,0.1527474170488753,0.011214097514974408,0.1596327610714378,0.23542396950684508,0.13527877313923817,0.08307869440167596,0.21447461821572267,0.07872678622562009,0.035309133186251875,-0.1777756885512389,0.08286395241535471,-0.03747953638443524,0.26249986380347096,0.22170724765352254,-0.00037066144128219844,-0.3874193139734645,0.028220805872955536,0.10709458467919225,-0.10592289487750153,0.08897773218560082,0.06423853241973738,-0.06698932252551679,-0.026140130267439266,-0.21168632526853262,-0.10734383524997117,0.24444313580971538,0.1587234940598317,0.2861025780266109,0.16836640568603556,0.18878112623631466,0.24492506251559754,0.23678652605154846,0.18866244809156849,0.22612559796721926,0.15091211074260824,0.15027235159124966,0.06653877915547729,-0.19104432799599086,-0.10010867604295053,-0.12726966367488457,-0.18975439602719607,-0.23918007624568377,-0.17426934231249983,-0.2794937334583568,0.060609801988990075,0.41778165104680515,0.013865661792769662,-0.23481932119283364,-0.07226580404050997,-0.08006323463782256,-0.23922560472690743,0.07684085604669533,-0.22162848515143055,-0.001245901948435046,-0.2791669273670753,-0.0626609744630404,0.044428223849505774,0.060435173852235645,0.16912086133251913,-0.17960298284430676,-0.18070963826611536,0.24720936586165196,0.12868709643603832,-0.10418951380396704,-0.07264790639105909,0.06605006645013577,0.2106669198241792,-0.07739234116202574,-0.2476363329035588,-0.3565750601149402,-0.14088407156029958,0.18907917712126476,-0.009016653296345212,-0.35167040514335085,-0.36781244944561703,-0.34241285757417783,0.17173298886059687,-0.3551900718696133,0.1460131958241131,0.18175160844019655,0.0037023035818988946,-0.12960883641149165,-0.10339561564361699,-0.07927766082515639,-0.0728862050138194,0.19262110616135772,0.11073879376137595,0.13526411792954915,-0.15154204339884672,0.03577779489910784,-0.04138063546681185,-0.064395291540886,0.018680071153874777,0.13635610267556542,0.10156953047592278,0.10410156529151136,0.12345994699189947,0.15250542850309753,0.06763464263022428,0.08585730323318502,0.14639885628267182,0.059807181120491944,0.08481794932886369,-0.17519061519100856,-0.1346989406222988,-0.10639241046249485,-0.1270441445009596,-0.10251703459126682,-0.07635396508069976,-0.03322571689301517,-0.17255708121767885,-0.0803371191222455,-0.08184682235548861,-0.06341195179095184,-0.40179669714329846,-0.3640891185999565,-0.14498872186215678,-0.11656778541086528,-0.13533793060074142,-0.39065081097543664,-0.4221920806062603,-0.42762621120537475,-0.3920571236603566,-0.149435912984776,-0.1413456244814372,-0.15630302898946005,-0.3392979947710728,-0.41087151689114215,-0.48462202757679856,-0.45203982170117846,-0.38315572923869046,-0.15904090577393074,-0.11706818067638881,-0.4247812026475347,-0.4152891867275437,-0.42939805685015386,0.02241438964455995,0.04089542863670713,-0.01421521982378021,0.0010499970905024913,-0.00656738943718005,0.022393507435116092,-0.02124982269476691,0.018570025793736924,0.05753918271067234,-0.011308802537684143,0.003992828126732135,-0.025618004662124702,-0.04207237516156358,0.0813353316346632,-0.013249567282739782,0.047764047958014956,-0.018589862827430557,0.040806023449465635,-0.06421403331889182,0.03464079723649434,0.004932755546595278,-0.05339598016733919,0.06492750403308245,0.03444915378546488,-0.00770464621693547,0.004054491562835699,0.10926948224395966,0.05547491343974623,0.06876973974057099,0.002880457279057329,-0.008062360975191807,-0.02631817011153141,0.04607510406957864,0.05061557486610596,0.07662586045648048,0.02848383667967955,-0.013979337212155952,0.0197833271803994,-0.028838416707301674,-0.03907456974577301,0.026665334612021918,0.04883232156912994 +Glutathione reduced,-0.03907090249823831,0.3909093039829616,0.1296253725250125,-0.1747088891748137,0.41939041014548456,0.029562544351352048,-0.26558233335821385,0.386871276595,0.21874678724908958,0.47758016105397955,0.4166142918929,0.13936637874797103,0.045964676767310114,-0.11349032953964269,-0.0809873930394911,0.3197000052784502,0.28632692550449773,0.44758148377209966,-0.0720670372538361,0.4359052170455341,0.19652543157121521,0.8342761576151921,1.0,0.27523502192286514,-0.07993721745837966,-0.09076678515335318,-0.2731758325346573,-0.20990310805282714,-0.10253675234637816,0.28026631272388425,0.05803005292890211,0.5210897072088331,0.6828848815679742,0.5691258263854262,-0.27905214464965344,0.14393290339898632,0.24416053089022577,0.37637358821776107,0.011807515271812754,0.0069033545644219,-0.06559439669180281,-0.1659473782223611,0.1802171492828378,0.6589999359022058,-0.03844990802246555,0.007188838951901033,0.013348712876546489,0.02768566832799173,-0.032886468909370636,-0.15694626145149276,0.07057524202678866,0.2633303043109772,-0.3060237000181396,0.04269977809073896,-0.28579551449395846,0.07924916029319953,0.10883466898363062,0.07473763011461251,0.07918979505382638,0.20599679936801873,-0.16334504501782698,0.015917803909515804,0.029312520750042984,0.1489266612300315,0.25168906224284043,0.11603388165306555,-0.08645763832531088,-0.006984734605611109,-0.05479974001315491,-0.08889321572277017,-0.032684432981411604,0.04700086427590485,0.05763736275235347,0.03612076058690098,0.08445159634040202,0.0029220536896598457,0.2680934422061028,0.100117961155115,-0.18210710996558335,-0.07276399904725096,0.3421515765738323,-0.28091728789354614,-0.1735420284186271,0.21648870659984237,-0.21612387463833396,-0.05137975500140515,0.2974459781166338,0.06683988406168391,0.11096371424188907,-0.022116871669477556,-0.04208553691677607,-0.023911328394378303,0.3633190247285785,-0.026776971146654272,0.09520669623017021,0.06484007974401376,-0.037240242488031795,-0.03114440577152141,-0.2372953805372367,0.1090798122199263,-0.02064481388492472,0.254535984562122,0.09189811001677477,-0.13834334030254547,-0.28552331599734226,-0.14253048990190312,0.08988607513135032,-0.15578367642622878,-0.03524378868583574,0.07233461767674448,-0.04108440818822074,0.052461392162786544,-0.14806335058659092,-0.0519870050238505,0.06414373161990246,0.09741171536959148,0.32018802710251815,0.21239883909434334,0.014107498393377564,0.22399272760231234,0.26593711576163714,0.17972277571984677,0.23864514743076304,0.24088673026887591,0.16939528593672376,0.06325212900648168,-0.19195518166313558,-0.0698828227301878,-0.08787292465950364,-0.15060687972739842,-0.21142643932226832,-0.14310874268019885,-0.20915215010574967,0.06931394849784939,0.47192744296719064,-0.12195083527465134,-0.1850021158064849,-0.13240396463198045,-0.17121738143589613,-0.2608966675963908,-0.027295447724832375,-0.2958158733788547,-0.06748897725285093,-0.32360905622190267,-0.1460680924883895,0.058623756396962205,0.06983756215904646,0.1748049407531892,-0.13766629992725973,-0.19706723283361938,0.3120345096739871,0.24909052362363873,-0.004587259775324102,-0.0018226131475578638,0.14340538750373913,0.34851827015888565,0.07068690378222733,-0.1898107626622687,-0.2683893456519123,-0.0319219985111555,0.31712732136732463,0.09753545600086762,-0.27132481185802243,-0.3080930236711813,-0.26095937154636484,0.2944262326320373,-0.30537083077277566,0.17255541991629614,0.22201614164144762,0.08187831020504323,-0.07174909392120755,-0.0633354104497843,-0.05591494866169577,0.06288127146882057,0.3304073569635633,0.16034674877063868,0.18176579090148415,-0.06603449718627705,0.11753774559681526,0.05541945599287358,0.008742048922219081,-0.0100358575580682,0.04158018573960624,0.007943155964908959,0.018463238388264684,0.019307171860189227,0.060674034121577174,0.03254310916560349,-0.02246891358002254,0.03401414645144397,-0.01568811910112739,0.010276578453564906,-0.10700955902902376,-0.0457784184311702,-0.045934139002425815,-0.0766399484872013,-0.03107297864158757,0.010475004642871459,0.020772436646379927,-0.10862667504797438,-0.004950159393942241,0.001031441697833872,-0.010514557999134536,-0.3352867928818336,-0.29396668415323346,-0.07948707530345901,-0.03099509006236439,-0.044612826675301046,-0.3112104116896536,-0.3497710125994676,-0.37007996526760945,-0.325298635114238,-0.07184295380434445,-0.05385538977690983,-0.05791001694880877,-0.24083298271618075,-0.3327384790266057,-0.42635769580585275,-0.3873754696300777,-0.307359501090463,-0.06560100319448889,-0.01768892460792196,-0.36877320399036534,-0.3668653921237625,-0.36389103790023314,0.03525836301433889,0.016903294374084762,-0.00560065878626154,-0.010215256254564762,-0.036072760396315906,-0.015580974863117011,-0.059135926491607725,-0.016468283844294607,0.05623259931186337,0.023804304908649192,0.04327130583488771,0.0025186366567685123,-0.004749114208576515,0.09436032246170423,-0.05738886374861118,0.114480545177385,0.005817688386976564,0.10616737743561279,-0.056400150871015596,0.025391555861196687,0.023333686474204196,-0.029703881040290044,0.05098282129872066,0.019407445524701854,0.036058268323970306,0.019626967939785408,0.06693715325585699,0.033012249108345555,0.06577810602016441,-0.008668172160989262,-0.030239113044706948,-0.042268365524246294,0.09727810849042783,0.09476058621567396,0.10847655311031369,0.05502453183785588,-0.06514456901963407,-0.0016317108796659204,-0.032110192026211154,-0.05530336319372564,0.006821796464734246,0.02599432028725669 +GMP,-0.12098496392131818,0.025662695164772143,0.42568463659327066,0.002548418257529083,0.07557210203547206,0.23889159384585693,-0.2234447112683559,0.08161462303585215,0.844776770740346,0.1634384970848656,0.15654622437575394,0.7993376624224298,0.174463715319463,0.39581012308765473,0.371790794970797,-0.11100418478421221,0.02535360753149444,-0.025363378417844834,-0.5619440965742185,0.2580360695430688,-0.07929391351172778,0.18648397035856568,0.27523502192286514,1.0,0.09964301864423113,-0.4965268783004023,0.06808240278733292,0.08462144146209594,-0.03729453886932318,-0.04995230268950877,-0.39010811089664715,0.29466881787742677,0.38604171139719784,0.17951386239740638,0.08902022051809921,0.20120861855646743,0.15880069336247876,-0.02131438444882364,-0.43023181552095924,-0.2480702849662455,-0.26953785160354354,-0.1795394957739925,0.840706043399616,0.281835848486903,-0.37789926086607745,-0.34468222590471104,0.36423269487263876,-0.4369312470767419,-0.2696947263676049,-0.47788262586606944,-0.09048022787462837,-0.12088833596770351,-0.13335645763026818,-0.10436350310949834,0.07950909209738763,0.1637553687560967,0.1391145689844195,0.015393137823729221,0.12589284387572808,0.11472950068513357,-0.30357464674030343,-0.1708303668414077,-0.38557874565712325,-0.023223772066637005,0.1842414120785347,0.11268520064244437,-0.3027319805676723,-0.43140770048199684,-0.40486631683776686,-0.47146809597772144,-0.31313016149814354,-0.39696428795003985,-0.3026317802450748,-0.3392220641822556,-0.29469508115694365,-0.2714645636617118,0.20201197879715796,0.18455173401434072,-0.3321553025021731,-0.3099327205711293,0.26485077217027697,-0.10108077093674614,-0.01990335129518004,0.21358134317341304,0.05182343567815532,-0.4454156192153726,0.017865886647991852,-0.2774839060245425,-0.24643782696712743,-0.45387341819678234,-0.28505393932026396,-0.5560544810990278,0.528314571393319,-0.48997960205706437,-0.07673620164034417,-0.2967168507700452,-0.21740123379975743,-0.16720694480085505,-0.11292711489401773,-0.11536787035600819,0.07947450763211701,-0.021469938475499207,-0.4489334189997927,-0.5686027117010392,-0.08916002133481676,-0.4880696029639424,0.12427572276941756,-0.20246726357121309,-0.23610123902855376,-0.0055485523526501174,0.04004335762085691,0.15663319048224203,0.09599288374034359,0.11811485574307574,-0.356351013125897,-0.3080583130440444,0.1729115643020838,0.10080111682500704,-0.3608006395830759,-0.03801159299710829,0.1153606748580773,0.031795064678282296,0.16229384351538195,0.2372188513821131,0.037762079737952335,0.16185158161506621,0.09781580186029787,0.11782251915555156,0.18528774541745877,0.16742197488410715,0.05120150357670866,0.06291401395967441,0.11796773121257212,0.07885798509520857,0.21314447343141407,-0.4942220335567947,0.053311253494281334,-0.025446029885183536,-0.21199564398385679,-0.2008938666541725,-0.23096877629088813,-0.24862215303825722,-0.23071046686473526,-0.19191169823503162,-0.5082609675512383,0.19822714689247387,0.2461003344428886,0.2671560623712053,0.029330793001861703,-0.02258391706467121,0.30517421095358965,0.38998650353739406,0.2696616381044681,0.22862806848182685,0.1729901686505436,0.34506868258885703,0.28629651024561664,0.04780223300942579,0.04031605762413876,0.15890715815069412,0.3095321021503598,0.2486374971130476,-0.0032932494090717745,-0.015047545874812773,0.07999115886175012,0.3020720746595725,0.06702549107267401,0.11592575225925442,0.06013403109777012,0.19151584106515998,0.18495048843365994,0.11154180027564224,0.09080977104942714,0.23924426149543657,0.29669540186963966,0.11622546746480476,0.11261166064934251,0.1287862537217696,0.28501218832353176,0.20791372413075412,0.2772037439958881,-0.19433956179933115,-0.441819427998519,-0.44439602558269786,-0.45520862566745846,-0.49912525303863997,-0.394821761817795,-0.20626472192330184,-0.5318770467239369,-0.5262597378427244,-0.4471131608626736,-0.43736568596421804,0.20962606836340875,0.302481514860866,0.2565958514246798,0.12389363726350636,0.23424106055982907,0.2899093346636851,0.23962357959852942,0.1719255758481686,0.2392876242101064,0.24409146707009513,0.2313529455211234,0.0776954771421275,0.07574271709310897,0.12695185051225052,0.2254820346173905,0.21573610930511644,0.038759305574643646,-0.006294145437828407,0.03208731418757589,0.05037362387135459,0.11291221446643726,0.22159905097564445,0.23441090413858331,0.07796932662772062,0.022416687026324426,-0.042186688465938454,0.02990361034666983,0.10834661743150265,0.17595865611026945,0.2555196353048854,-0.0059154638375542015,-0.008282814182817956,0.008888648076486703,0.016442360480152116,-0.04958625309941554,0.03142540287297755,0.051329653979908796,-0.028356527992571358,-0.09451248857262304,-0.13354715022063327,-0.19434576601412315,0.021267574896685234,0.16712700545622142,0.1725123836918755,0.1374721719305045,0.0686985377031832,0.10770687611958209,-0.14434838559353055,0.03442707920987197,0.19793332820398293,0.12424376329719991,-0.029985478442402326,-0.09151734565105356,-0.04748340823496641,0.03890257368188269,-0.032922130223614274,-0.10519038893906595,-0.03993132029925802,-0.007604605561088475,-0.09772547496734027,-0.013520936239238179,-0.0014138914392372373,-0.027309637309348846,0.05990751032025118,0.015747365824161304,0.043929985986557146,0.029051651640503585,-0.0023789022531637695,0.032481636907952395,-0.209551725999189,-0.06873727297034675,-0.011455395527210985,-0.019015249243988598,-0.06111089589327629,-0.05821326864940972 +Guanosine,0.18154699423691592,-0.051074734894622074,-0.020021326711779783,0.09121626179360391,-0.10807769682966557,0.09378565564911348,0.03924185229256133,-0.04870143961673083,0.08376354166732444,-0.09592912660954094,-0.06945639989287439,0.096760150865808,0.14614872887119787,0.33309992027256097,0.12415796013112464,0.0058864771651455745,0.026661281990886368,-0.09313682475399472,-0.09383079450177623,-0.06214295227674123,-0.06340138730685982,-0.06570808754425558,-0.07993721745837966,0.09964301864423113,1.0,-0.11586169954932807,0.12728722832161363,0.5537023300228994,0.12275817372421936,-0.07388354002237325,-0.05558728719751216,-0.11108203022315338,0.002154304986313673,-0.07107023927455812,0.17867017887125997,0.031020808190856116,0.019843261831631664,-0.047405253617165244,-0.13316375966266505,-0.14436413249625782,0.029125616010228447,0.05543448636496552,0.087192016181417,-0.05880472882096942,-0.1315717753978349,-0.20516286884260007,0.14517519443947902,-0.16614091147525498,0.009754336685562413,-0.10993215774425603,-0.052527714789974374,-0.12101678371765215,0.07269457047065352,0.10730552976265709,0.1628889411326528,-0.026432077427826734,0.022193611042979556,0.08147090203650148,0.023767424763872613,-0.10005365206256024,-0.08029718586169468,0.014520740283532335,-0.085185290610148,-0.051451078495363005,0.09697185503596892,-0.1909193079544661,-0.07581270317123628,-0.07252345780407067,-0.17475865372835478,-0.027345594199206798,-0.021590655990817702,-0.11189078058066983,-0.09164287332797841,-0.05669866304311083,-0.07135751132952607,-0.07698393406933987,-0.10942190298188931,-0.08712155004839932,-0.12780955710026085,-0.049680476542665296,-0.03563361075741514,0.013422519436178204,-0.006611782751137061,-0.1633150210379066,0.14789821304133255,-0.19020358378006932,0.03896898479839176,-0.11710528023418294,-0.07146965338938678,-0.19269136794618477,-0.06746145110320467,-0.2045327091360789,0.0658452498535858,-0.1501913340815383,0.11737747818575744,-0.04269317768159784,-0.050850785320395435,-0.13684304631284255,-0.010913976592349238,-0.05810640531475977,0.0035513015654605176,-0.09177743965256972,-0.18777863252474214,-0.16764675821344105,0.058803500571987605,-0.045024449476245544,0.2681252897468375,0.09930327091812426,-0.15588060731637227,0.05915660877379754,0.12204375602997722,0.12240675139766871,0.17591891379719357,0.08231043157037364,-0.08477858193711268,0.07520561093163372,-0.09260325596868876,-0.09317541666878139,-0.0242195409718903,-0.12070818983139575,-0.09987702505568928,-0.01460050316995469,-0.1222915992137691,-0.12764512974343006,-0.08641950746067618,-0.18049962694627575,-0.04071838059329892,0.034580050192169566,0.03370560052688168,0.025917111710604943,0.01682514337808658,0.04866813726037987,0.10741001817611062,-0.04828594137645146,-0.07796952289958961,-0.1282172821995271,0.1453221433096643,0.09931367278288206,0.03322836563137011,0.08295793784093593,0.009123432974897667,0.036773407825244055,0.008646997120863397,0.05597701811564701,-0.027855750318526863,0.08608196320930336,0.17052060050426918,0.09281528990681437,0.08631152747648778,0.1460756577624766,-0.043303411896877315,0.03055596541767124,0.11537497611436182,0.07032347011850276,0.01740470156067453,0.0030072443386747402,0.09321033301129865,0.10075334808663017,0.0907847704023831,0.06793988262626323,0.06796433588287651,0.05727350700481905,0.05760535605898385,0.10175096713219377,0.17143383812858004,0.019556889785975473,0.15133362330473565,-0.04033550094912583,-0.044533971326863854,-0.004869820371837835,0.10895687758148628,0.058830716164137986,0.05627157842087582,0.034999210193115325,0.039088482378243125,0.03178928194865551,0.015116589762826345,0.1000834247351449,0.09444498782988019,0.10279149201537166,0.10330292500316796,0.004018186965586411,-0.090592011984756,-0.13292810634727792,-0.09100647325597273,-0.1060689287847162,-0.11682173368866425,-0.04890977388938007,-0.1039271347098735,-0.11831368618379509,-0.05720149764876037,-0.08574473940218214,0.01700539277167315,-0.024858867653366677,0.06319440843351437,-0.047595877056478435,-0.07674435400827877,-0.03624805533802896,0.0027913573266624323,-0.037847254591078634,-0.06687558297140044,0.009074328440867257,0.03739107764837729,0.005384046673498944,0.010827644943788697,-0.04797146573918991,-0.018275656250781955,0.008895947698783985,-0.015716936165117015,0.042811569585471804,0.021548946903478874,0.016776880705667182,-0.040716454799979596,-0.01713549939449045,0.020741495903310952,0.08897187076555987,0.029524935198269067,0.07284286437803908,0.06631792431683385,0.037499787297401777,-0.014721250608024664,-0.0010782275212066958,0.01715977935708037,0.035320238761247603,0.04991685445220468,-0.06084073519498081,0.05828250717489882,0.04465603029592777,0.006303773251393766,-0.011188201580882559,-0.08061546303957982,-0.009660680823925469,-0.016087733513006196,0.11495361907604082,0.05683166488647789,0.03431381545548211,0.024213031450255697,0.04196668386972017,0.13432878869107,-0.013415354147219956,-0.046112759568896496,0.07783747318506,0.03227768667025326,0.05096204357183734,-0.009272400733172282,0.028011795041044597,0.04251278694994768,-0.018167507490566403,-0.03453003794379069,0.008189352566391198,0.050525794554067936,-0.06872086323694614,-0.03911218611276653,-0.046863802063036857,0.024133242916884,0.021394918726394156,0.018754990412358865,-0.031720392981577826,0.011575920082769475,0.018353469325914588,0.01529333789832395,-0.0380844509980973,0.020205185592816224,0.02683573539019411,-0.00013910443663633286,0.005035919056556965,0.001926662264775507 +Hippurate,0.18085334016428029,0.006413076116618843,-0.23038905899805978,0.09904612089460003,0.2430978971275276,-0.3167041528650079,0.2107378263648287,0.06869920163411594,-0.6158731453771822,0.17772094160150287,0.18888980596870986,-0.5972816771376037,-0.1576278331933539,-0.2690357479038651,-0.37485472838635897,0.09597390197230188,0.006280618895533769,0.09883372299165159,0.6856996324271427,-0.23673990098109285,0.29707196850697287,0.0806414320633039,-0.09076678515335318,-0.4965268783004023,-0.11586169954932807,1.0,-0.07007592067788578,-0.10264214248530425,0.018281705282087654,0.3677223207149606,0.40452072520588034,-0.1596096999035451,-0.12403739549407777,0.039164187194292585,-0.3064846317719613,0.18115442377514135,-0.12498082107995091,0.13416349839114683,0.7058437672952512,0.6260731788444848,0.2178954205410551,0.18478527103463332,-0.6014678070977687,-0.08335985113940925,0.6131775437478301,0.6020991593775699,-0.17687765067133301,0.7048444576187247,0.049916058896719885,0.7208009133137586,0.2393484665346883,0.23782891607669446,-0.07129960223287507,0.02585547244811824,-0.26753832741472844,-0.06482388914725448,0.044255532563627346,0.11965656977285816,0.02258289586737302,0.12148610211912447,0.20252346866186466,0.2943649480578225,0.5396147064682184,0.056740108566741075,-0.09813656898689702,-0.022362038834678535,0.2837854404637198,0.5978506008567256,0.5013520088182092,0.5946510736892363,0.4453455436890689,0.559707985203539,0.45238835101759095,0.500049708892301,0.47480926204320784,0.4213300046988331,0.06504617231718432,-0.07330774493328923,0.550158274769695,0.5063703796506814,-0.08237745557556782,0.03636383038738017,0.15489935465853372,-0.18779999759355706,-0.16380394021606898,0.6591388053895944,0.06289564140335366,0.648660487938655,0.5990202077841837,0.7434313986610869,0.29076141438696607,0.6807365185212371,-0.5022150997292429,0.6569508873725205,0.18016408093399996,0.4305202837058963,0.3622036905431551,0.3495917410111458,0.14289409077050821,0.13933143232582548,-0.09455942488773707,0.05243610967994558,0.6546538104188255,0.6404924054916358,-0.1818098622821206,0.5899753244428012,0.030512573520778703,0.21486265782126393,0.5234911210862064,0.020962946717495032,0.0022195395717653594,-0.24999134126944966,-0.19108624574195818,-0.004305702219983048,0.5745158976988748,0.2607272600131139,0.10054459367647471,-0.08186443758803799,0.4354246177757938,0.22810139241976302,0.10894367182338788,0.13987213440743668,-0.0018151058383276872,-0.12922640911239006,0.05433232234165164,0.006552304376873112,-0.03583130408967848,-0.14687455145178338,-0.22024637929730737,-0.22797636322282402,-0.11888009822347452,-0.08953918705256107,-0.2838131070266113,0.0165364805568093,-0.030111251935051958,0.6074146395552772,-0.24083289735745292,-0.030516740356596527,0.10265572097788302,-0.03332851268249193,0.23128558900048538,0.10205113964830663,0.1936436569101272,-0.030749732441691133,0.40988496053430223,-0.3019960603028595,-0.2968064036507373,-0.30957814682081625,-0.2895884086947105,-0.12451060590687583,-0.2209860744026091,-0.4343212870356854,-0.3825877956609789,-0.32963775603280354,-0.21366000887856024,-0.35285647657215496,-0.4677593156888836,-0.2491295578476247,-0.22209234111248027,-0.21126700146157368,-0.36390634116804815,-0.3622509469811261,-0.12464455279849086,-0.14284634077808506,-0.25355945417253006,-0.2747200937791057,-0.20253357552980802,-0.17034076787164357,-0.03093300245085343,-0.30485758546166897,-0.27504583467721877,-0.269964571690267,-0.18699816844492684,-0.28673074092122874,-0.36147636183137194,-0.15215803542595785,-0.15923427239686122,-0.36422562284304266,-0.4120122874283822,-0.3531419813971503,-0.4871332800977527,0.10013785600872481,0.455532315571744,0.42501012646716024,0.47581220570187377,0.544946766164602,0.42404680544579815,0.1556898513532416,0.5383409315641007,0.5845644598899441,0.4026088312211708,0.4146926011432582,-0.37134527150121804,-0.4671174159651897,-0.4535882294377719,-0.2773595163762991,-0.3940017751016458,-0.4592101892923031,-0.39165765473762415,-0.34831753627659506,-0.4239647173343191,-0.43862024445704667,-0.39072730167827224,-0.33313165764817976,-0.31897747992927755,-0.3418815015450411,-0.44078692161595323,-0.4393389981399069,-0.2794064536912406,-0.2916119676507813,-0.2686476464808016,-0.2881016827750698,-0.33731306154006424,-0.4254602214492406,-0.4192258950568524,-0.28477251527880326,-0.24856542159094439,-0.23562724189772177,-0.2514722336331706,-0.3178502620378345,-0.3631817284118976,-0.4394645799020497,-0.19968617156733431,-0.1590796767115406,-0.21381523382309095,0.011636916039018714,0.12994960285617468,-0.0099911150266011,-0.01416202024576385,0.04980902910895733,0.09846084982475634,0.06358989931975487,0.19092677946470968,0.05406167267155151,-0.10887218203362976,-0.13957529697687443,-0.13496396378120779,-0.07762609631346344,-0.02501062207546982,0.1358730225009314,-0.009542085386476683,-0.11405389951502352,-0.06993180781103679,0.021558637828751333,0.06302175176514595,0.032214015009769045,-0.059989310316765125,0.03829520049874625,0.08043079156066774,0.08787133260648135,0.057761933989359644,0.13488361854835335,0.01810090187941314,0.10927288098448931,0.11503496884892772,-0.04767853310298104,0.04230454675710396,-0.04886980006451791,0.0005942847454356724,0.026104206996463906,0.002553210798336075,0.1514670719639246,0.06891399004519144,0.04852306157058804,0.017775188354711466,0.04282374643719122,0.08601369223476572 +Hypoxanthine,-0.064512191333366,-0.31142070155232904,0.04377771967399513,0.2182879754847587,-0.28927739021842613,0.11652252542109,0.20354963980474539,-0.21653816658561112,0.1437282177562524,-0.24843178615636252,-0.23018068083110424,0.1368690912667169,-0.014798248826535482,0.2385092517923835,0.173044603725501,-0.21400033600100743,-0.21383500685663454,-0.26150558696660475,-0.07902421734259966,-0.09348930620604404,-0.10533021701088344,-0.24056336225542155,-0.2731758325346573,0.06808240278733292,0.12728722832161363,-0.07007592067788578,1.0,0.4691106298852915,0.030222148955756162,-0.2524726061038389,-0.07394890022381288,-0.151639451246263,-0.2878872181663973,-0.23281810061469438,0.33335028096885516,0.004038964680979995,-0.1736902532143954,-0.3143568333248451,-0.15658855973508562,-0.008130470460044122,0.043056974855928756,0.1681764563573494,0.14230614328852026,-0.3001169780639939,-0.030229085518471352,-0.09831087064920126,0.13616798133886487,-0.13449383545631294,-0.1205908925621422,-0.045886872020078906,-0.15058007904425788,-0.28539513567743063,0.2528572403343361,-0.10063195802569289,0.3099758078788318,-0.04788908261037176,-0.055062625210059675,-0.0753566709643489,-0.015363962668363223,-0.18973556850596937,0.06549015108627945,-0.06945768260153483,-0.19269835649286693,-0.09833050692356274,-0.08046722442732525,-0.15927146055244187,0.011144546655029338,-0.07242109612249545,-0.13290384526407847,-0.05167827283636011,-0.06250183265367217,-0.2175610197567815,-0.28893341269387895,-0.13665827141908946,-0.2058471355681672,-0.08295269980188172,-0.139932937867028,-0.09086877513959825,0.08908048247047903,-0.04763580593182442,-0.07599850564211354,0.1999402380608576,0.13824082598616894,-0.04235933245307825,0.19386175504012984,-0.11893808751197509,-0.25240172718860143,-0.16593279558215118,-0.20101338801992644,-0.12198450059973319,-0.061615376153799015,-0.1870917648470843,-0.019351113751475208,-0.11370062922227844,-0.1972847522648355,-0.15410199337507896,-0.07136383521174473,-0.008050937459084346,0.30986391338945773,0.00056182752002041,0.018318766232620944,-0.2384779834727966,-0.2017012342487021,-0.08937378772962998,0.2779393996798073,0.02589487607240083,-0.005511179020487359,0.0028525356986756735,-0.03694858136151857,-0.08687591386719812,0.030900588253861553,-0.025971154447517582,0.15776385161542344,0.09017289357126984,-0.18910897398156912,-0.21112286832082697,-0.16347250161676805,-0.13496226413999335,-0.13719316455757288,-0.17064308348321414,-0.1565399605817001,-0.25618927441028166,-0.1296850015553441,0.010386590106756953,-0.12445378443203421,0.04990189122514178,0.21407796646931024,0.11670196938296777,0.18790198208491962,0.2239817305898093,0.2183029680326648,0.18102949349233488,0.2088537837893316,-0.1009240725622446,-0.226580079534028,-0.056516847634106686,0.13922600155636758,0.04968345193571677,0.045293712222995046,0.21126459501279277,-0.07467963510627144,0.13367581296516584,0.004585442686847031,0.1712348699191507,0.041271362515623036,0.00784110413343051,-0.015431483340780998,-0.0730604435311072,0.1712107117532573,0.20100312803525694,-0.22780287325219492,-0.10151651083772607,0.050441210438491056,0.026323289745797243,-0.10913978718752276,-0.2213980608892861,0.05943110141673733,0.17386883006512507,0.25009606389444256,0.05651232595717547,-0.16777520024150389,0.04370460427976515,0.2629046671303901,0.26590429009144423,0.2279777596654492,-0.17302474917336014,0.263967750658987,-0.1718413154897985,-0.21221595317314834,0.03319487048716941,0.16347082525963197,0.09589668760424007,0.05359665388118473,0.03316313351142302,-0.16550154053077853,-0.10503367472453008,-0.09095567987357392,0.03966613306316114,-0.0964150006456348,-0.08210605497381794,0.03235356468505985,-0.07291968674501549,-0.19136192389266293,-0.1635817159657313,-0.14376005162025693,-0.16951952392321357,-0.21229045061330387,-0.1867286501615574,-0.11983711129585223,-0.17476100552391102,-0.12774517659710644,-0.11467865055307842,0.09807560661280809,0.07018263334325166,0.07024772813882738,0.03572180132609355,0.0032466526407575226,0.013145079361962434,0.019227446963543792,0.02198560201848934,-0.029029568696592793,0.019013268932585026,0.053325544774562375,0.24064213350701835,0.1463782295462537,-0.029060945002606014,-0.010171293233621382,0.0452952334397143,0.23672675345167454,0.25553588055700543,0.2678192565635848,0.17190461851159541,-0.007413293748676627,0.041896129610887636,0.0503375418597864,0.2502370280614561,0.2563031393083372,0.3350570038619847,0.2767034380321726,0.2059600127905151,0.022363727049948445,0.034846887846019775,0.30589241927268646,0.2889412717992281,0.29225730933207095,0.01714123516356903,0.03531722702876563,0.05430495596642645,0.0731611960243446,-0.02460061865884022,-0.016827740354250803,0.021295384823692354,-0.044202861843401886,-0.05095975077267406,0.04715720673155463,0.06595919381533377,0.07002314099742114,0.08339338551634684,-0.004105945177439535,0.02680824861413931,5.116098185899582e-05,0.09022618729706554,0.026712153970071626,0.01742480860640329,-0.07280541093092019,-0.021988914918550366,-0.011010197631890362,-0.08266985274125076,-0.07362574954921892,0.020006647739960772,-0.004224876322312584,-0.07532676624524247,0.0067424857000454586,0.008236724173538375,0.02223914961735641,0.027400407090966344,0.007145885273921636,-0.02325460852265548,-0.0434774755469727,-0.05004743022469508,-0.033218044423920214,0.02311020248209857,0.010825912484330343,0.060002693750072535,-0.008702814841920455,0.04307470058521575,-0.01650220755804457 +Inosine,0.11803005698868585,-0.21636946317723735,-0.03875782511959897,0.23652494107583819,-0.2587371005897771,0.0750549815532493,0.1302153636600195,-0.1754718203153612,0.1567034467303128,-0.19813135802858742,-0.19349919526340448,0.1387020285398766,0.11864944439886706,0.30617427788369905,0.16082184905894883,-0.06180832423825114,-0.09991592323682323,-0.14618918465368314,-0.1247736105569515,-0.13049213072681765,-0.020324015257939726,-0.20155298886629006,-0.20990310805282714,0.08462144146209594,0.5537023300228994,-0.10264214248530425,0.4691106298852915,1.0,0.10579150478685867,-0.18052202251888178,-0.06147012666006704,-0.16143527404445396,-0.14983007330430867,-0.2217096072585735,0.31874673222494815,0.06918221822925072,-0.06639248836017042,-0.13918573694546083,-0.19772116759564515,-0.12316471547216613,0.07438593051624336,0.140593631695171,0.15421600985803838,-0.22801278986485354,-0.10955033039985618,-0.19395847601470936,0.19662435138674259,-0.1732343079762466,-0.04607447174703478,-0.058547732369057366,-0.1314518121350597,-0.21127487269828257,0.22683199090127606,0.009259320097549727,0.3134668918054854,-0.046085255364568624,-0.06815542934521639,0.042845682758122484,-0.041096047956974996,-0.17572465325746825,-0.030200019087734266,0.03433105158560256,-0.15263117219609437,-0.11018591938931255,0.011227949828030246,-0.3027682633885656,-0.0676343141420793,-0.09664599103129365,-0.2721394107621577,-0.005032271093643039,0.011605956342328198,-0.19931255843121792,-0.23805846795667318,-0.07198343415779003,-0.13961388878804445,-0.06750089525438839,-0.21600136794295502,-0.19362207477338203,-0.09477642062665777,-0.12183855191418308,-0.1399455955989933,0.14730562763560726,0.09851939132862186,-0.11953473442570135,0.17966803485660912,-0.2216616566185722,-0.15787203078526177,-0.19026745295917669,-0.15870299797093113,-0.2275896542385916,-0.07376749922361898,-0.27498815218784295,0.048276055152034744,-0.17185379244631457,-0.03981310989403073,-0.09494994095062244,-0.08132690220451207,-0.07418631626427724,0.16194208339667265,-0.03185366271097161,0.02174447630205833,-0.19916673268162452,-0.273265024509136,-0.15647796642939404,0.27551478967996035,-0.013683117687347169,0.2391385923199452,0.021169571006593363,-0.00711608012395263,-0.09954434945453051,0.08613091918226397,0.09123711317220248,0.17888271133787192,0.08062990931573566,-0.1962222461291568,-0.010832943521456648,-0.1451083950738904,-0.1448066336709773,-0.09900290387258788,-0.1765680215782684,-0.18721380854209596,-0.1916293667031051,-0.1744799664704546,-0.10051391240788093,-0.13420088514372464,-0.11092408640684993,0.054981866021032076,0.08686545808458347,0.1020261098419103,0.14852527661376283,0.15634995590925982,0.14115715147660543,0.1940336594564124,-0.10327498443204776,-0.1997465229138018,-0.12516075235345248,0.1807136882550631,0.09685900699588752,0.05971329148876928,0.15772766692168166,-0.013293924342827331,0.12269843895801778,0.0025488939025089417,0.16008937223238945,-0.03915711999832041,-0.00015311189916201865,0.07473130879870746,-0.01862718919166785,0.15922729420323842,0.15138067634293248,-0.18227950336488136,-0.06475889457123314,0.1326102002014954,0.015806797757586963,-0.11713237398310793,-0.143555200371586,0.09738627736241372,0.1438042654546839,0.1983697865423907,0.07021088655136799,-0.07802672751277845,0.0764535836574858,0.1969870968574194,0.21720935572654498,0.23463863999510945,-0.0889246085637082,0.24799157737661592,-0.11891765034756616,-0.1508058177007895,0.007881662854669992,0.08379929372564093,0.11062724835979623,0.05858363860919777,0.03859896855297806,-0.09241248067087675,-0.03624831999626974,-0.02363288366830136,0.07877847125237879,-0.015461204767150712,0.007165283394458696,0.0922872449351527,-0.09048394249374633,-0.20025983265116234,-0.21376370461488642,-0.1503648882436158,-0.1966837036250372,-0.21735500205422184,-0.13549494082338953,-0.12142091994684036,-0.17855496329710066,-0.0906316606822744,-0.10950982102234622,-0.0005796320994011249,-0.010865231944010536,0.05017058575306173,-0.06281043341450399,-0.09546618935095118,-0.0444705556923929,0.009564155867631183,-0.053461508795299,-0.085314368345196,0.007020894649308674,0.06027071989216254,0.12402034064314706,0.07718351207542253,-0.06108888382521291,-0.026778638416824544,0.038558695539097826,0.12076172646054784,0.14160188231925167,0.1509629650022801,0.11088342813540003,-0.03993771273587608,0.01869717036514937,0.05497387022904457,0.1676277231369185,0.16926286923083791,0.2277804086803158,0.2018138376729717,0.13169137860097488,0.005947999974337501,0.028372248314082808,0.1947154007660244,0.19161051026702075,0.21433559465024718,0.03975035710782566,0.10392583394761497,0.11474214392474524,0.0421075079603505,0.042949386396421894,0.007806396747835831,0.058685808353945164,-0.00012057373838731425,0.07439035762607511,0.0643845650507016,0.07601715256059577,0.0673317755715871,0.0684908479108055,0.10698487070684431,0.0775341293571258,-0.022915130914409894,0.08723780419986844,0.037644078379170574,-0.024869782911122844,-0.04979612263231445,0.015015730857788503,0.01976842992356105,-0.05405775361978419,-0.06255694185658799,0.011509031170099162,0.06249105727809394,-0.0845975737545417,-0.016551204322488727,0.007341155147514414,0.06993079806819233,0.02670812035757843,0.042607564396125175,-0.06164704935461621,-0.04455399235693993,-0.023130441762117593,-0.02281797046018844,-0.020423439687075173,0.029502979663023298,0.021291521862533965,0.047475416869647596,0.058168023710642,0.010547053988682524 +Kynurenine,0.14609948526579455,-0.055675800145025045,-0.045152406710528704,-0.030833472959465303,0.010109023545200572,-0.01429796904852074,0.08181102412471619,-0.10177442824601454,-0.02723279172187916,-0.02034038095199487,0.013563394216255766,-0.050551149936287676,0.04161233620712465,-0.03036409269345257,0.029357158366176264,-0.10591381890699011,-0.06555904467066495,-0.08894049464790207,-0.04596210366579979,-0.08864623449112397,0.006073004812788168,-0.08720836562967825,-0.10253675234637816,-0.03729453886932318,0.12275817372421936,0.018281705282087654,0.030222148955756162,0.10579150478685867,1.0,-0.07244348850081327,-0.0002464896605382133,-0.10480457684421277,-0.05416180138378745,-0.06285443393400215,0.07686361150556562,-0.03621967934875768,-0.018719909308889036,-0.11199365835402587,-0.022148977942368357,-0.08011090587473184,-0.024356756877378174,0.04024231144294832,-0.045578296639233205,-0.07224934684017598,-0.04360837821293786,-0.041862884086781856,0.010496090420491006,0.0033606734390042884,-0.021986305278188307,0.02369791886329786,-0.08564440618500226,-0.002289334069294112,0.09507696652276867,-0.043968719339592774,0.1565691605243538,-0.013362571189394249,0.07297971425729646,0.05949828396005414,0.04347308260012376,0.04055867288992258,-0.06428493870937778,0.016923342275699936,-0.02025597647195019,-0.0017420048872086027,-0.03381270754496295,-0.07490791132186145,-0.11895242596510291,0.033036536981293135,-0.06248942847287653,0.0033088167474187363,0.013740459010841357,-0.0295640070723154,-0.03196188513754681,0.017695424667959564,0.007295732815152819,-0.13054654622707665,-0.08045638557383974,-0.03902657542664891,-0.0302615956948679,-0.0031555359391253045,-0.056636674184044965,0.07760215532922661,0.04177272613974836,-0.04475161094679387,0.08381241189683027,-0.027024969715880327,0.04693087486015183,-0.03442321763644413,-0.001838418447994001,-0.06663048559175357,0.1780580310009816,0.019929234299265068,-0.06738002040151275,-0.02310573488144446,0.14842046607521087,-0.06143533690820882,-0.058854723304467185,-0.009524569595882324,0.01691412495728518,0.053863329430358806,0.019302110440838852,-0.08662110308509433,-0.05611765811771756,0.02877587219293676,0.0400819402202549,-0.028243348936533876,0.03847430355353157,0.07779100449554757,-0.05370049953871619,0.05613948026932297,0.04116392737124928,-0.029693231935984762,0.08050773789853208,0.07942393483341031,-0.04666207155601085,0.03755455392634376,-0.08094211182672338,-0.050287989074584837,0.0013271047211488953,-0.08195687058164937,-0.06188739368111659,-0.05374789063938578,-0.08039734428540878,-0.037554914915926725,-0.024446004402676094,-0.10817981214624764,-0.008881622745253594,0.005634514679343658,-0.0030248574018012643,0.020852472780021978,0.03764196808829893,0.018019764106263894,0.02324569752328451,0.11625563744589622,-0.01632036570667502,0.022887014293128647,-0.006886340449227031,-0.043580799381680246,-0.06264366547307226,0.01571864701245127,-0.03126750944893667,-0.018056051292985105,-0.01697333761434557,-0.005239528135958581,-0.02294235440112205,-0.056586705079853875,-0.0017894817089307879,-0.01898495867321543,0.04239631690558688,0.006393988680745029,-0.09113444201456852,-0.09534737654910984,0.020059958814739435,-0.026820704405479925,-0.07416826505504068,-0.018411391649197435,0.0322313052291284,0.01672215027583289,0.08707525713736246,0.048733360247933365,0.06408171462219239,0.04752238494872507,0.0632700259812026,0.07506778993371797,0.13252212132962476,0.00077012597767498,0.08505233814200355,-0.001280554153231086,-0.016693349682702977,0.024090830836900442,0.030509421682966154,-0.03745742932542424,-0.022093784634082767,0.02982419348010781,0.0536154171153681,-0.012652834869121854,0.003354938788955928,0.08992771803603342,-0.026756319588687853,0.02447486991276477,-0.0019034123779177298,-0.0008403040544091338,-0.012665219543138833,-0.026623581171773002,-0.009805119552731448,-0.013672708835155459,-0.04286802807430765,-0.0007711901190004944,0.010712420201673956,-0.014671455679904364,0.01268337219240675,-0.00024175247430841177,-0.05202105627663143,-0.08478511271422416,-0.0687926610027957,-0.0473774911225857,-0.08027866958782194,-0.08367044090454433,-0.04366519943013731,-0.040325703521311033,-0.06073629885696096,-0.04193962822144043,-0.008578105916139386,0.023250105940382806,0.02213308652607045,-0.026797054246352224,-0.013128469215082744,-0.0172786257149642,0.0397172525552222,0.06758838701227785,0.04206086062842664,0.06365428762950284,0.035544244579567584,0.0125772952678214,0.0166874169975208,0.09549098408160483,0.0890904311636385,0.08641941034780377,0.07403366160972678,0.07669547520366182,0.036796136886207996,-0.0031660221137964103,0.07966314653500804,0.06971040012271365,0.07497055782782266,-0.054902631856426576,-0.06198551776130025,-0.03623628824456695,0.0004859978728429488,0.023483265485780364,-0.0009471724375842575,-0.03258738366796407,0.0018900729708601963,-0.027618385977758775,-0.014527192511502855,-0.07630210082790839,-0.1062637174221931,-0.08636921134278598,-0.05961320699754177,0.0045821470416209185,-0.04946879693475867,-0.06678199415781885,-0.07607579380833485,0.10333251353277641,0.002174241440529042,0.0028842810065877835,0.02329884549339124,-0.046380574300613306,-0.02209818987026789,-0.025104344571974864,-0.025059308874667115,-0.07751641131439925,-0.06482791990506497,-0.032537441258623165,0.01087020113877485,-0.0485700083303546,-0.015018519732102869,-0.02677245642577897,-0.016175220965749488,-0.03905278238387479,-0.03486583303247089,-0.0091045258811876,-0.05631624297246799,-0.008941798051973607,0.002444072685666893,-0.019843186034725242,-0.018873262972459174 +Lactate,0.06168871334300082,0.2680553043705692,0.06957681805982058,0.002699898337875204,0.42043579047637825,-0.23421836163400625,-0.1691549600151042,0.34072473171510326,-0.1676475199818082,0.3711008524098986,0.3876541234717101,-0.18056440933397586,-0.09784659991147864,-0.15096167369786817,-0.3081471347363041,0.38083412086618823,0.10342607731219387,0.24684421862498,0.25643735367964887,0.14084522278219652,0.4210800696055776,0.3415993512682228,0.28026631272388425,-0.04995230268950877,-0.07388354002237325,0.3677223207149606,-0.2524726061038389,-0.18052202251888178,-0.07244348850081327,1.0,0.1730095190454639,0.2617235279651771,0.31766508041284075,0.20485866590044996,-0.4563697954070883,0.05875675484397331,0.08969893086990254,0.44562062307297345,0.42299678351151754,0.3457614675771855,-0.039505482904663394,-0.08532665888166219,-0.17694265972240886,0.31381818236244063,0.24905457764202718,0.38100338711732246,0.00952412876530328,0.46133346776778,0.05110516564004561,0.2358541815427386,0.3653790447755136,0.23179269218563306,-0.36495681557846166,0.06356796046761537,-0.41921457342573093,0.13569926374914795,0.02288304468185194,0.5563116112249014,0.05441386828479953,0.2760734700239755,-0.08616042669650258,0.18361264817878498,0.3697414487446827,-0.13221892472042276,0.050805600360717094,0.05330740827701694,0.051679074149386134,0.2262096710886921,0.21268352947760402,0.27331727383298987,0.2740538508285688,0.4281910545817654,0.38860596561157323,0.3559322202076884,0.36959370454451607,0.2982194110467004,0.4098416717487659,0.0406501905846851,0.15407333148663954,0.30778703604106894,0.11459057870939403,-0.3283204450090191,-0.07966921817566155,-0.005141146611982804,-0.26045246263978794,0.3277380473708911,0.13598685523847714,0.4720886358125311,0.4801696243575896,0.45726722591512164,0.12142711632386798,0.3210340243943868,-0.06525830684997709,0.3189940341502032,0.27944021322935336,0.3785509528713681,0.3370994030427368,0.07030352350111987,-0.11739253904649563,0.001088769163597639,-0.09172593438814466,0.22661480264506614,0.426041591757263,0.19740795578900186,-0.3723321880906909,0.15946150434335143,0.19390646288472865,0.022425365927190646,0.487668833463568,0.03518269088826733,-0.030696106053381775,-0.11488642132380274,-0.1891336039646323,-0.13405873982537111,0.4613764112202769,0.2517071438195076,0.20453857853034077,0.06967406547111707,0.2940735950155016,0.13124699821774008,0.22313677746929703,0.18879245178320758,0.19026557514964093,0.049444519774320725,0.032633154786064655,0.10675274497489597,-0.1516265643666056,-0.19141593413897656,-0.2188860176130655,-0.24986008964418918,-0.23754263319485142,-0.1882752086753434,-0.37453374194391564,0.05962393702343891,0.31504540544319765,0.17263405887823666,-0.2874091063032853,-0.07135805977351364,-0.05976546234351799,-0.2854859370824544,0.15467057814849672,-0.1525302887934021,0.0821227361593209,-0.2579754056915059,-0.016953261355217693,-0.14661606801136387,-0.13187903901376727,0.03603710517512256,-0.2767474358922451,-0.2791194518794397,0.14565682279690886,-0.0996609875342275,-0.23418280210219408,-0.1600069597930354,0.03150340497695259,0.016608980553037174,-0.3262003835754899,-0.35500284294605755,-0.42674465374684145,-0.17188145623052742,-0.03838256421428111,-0.2417235983479215,-0.37875557898007295,-0.3737772474759252,-0.3712298668865946,0.010196770530514343,-0.37449080199017815,0.12154164319408255,0.23520311068004957,-0.1483798174512962,-0.24371821003054495,-0.10546356374227578,-0.10998676018801322,-0.1559874073872404,-0.02467596594814834,0.017400402726762347,0.030284691063899274,-0.25793013985189683,-0.03567530467110091,-0.06046639677424774,-0.21547479883103646,0.0018396898362620195,0.18987234233495015,0.17864893164741147,0.15030503261506786,0.22206423780317064,0.22214021311811416,0.07513489988453276,0.16811468869707966,0.24385556206960923,0.11686111070937205,0.1443060758776116,-0.22719462802639623,-0.2293595671913712,-0.2713400965297536,-0.11579871533790909,-0.15741782149958183,-0.1965330183597807,-0.16471475299377564,-0.1862013680607888,-0.17067076372084994,-0.2102103599462646,-0.2021190677622743,-0.355260022849832,-0.29601365713699324,-0.17477463582190453,-0.22870245685503976,-0.2380836110748834,-0.363201352191238,-0.42647321727438475,-0.3719103289094472,-0.3144783742563244,-0.20459354682441072,-0.2471842149164384,-0.24560255506226522,-0.40066597206881077,-0.3904316220735471,-0.44304694336283146,-0.3744161056567897,-0.341327210098293,-0.22800465035848147,-0.24653112969295543,-0.40568444796956116,-0.39219451907175734,-0.373426343360931,-0.011952663666411624,0.026653982559810562,-0.01929553852153379,-0.006172076591378403,0.04194834120066562,-0.021010868103186663,-0.05389000524856934,0.0653067326828549,0.09981841572631833,-0.001144458536211039,-0.055583896887090804,-0.08274260133950354,-0.06529342517976512,0.08138781956879988,0.0006034213510343451,0.04788207739839021,-0.03276210506424327,0.043510319954458775,-0.0817558856093074,0.10919353670855969,0.025792606154454438,-0.0426012656844799,0.08709847228608046,0.10834426749451323,0.029799116371028864,0.021667744341795983,0.13919307600789668,0.04566545639997275,0.024103607629938746,0.003228318008046248,-0.019220825007524006,0.009024882072661947,0.06059118388285077,0.07996365862885844,0.14097611994215242,0.10910309042169625,-0.007199050638320602,-0.03662780187759845,-0.006202738918441528,0.035983265009510136,-0.0006646269351930821,0.025782014744089875 +Lactose,0.12310988579662253,0.1380356637914778,-0.22349159758932333,-0.02841661759383075,0.18261212491884254,-0.21848830889591933,-0.02603141922718177,0.14497723436357762,-0.47795814688747296,0.1311056087362719,0.10924840393889655,-0.42790948335707607,-0.14450059208870292,-0.24770598148287565,-0.312958073222985,0.23711419118736635,0.06589742942109872,0.18709531698127346,0.498497016510252,-0.07302729217841641,0.15229179454084146,0.15491743521341175,0.05803005292890211,-0.39010811089664715,-0.05558728719751216,0.40452072520588034,-0.07394890022381288,-0.06147012666006704,-0.0002464896605382133,0.1730095190454639,1.0,-0.03264134078553301,-0.016695862543084704,0.106300956074712,-0.255175207744787,-0.06618155050138215,-0.03969908726876836,0.2674629764382195,0.3949985546956912,0.27873731187757855,0.6833472716897058,0.16152939090897964,-0.46804038699325373,0.050897696985771894,0.3589318196022644,0.30594617879682184,-0.11411582468059946,0.4651758196223043,0.16158410656634636,0.35018315789865595,0.21244507453033307,0.20022910133135186,-0.060571241151740424,0.07580840562364367,-0.24218865063616632,-0.04907537455819922,-0.03709850378385371,0.01061172884270027,-0.004780486823880846,0.064416948032821,0.19929900596803535,0.21325418891969586,0.402431540271301,0.02909821986891353,-0.02994172570603573,-0.07949343798731207,0.20011748224803533,0.40000852047397784,0.2934500414007771,0.444757045679763,0.3478431640048219,0.4253278675889883,0.3260188891770103,0.3750892099155489,0.34755125914175306,0.3041406599086099,0.0017837253948351087,-0.16982494953605787,0.1647476187906689,0.25557680781705483,-0.14650719597510503,-0.046645714561607834,0.030529591880153254,-0.10108694034148472,-0.19577471149539735,0.38403814749271015,0.031497556873626424,0.32909511192706786,0.34693866920039024,0.3823684715787215,0.2003615653517924,0.4607466561036115,-0.318027507107634,0.36144451107807274,0.08473940476506595,0.36262630638382226,0.23795808458305254,0.15669451897302897,0.03605377545226973,0.07048981859012049,-0.0949013689400957,0.04499896715889707,0.39269645373117507,0.42592845701351467,-0.16427506850991433,0.4285428999320845,0.00761988489746047,0.23902928324008452,0.31563233322607603,0.04651240607020131,-0.045050289380439604,-0.1295996278483361,-0.21871709749170856,-0.021203857827090465,0.3743412801668194,0.3008755648687211,0.004364453684111362,-0.09062690938471828,0.36685060498605576,0.13276063402508922,0.0013313908923841176,0.04061829303187408,-0.027502197110295692,-0.11827962761625344,0.054891347588174925,-0.07508605934609411,-0.06536208886527915,-0.15169366801317555,-0.20729170026336569,-0.19039852339897273,-0.1350856785326751,-0.12306944316944828,-0.2683519329597964,-0.06960294435659962,-0.03292695071578803,0.29782581271684405,-0.14296304197691506,-0.007854381027907469,0.10674817392332882,0.007888295855386043,0.2008424519248371,0.06553434705587559,0.1542150010761527,0.0018700312599172874,0.30993747502407554,-0.16782939988587853,-0.20954242324704508,-0.10305332048781629,-0.20529535720380088,-0.11828066059083507,-0.07826546901410417,-0.25262761469588996,-0.24249265531848047,-0.17427607438585832,-0.09730489990610318,-0.2027699445727617,-0.29848304604861753,-0.20067028657073943,-0.23013726447261776,-0.17568340775566357,-0.27004411846223214,-0.22048100009376556,-0.22584994207613743,-0.20606233523914771,-0.25450871644561823,-0.15577837005169265,-0.24584873775258081,-0.007857157887520517,0.009276725320190644,-0.17594848798739882,-0.22864801315601324,-0.14561191252382424,-0.1164500616229649,-0.24032536327125284,-0.2143242607401003,-0.026285056454628437,0.0547080595557816,-0.2573351953826373,-0.24627885153393142,-0.24943583241672898,-0.313912094878298,0.11090867607679089,0.37217762276590055,0.37886578447814645,0.3370382925152834,0.4161153411450745,0.3234860092902216,0.1651631765655981,0.39371310204010407,0.42386804373671977,0.3309479535843983,0.2979444347191348,-0.2561318745986938,-0.2856434359298602,-0.3092480727327884,-0.16869931844842748,-0.24928415075918256,-0.2624221539548013,-0.231637097644825,-0.2219450990063907,-0.2545564741440881,-0.2539225975512269,-0.26239454571059767,-0.25366533975379973,-0.23975766173525706,-0.2107857561775929,-0.2831415635630895,-0.2609004802062133,-0.2197151808976556,-0.22735302396287493,-0.2269999517989167,-0.2427399824884402,-0.25374333357061085,-0.29027984973128684,-0.28822032467620756,-0.22082201985547337,-0.26123702241537056,-0.22325085865153715,-0.253327947290386,-0.2705782711142963,-0.26457501156157326,-0.27269060055258587,-0.21695465684648577,-0.19733774612124436,-0.22132632585346562,0.06235159504391612,0.13507271548502414,0.015593419485783758,-0.05074318622372866,0.0386124465406335,0.14876463222763633,0.10999904731985327,0.2367610814989559,0.06002840755471159,-0.10126174537389009,-0.08890602243776952,-0.08088746626375692,-0.016875614280604516,-0.00026337180987004937,0.1629808346120835,0.028162939140854375,-0.050930662129773215,0.010519680383709514,0.013486634488041554,0.07552067968917894,0.07676407289858596,0.008314428654219125,0.10754851677689385,0.058999007756495636,0.10493689653288485,0.05897148527754472,0.15350195748538656,-0.0030107402050479036,0.09844089817485721,0.08689485816444348,-0.06584501275238519,0.006516546839755581,-0.0088545459456746,0.04690604204489815,0.07881098785884157,0.04408005556464267,0.12204176571417974,0.1211539054528195,0.017689701768089778,0.050205326888448344,0.08865977377397494,0.08154662745593416 +Malate,-0.006395575990983143,0.3011808260245434,0.2490188866505853,-0.2377937561713487,0.5213776118685115,0.020855021710755015,-0.26488171043717357,0.541893646420862,0.3202547888413004,0.567438889488219,0.5447662238402865,0.2526409101812616,0.04508474679871653,-0.0201125622722267,-0.06380268466847686,0.2180974021769178,0.19408402897244695,0.3523926384474062,-0.14143203377040753,0.8605487175173142,0.15992742388817943,0.44748860202909985,0.5210897072088331,0.29466881787742677,-0.11108203022315338,-0.1596096999035451,-0.151639451246263,-0.16143527404445396,-0.10480457684421277,0.2617235279651771,-0.03264134078553301,1.0,0.5472614989866124,0.262573785797001,-0.22715893114426808,0.05501466348877315,0.22895796629076565,0.3118918523514263,-0.007622370606020625,0.10678502827569632,-0.09855203468431288,-0.20183082296091012,0.275259677073342,0.6373424653896527,-0.04643786632428593,0.05014074752869232,0.09202534362107428,0.011908036011449272,-0.024853661525794844,-0.1763536141884048,0.1016769531934914,0.18896836781979423,-0.24221053243756066,0.042830674054654495,-0.24247920874990836,0.25298675925806896,0.11464139976364424,0.11578416188072814,0.06672950155427074,0.2841407726810263,-0.0610148965335442,-0.07553680914935006,-0.003124722095681318,0.33614120574778833,0.3787430757825282,0.21108894349107774,0.10035262674178917,-0.09798957746749594,-0.048823881551907075,-0.17113229854969747,-0.11732064096249521,-0.0036140777749065103,0.0193785444711275,-0.042430115174025826,-0.004126053513186364,-0.045285964528227966,0.3250391302889954,0.1733905815162327,-0.09205058971757009,-0.022737298178088387,0.21767453420061358,-0.23840961892928367,-0.08558241608845012,0.194134278473516,-0.1768572090863719,-0.05130393082306116,0.05750893505038104,0.039107350816766126,0.03504413744159251,-0.021668693839312594,-0.1177548471031523,-0.03173806120756392,0.32744802463939104,-0.04881469631154629,0.06842717575692983,0.0468947248601814,-0.00980915369939838,0.011550309992820945,-0.16811260159885144,-0.0007865802021106077,-0.019189099015794304,0.2248623132383926,0.050772470255329105,-0.18987336563980825,-0.22605787970047564,-0.2279539629793906,-0.01710601258957258,-0.14079054499639254,-0.014955027210449398,0.08358234205753079,0.02862073317307364,0.056730457899530455,-0.21280748724326054,-0.0025184406504174485,0.06786964325414034,0.013963906048017977,0.2865065326393407,0.23333466610789239,-0.05150317197802512,0.16050834339466163,0.1610661813126245,0.1539162210401668,0.2932331472918994,0.20005388184017778,0.10799106344862468,0.08220854473670833,-0.11260705091013698,-0.07665939982621525,-0.08144829728745058,-0.13165723980044033,-0.20209822348484122,-0.18206052443326595,-0.15455123431471057,0.021801214589828134,0.2831022354623899,-0.12096645118624391,-0.18202135587994034,-0.1424173737050611,-0.160632595327167,-0.24921026630024198,-0.08182727694082968,-0.27856609540728244,-0.11312604505655317,-0.2827849536276006,-0.18908186602121932,0.08631133773704228,0.07227680876966396,0.15190588783043027,-0.0957840472945719,-0.12001043511615256,0.24252774797930085,0.20213473526064624,-0.03854619033532025,0.00633314653592981,0.12650721013358895,0.23320643210419734,0.028268836137284283,-0.20425483586733717,-0.2543334744635628,-0.07960207641498666,0.20041336455427716,0.03295572741780174,-0.2316753637385231,-0.28466450218752454,-0.23582021607915646,0.1841227972402991,-0.23480087467491983,0.06884438557103162,0.12885079915797418,-0.045484290518518544,-0.017670697991166214,-0.007623948848883494,-0.04746193914448846,-0.031752545499390786,0.20499835432839275,0.08864311872943688,0.06304291750257315,-0.1075464497886818,0.11708133081872567,0.024237605881372352,0.020960976684918614,-0.09747530031420787,-0.0649328562338244,-0.10062863997942877,-0.07610523450320117,-0.07018589433089589,-0.05817173988772036,-0.07952476814944655,-0.12169013641211053,-0.07310064634198982,-0.12123593169960115,-0.07382959744608263,-0.10482980088601422,-0.03899092225761455,-0.027235471545928362,-0.10163993146667574,-0.024756703451494555,0.03102291693846339,0.05694442855533545,-0.0987309487086465,-0.01940879169993686,0.008293915485667925,0.02326717070898044,-0.26931764923954504,-0.2363967225108364,-0.09016963102297325,-0.06064846567220167,-0.040171420168293,-0.26906609657458724,-0.3241353227852886,-0.3029268972443588,-0.2818104715660257,-0.11898933227524945,-0.0766917486570306,-0.05497818200666929,-0.19638290001485567,-0.2961193251790771,-0.3240669128502356,-0.2965896674605001,-0.26341894603237187,-0.11681806077342337,-0.08195917448975998,-0.31667458338026183,-0.30886426654323723,-0.30757513110387363,0.042542246595967406,0.03402050322834768,0.021237480299937335,0.023593113475285706,0.04625688209069197,0.01960765515528405,-0.05681438228730247,-0.056867146283091606,0.08059649940408471,0.10193798899260362,0.08132371843442777,0.03978866761692663,-0.01747771292702461,0.09046801773553549,-0.0552546497925733,0.12959665076922458,0.0668621877807379,0.13642209201637484,-0.037622724138843475,0.030227249024454464,0.004347258465303181,0.0062077210086055505,0.027367282674120183,0.0026037934743088787,0.002361704648921036,0.007398471599921171,0.024781975291795356,0.03323418833829414,0.02061992162101468,-0.04031920312296137,0.035521914399361774,-0.00605672300310497,0.1223995369828786,0.10517406070541797,0.09646256669448898,0.0753912127719737,-0.05719334459882104,-0.04254995022300491,-0.011918605314219585,-0.012784545464373027,-0.08994022889352052,-0.08608805259985415 +NAD,-0.03925885616923651,0.36725164198954097,0.2716138873807739,-0.13068805324686122,0.47409626212343103,-0.002419071641578528,-0.34145720982061417,0.41983540430423977,0.3136690954995778,0.5322235215352296,0.4992590554684192,0.2119601887575299,0.02186568492273923,-0.06379496269164492,-0.09369910577200241,0.2919415179828831,0.3250811160514911,0.47715940589494277,-0.2043839227686024,0.4337324896138826,0.22519644064477745,0.5418956242981974,0.6828848815679742,0.38604171139719784,0.002154304986313673,-0.12403739549407777,-0.2878872181663973,-0.14983007330430867,-0.05416180138378745,0.31766508041284075,-0.016695862543084704,0.5472614989866124,1.0,0.44089640325722246,-0.30654611367868323,0.1700569214635234,0.28616127711356215,0.34585413526093045,-0.023031229786145472,-0.041549076850081676,-0.09794889401630132,-0.22121386101777388,0.27529849884830176,0.738174311536425,-0.11133437058119287,-0.009334746642363948,0.056008957905197936,-0.04863389354664856,-0.08980647293305394,-0.17328946311770585,0.0757523006688467,0.27315968253343575,-0.3425959365686005,0.0731822451169901,-0.26286343731104783,0.18984731612781017,0.12370817717799855,0.16371303646219687,0.15409067602188278,0.3134538539605157,-0.23761575871107113,0.003916957861307752,-0.00582073140450871,0.1390736204702377,0.3272482536960595,0.1412798707221207,-0.1748395953034113,-0.10159872842948402,-0.1482640934083998,-0.16147587608479205,-0.060475836149803085,0.0014859630114066305,0.03874987605929191,-0.014290718580292993,0.0331515721505148,-0.03799364713650019,0.39273763835498515,0.16786316937528034,-0.21572293950902363,-0.04678346169519862,0.3865927559674356,-0.3022165084528825,-0.14490374096638486,0.21485481069812448,-0.1695640540029378,-0.059636547442507896,0.19967361789797275,0.0671244809238546,0.11346806901665149,-0.07195291236348274,-0.09201917771044957,-0.11100545157288177,0.3618492236532046,-0.11781919676999578,0.1983369813923505,0.030738164056674167,-0.04880353879667179,-0.01701805398086205,-0.28271918213360625,0.14448960826048388,0.005584490035501349,0.2639241098145256,0.029052623755846524,-0.2100000131092017,-0.3249440330078807,-0.23174323894484605,0.1976615064604998,-0.2002554547098199,0.019317509554696095,0.06616479811915672,-0.09325966782775612,0.05062150829720251,-0.09954527027682679,-6.802056446203132e-05,0.011759977513037973,0.09668043291679804,0.4019409465663748,0.20147341451787676,-0.03856977779891282,0.25224070306095575,0.32154622693314994,0.23171006642268718,0.3120365444751648,0.2149829961415633,0.15112002495800692,0.089825235826809,-0.14617854540418593,-0.07806277609982404,-0.09539064020714544,-0.1551005461638312,-0.21031052945895884,-0.17534938816484624,-0.19182789030242955,0.1021187538097343,0.5254850937391286,-0.20575733086381176,-0.22055738451347584,-0.19404568751466209,-0.2317435360547089,-0.34329521295690446,-0.09519243006880956,-0.33141641493383966,-0.17659853926964794,-0.35592786188280334,-0.28006060587441667,0.009111288748967999,0.04958437022529446,0.14044184007164043,-0.20157389331156536,-0.19288140596009695,0.2893938062041238,0.22562718890812977,0.0282273699037711,-0.013136891347455684,0.14168184021294927,0.32364482660803,0.05083232736817306,-0.15502331216629547,-0.25383252662839767,0.015591492383477398,0.3139009338230753,0.09554788838359148,-0.2653268051424494,-0.2840476448338002,-0.21422078578736137,0.2800386129980242,-0.2715073780236012,0.17184728201881538,0.22188510370877443,0.04373277675878802,-0.07985291545707862,-0.08630736812315137,-0.0980657132583618,0.07853017963896636,0.31403731445144967,0.1762721365568513,0.17431146153340546,-0.12770896168261456,0.1042368404331531,0.026634552771576364,0.01229428285440495,-0.07021318690168685,-0.039716152518316485,-0.05365354746402127,-0.07601580665907187,-0.06543022751815289,-0.014204843564299442,-0.0008780158716006155,-0.1101682613052045,-0.05351739889467797,-0.10480467799690439,-0.08273100323525782,-0.13504410059375188,-0.05146666296921746,-0.03507023319294413,-0.11048504274633215,-0.02787094597780996,0.026491177505010663,0.039363477823689506,-0.09059303112462784,0.0148020790215561,0.027590809868679768,0.019482719730067415,-0.2862270255677466,-0.2452860317473109,-0.03671652866628253,0.01094059287025335,0.0015386558154551915,-0.26118757060875253,-0.31950277014023276,-0.31457788556881316,-0.23845363480477097,-0.022362136573102504,-0.005818570687265384,-0.009837057946818025,-0.2222624828360625,-0.27810097328700295,-0.35859840667348336,-0.2988858556466334,-0.23547799863750107,-0.025526435885997876,-0.0029568935661922553,-0.30708930571568865,-0.28785721579975193,-0.30666574458474993,0.01903564314952891,-0.020938850052395083,0.018350503322501238,-0.012146525584308236,-0.0050187176611884285,-0.055522934518006925,-0.0703629172855793,0.04359204954672074,0.05768521156036227,0.019818058982133117,0.0020477881490010485,-0.02048345886707256,0.010662231127806471,0.08195504965549971,-0.0611339938638442,0.02801759024269542,0.0008721606387637349,0.0296970811768127,-0.08409671925312567,0.022669454723037493,-0.07561129728434957,-0.10349286596221997,-0.002564892209310501,0.05063229220069242,-0.039874636269010486,-0.020867908966721464,0.08670087940123831,0.07165418216361948,0.09386312936357659,-5.7809823204399214e-05,-0.005102469834424969,0.0008643055767909761,-0.011049074370483584,-0.03129749177898026,-0.019443255842358533,-0.019586795289341374,-0.13105821138561913,-0.019646249378010613,-0.051358712044579785,-0.03164598195011859,-0.03220325317212145,-0.015352830895735645 +NADP,-0.049737806240395664,0.44090780315634487,0.02009776375440488,-0.16350705742978602,0.3212026397821814,-0.04093631029587608,-0.14761954563869586,0.21998761628994276,0.04124062690970444,0.3753154447602266,0.2842817940072267,0.027180542456693928,-0.021632517871448015,-0.19655535020931586,-0.13169577109912248,0.19943796381437484,0.23204056854061073,0.2714879453739528,0.05462723915546203,0.20980406705137458,0.1449923163049181,0.6420704547631111,0.5691258263854262,0.17951386239740638,-0.07107023927455812,0.039164187194292585,-0.23281810061469438,-0.2217096072585735,-0.06285443393400215,0.20485866590044996,0.106300956074712,0.262573785797001,0.44089640325722246,1.0,-0.28110781119140715,0.0504011567031684,0.23864848024992258,0.25451819828424443,0.15251560228512365,0.07439325343772585,-0.006196227140528089,-0.06777759236621617,0.05777312251745519,0.39964873506670184,0.04894510689728558,0.05083127033271095,-0.06113496657251217,0.12989957412844058,0.025831568003247558,0.01053550965843801,0.1285999416987844,0.2217799131426627,-0.23233833496484632,0.02522684158261957,-0.21469498349687816,-0.0027043330405968702,0.10452252473633689,0.0603087954485552,0.0011471507898783567,0.19675883936108193,-0.1580513608589813,-0.009191041377973014,0.05836107273091109,0.08186846028854186,0.05491846247139197,0.07735152376810246,-0.08900971688291301,0.048737551336245286,0.05440280068244183,0.010338236729048393,-0.020863662973688444,0.07809375942054372,0.08461418845625111,0.046110406293326696,0.09019770655598955,0.019501203671684907,0.20700624243767696,0.08315252539506188,-0.03891151864815368,0.01720030025192777,0.23716303311497575,-0.1847135728016626,-0.13587947009531792,0.14988753408411284,-0.09577417241804623,0.12264020490615152,0.29746147877284995,0.14436220556384086,0.1999202120070275,0.08896090851252175,0.09804895691205376,0.12997670859691898,0.1671612485293964,0.0816087106205669,0.09532325495090181,0.11790214719269983,-0.003692930515043746,0.07455291380991001,-0.20726611476003662,0.06113359839070872,0.043600793630213866,0.21930730447627433,0.19050803617532555,0.035463548164244615,-0.28333567745228466,-0.04131680645653196,0.08841530241152105,-0.07340886296628038,0.055784474925154384,0.07519138787815417,-0.1215603976286425,-0.0007591427570466638,-0.1779043794861577,-0.0884000873174719,0.16048871491712097,0.06064679141448869,0.23940546717284777,0.15007484819893455,0.11915856609702183,0.208586915798964,0.19400635751427422,0.16873392135734874,0.18183888683109356,0.06566353700563915,0.1321301651928901,0.0377020821936943,-0.1660534918977097,-0.03604978503744643,-0.06284580086885905,-0.11186917423698924,-0.17147393744944459,-0.10338151851462969,-0.22390512542917834,0.14721051225230763,0.35254200368768596,0.013140451122396963,-0.1552336198919893,-0.08737165804020826,-0.1056154651491232,-0.18680404784932192,-0.0003173243979905089,-0.21796763068732972,-0.057012449021713506,-0.24951572154202817,-0.0910823444137253,-0.008002421627696332,0.023271448459841197,0.10193517767993533,-0.1777024005089408,-0.19470547754146675,0.18422239332567264,0.11571796592848517,-0.07035395860563565,-0.057035130425840665,0.046173431642249366,0.19806244027215397,0.014334104366844893,-0.1772069709412962,-0.2392958844613996,-0.07025451279297672,0.208504431881062,0.055156221777172464,-0.26437602274431843,-0.2767722158411562,-0.19484265014191662,0.1728131226350679,-0.21635563562664129,0.14352195076062904,0.1415602945769958,0.03923376092727677,-0.11584659864133458,-0.12296738834831604,-0.10094773226060286,0.007479284476285148,0.19613178917398177,0.08206436311745144,0.0906654984530803,-0.0276148580354725,0.10595991357707221,0.031909842327527145,0.01948896004023927,0.044656131338594966,0.0993260751934936,0.08804815184600669,0.0775733436852708,0.10643921992944398,0.11986800995437055,0.05913312509520426,0.036416175961733736,0.09990261761879343,0.05675829938989717,0.02845885459411354,-0.08343876714224463,-0.07363230787663559,-0.07723656738877914,-0.05989866293257141,-0.025586064857427555,-0.03829371143815128,-0.04839939699109758,-0.08153979456643391,-0.015402231429005691,-0.060403756685372255,-0.08249963094812851,-0.27371228743665,-0.2503927815107326,-0.05314688104372744,-0.05992120988893212,-0.10770855889460992,-0.2682652969870797,-0.27660908539003887,-0.352577779785616,-0.2576753766494089,-0.0616171028048272,-0.07819256852057602,-0.11693766463485498,-0.21914550571640268,-0.2832192083927393,-0.3652852848357245,-0.3249657610832256,-0.25393557136632144,-0.07708096699721415,-0.060017090889081776,-0.2958538336337484,-0.29068090220199755,-0.3133675602358425,0.00048398462412769985,-0.005520522444071997,-0.05978885700037357,-0.023667791868357747,-0.061370287163302555,0.005110043002931547,-0.016152028193228453,0.01584303206084694,-0.004937627585569254,-0.039588497003592134,0.009402578061200503,0.008612760100601406,0.01704887462574529,0.008563777575811867,-0.04592266008380146,0.04385201726883529,-0.029852625006797123,0.0194248922720921,-0.06374894233071013,-0.011271958522135085,-0.05141730893720789,-0.09807539998372775,-0.008285855640125881,0.02548347130632383,0.0031578680201946683,-0.006815707292212564,0.12512598509085646,0.05718226769476144,0.1174181541454202,0.0543285623282143,0.009381913080203329,0.018632380055699876,0.030802863359065145,0.019225463366110213,0.016962871588350713,-0.005650795208822475,-0.02754941759653803,0.017695677178576626,-0.019986436606110908,-0.017544732881732788,0.019830823752812997,0.02704859346943356 +Oxalate,0.012512958876966924,-0.28217134453073717,0.053586235852652105,0.40280357528673344,-0.5393281685514988,0.2538719979697447,0.4999927970042042,-0.3591572804669458,0.25206572577028546,-0.4925883274403611,-0.43548320050638994,0.21336312161320317,0.0855592479926794,0.23173962226627887,0.4737805869386894,-0.1814302956844243,-0.12873875327108242,-0.3407982977498181,-0.3154011975669966,-0.0363171801722274,-0.19832713536321075,-0.3703074519060279,-0.27905214464965344,0.08902022051809921,0.17867017887125997,-0.3064846317719613,0.33335028096885516,0.31874673222494815,0.07686361150556562,-0.4563697954070883,-0.255175207744787,-0.22715893114426808,-0.30654611367868323,-0.28110781119140715,1.0,0.05765901331071143,-0.0749993670146333,-0.34243276795578453,-0.41738740062616614,-0.3543557735329371,0.014729819394476215,0.2108424776265614,0.23201168607003173,-0.3651304710953199,-0.3737514550290902,-0.3933327468817097,-0.052956558188547546,-0.5320261455407373,-0.0016682158715806501,-0.16162628672194554,-0.1783869933781939,-0.44743916843451514,0.6134683659344642,0.08221049647861466,0.6481699651865762,0.023089668353757996,-0.03736244339136569,-0.014754349181706337,-0.1496134687797019,-0.46975432060447586,0.0720883543425597,-0.25733138947291745,-0.5018593431585072,-0.10140156987984103,0.04296269572574784,-0.08704504700467611,-0.026860744394299425,-0.43685623813355445,-0.23154504926989122,-0.3878265445166751,-0.31189990665591943,-0.555073042551778,-0.5119861398305378,-0.48109085479871955,-0.527838143974525,-0.3937949815990994,-0.40008163168230415,-0.009749783966473313,-0.1494834962347632,-0.39871148814414703,-0.10014859754429968,0.3810138752835842,0.12020304494726451,0.036602981705690624,0.4795200886448908,-0.48525380016681696,-0.1530245263310394,-0.6277804770559572,-0.6686863824620695,-0.52681268192103,-0.06188941430349192,-0.5831580378539737,0.04391743348961059,-0.4443772317986427,-0.19954994872880588,-0.4749530517279494,-0.32776268655918617,-0.26476631797606526,0.291732568295567,-0.1297443276486733,0.106641930734723,-0.4177836086269728,-0.5993806690943237,-0.31560371186598807,0.6660668713253503,-0.11268362366940206,0.0490258575656616,-0.0467284097205977,-0.42695064067496735,-0.015199946294731289,0.030621055881108826,0.23527392811651796,0.5670006035056943,0.03848637911080017,-0.49570469917677873,-0.29510268313970034,-0.46314824169774,0.021237298225724125,-0.39890412527589425,-0.4120458077181818,-0.4406343600664771,-0.3834366001061137,-0.435475266935235,-0.0872862577161543,-0.14910921710601527,-0.19530537233786033,0.26745038953259825,0.22810073759562746,0.2120769683782341,0.25807233004826996,0.27822581223536663,0.17216861954833934,0.6966952799693419,-0.11318360435904429,-0.36330134329361174,-0.2672236672937429,0.43844735541914653,0.058210982210411266,-0.024026700811624047,0.41389796342120494,-0.27345559546593734,0.16137539808618956,-0.12573000558590142,0.29964893332598774,0.024185823299647857,0.2407531618245657,0.2394169058745136,-0.024902031477073486,0.4520245211524289,0.3917000983819565,-0.24315569872893383,0.1143919343195117,0.3003545118532427,0.2014010698704533,-0.016140261122346178,-0.021254834118258743,0.4549679076281966,0.5102146396945481,0.6183863771376285,0.33491794582188766,0.13912664049955917,0.2645375887572452,0.5691117631371195,0.6046533267324947,0.6184062513697549,-0.02956387787634374,0.6039373020543523,-0.11188890592111064,-0.24933612604262229,0.22516755932078192,0.35096425698711103,0.2658703513217356,0.2106468014717763,0.33940434439693895,0.09602282362867172,-0.03069177989774056,-0.029295096496717563,0.3702942908318575,0.057967280210759545,0.13115815381613125,0.27975967454384504,-0.052889801823896986,-0.3490862260488218,-0.3710873630298678,-0.2451056388200964,-0.333509862075739,-0.4306970795321165,-0.2426213736130733,-0.2729093120581964,-0.36568177944708663,-0.20371167984443414,-0.22516071469472218,0.22075544994159346,0.15645911080259323,0.26885412446775564,0.011771235210633882,0.015157540764830968,0.04549609985757828,0.07847788951551114,0.06363100125286467,-0.01146629093391014,0.05913042445022943,0.1504441873832531,0.42105850139682777,0.28291283379997406,0.03750188898267401,0.07419414475084445,0.1400381986900357,0.4378197890414133,0.48461501513870126,0.41757146257595446,0.33009021512474035,0.09087041770303875,0.13700460451263452,0.18578484707871187,0.5960851304731567,0.4954197249175132,0.5649584800757902,0.4709211988939999,0.37664471121031773,0.15974825404867504,0.15576756596503746,0.5248754245588777,0.4792150448646679,0.5077883026712214,0.016702782466669237,-0.08543801429617691,0.0060165187267349745,0.09087273487021895,-0.05785405204497708,-0.08256520601387612,0.00227638182724728,-0.13327142567417802,-0.1078282190761907,0.09175373407916644,0.09597797338472955,0.13337107313883056,0.07034577276703703,-0.03971193043653399,-0.04018053955247688,-0.022428841013920023,0.11077544785859585,-0.004277864035933779,0.12149067114406457,0.028967364675819035,0.06507677468191672,0.11992937319936352,-0.02667403313028331,-0.002999616570889527,0.0073012304950203655,-0.04227877944825806,-0.15787385106861487,0.002469130652713804,-0.08331475908263701,-0.08860506337373104,0.024424384510564237,-0.064261046403859,0.06540198211570829,0.033481717999662146,-0.02749875986740956,0.020289287114184998,0.035586925945160365,-0.02716323189835756,0.04250844356271833,0.02808246654231085,-0.06319175090304331,-0.08065934723628886 +Pantothenate,0.03851755245655442,-0.04950961352700669,0.15809624053696755,0.12436699476612346,0.06503538202139177,-0.011637902920571335,0.04532683434413659,0.05175564404948009,0.19145698862066704,0.13643234449044714,0.10831920310959407,0.12100415360954055,0.11119256214126098,0.10946589742348177,0.03352388836368612,-0.023394607675065827,0.1015800303638902,0.1233129239785022,-0.04881519181366635,0.07487548692996122,0.05219019516042521,0.0865312006115561,0.14393290339898632,0.20120861855646743,0.031020808190856116,0.18115442377514135,0.004038964680979995,0.06918221822925072,-0.03621967934875768,0.05875675484397331,-0.06618155050138215,0.05501466348877315,0.1700569214635234,0.0504011567031684,0.05765901331071143,1.0,-0.015265523070752289,0.06513877781409637,-0.05598695132280063,0.07651175491082877,0.004543729735635925,-0.035648012625527865,0.19929399760970337,0.12047933717317784,-0.06968214810590848,-0.012755453922665817,0.01782158131587946,-0.06525410420391971,-0.2752697116594188,0.06007009908189065,-0.022383753654804238,0.07371726715778204,-0.05284450141243,-0.043089768024017344,-0.023552652747836102,0.08897080631846534,0.049207116836359005,-0.003355567669149971,0.14070539603992907,0.1101672030174707,-0.060059453028337845,0.18685235117073892,-0.015478463134486982,-0.02975156072950935,0.17065190735914115,-0.1647142998706079,0.04856433400032417,-0.026877998532376112,-0.15493849494598327,0.029643315976137553,0.12829467210212148,-0.025402019089632553,-0.024897120998982874,0.07784183158178469,0.061541416378410194,0.04606023776056908,0.0953299943915388,-0.1287862879546284,-0.14024186592564047,-0.09701081222445418,0.19440109568572855,0.04712260578020469,0.14305383828741544,0.059229035149328126,-0.015011722083236997,-0.07739762406766729,0.023972322115263935,-0.039796901118025,-0.0142696685328214,-0.03677056851696614,-0.21253161236500262,-0.17194223289355226,0.08499188945663687,-0.1350448442752231,-0.05845744958039977,0.042453256115073966,0.02793388740311745,-0.040566920050437244,-0.024199720022573527,0.02209054930902126,0.0461174115679337,0.08461282014112356,-0.0245366975270464,-0.11737826961647978,-0.0315494003416159,0.014966474126467186,0.18904071562028946,-0.04369294404810266,-0.005147976372353297,-0.004112961486910898,0.11305466765777757,-0.020959884729403716,0.10001718952168798,0.05132870987686889,-0.029920231192334317,-0.03912530345055338,0.14047284578552335,0.045735683636400175,-0.14178918172741065,0.11396110794664739,0.10725435992497523,0.08887718587859304,0.040666890437333215,0.08683896124424469,0.0007684049901242534,0.018668825747673246,-0.03606280728366149,-0.0005902384616154395,-0.014107886416419864,-0.020833009813510276,-0.03414155355671411,-0.02489475104216635,0.010104977988839586,0.008095061528968743,0.10573493491106825,-0.13242216960055808,0.0178849507004549,0.011420075120326608,-0.058301044457081494,-0.06258140749973252,-0.03394370854841156,-0.09931287810169574,-0.03312948020289084,-0.08539905437686048,-0.05905112534300628,0.028313642610349264,0.03875044571634671,0.014081542363785225,-0.12305819402768658,-0.03406242021673855,0.11781657543352662,0.1128670322053738,-0.028800695509405037,0.05038816581923854,0.019616162185236662,0.09733124560003661,0.035656052223815245,-0.009838136101369271,0.04427608884464688,0.02157565556858949,0.018413822892491976,-0.05558337915693771,0.05655826384136811,-0.008998038616424541,-0.011433359222129885,-0.027451167039225344,0.015167797810376134,-0.05886993902883074,-0.01638880360650033,-0.021043127737613885,-0.034354077334143,-0.012365571523079075,0.0008336741283350948,0.05402563219933543,-0.035336952100257495,-0.039595021431590445,-0.05782090806133532,-0.03829331137116851,-0.04559484118400789,-0.06499643834692102,-0.057396046605081026,-0.05569770952206065,-0.0464442782586308,-0.11068580420442611,-0.03877888031076655,-0.055140934502830107,-0.04872950654169341,-0.06783172305458184,-0.05815766249233212,-0.058906552118874335,-0.04960901401691035,-0.022754878385701546,-0.040268575594720794,-0.03116444933417673,-0.009522592139763263,-0.07283043782739873,-0.031013887994323325,-0.03783727931562797,0.002745102014800494,-0.06019166963027842,-0.05889871528414716,-0.04367799906115978,-0.03074184980400529,-0.08118368220832696,-0.09356067012903144,-0.08339027278667491,-0.0737741845222621,-0.07742000219350197,-0.09018392217989986,-0.10834297843923421,-0.10317406762317327,-0.10282114274715398,-0.11914222889256498,-0.10457851416499214,-0.0985617183633397,-0.008160140935761133,-0.07544885705851162,-0.10817851395416661,-0.08417478852854521,-0.10679921724980457,-0.13212744410370927,-0.11947877956849576,-0.06448367625970634,-0.058822412751748536,-0.06778750526099903,0.0700231271463558,0.16297569415921243,0.11756427968320615,0.07514017626393486,0.015570266796128681,-0.024340605076741455,-0.029132739860813228,-0.04932320517971287,0.12866125476234244,0.15547096969713797,0.1561467669290195,0.1323627190220419,0.08614646663132018,0.1824964231975688,0.0017003122589579864,0.07027434745429928,0.2186209218454909,0.16869641978379588,-0.023581725027238903,-0.01618616306297981,0.03396105431696437,0.021280152456700223,0.0484719455434444,0.00808693328845689,0.07093254797365814,0.10634555026999633,0.08172188446182418,0.12077140696894571,0.10189185958589572,0.013981352740997018,0.13613016770381403,0.05280672155501467,0.08026603301542536,0.11180024972567923,0.0818011325917565,0.07561379228538734,-0.0014970059337646717,0.05472763190699328,0.05956384219964668,0.016509163375538972,0.07005411810791642,0.111985463984933 +PEP,-0.01382839256527511,0.7419974502587137,0.07506951102405389,-0.16263307780742095,0.23737123355580328,0.04740001801775651,-0.16404129412168178,0.3037748067512322,0.08231473975592413,0.19350166275468328,0.22711550236571598,0.06878557712196909,0.10407602997759423,-0.11360185592940612,0.009894078012443732,0.37579855810394575,0.2394429783693258,0.24102321082689937,-0.16726016462147952,0.22469316681478282,-0.0156685252772565,0.23336657979501654,0.24416053089022577,0.15880069336247876,0.019843261831631664,-0.12498082107995091,-0.1736902532143954,-0.06639248836017042,-0.018719909308889036,0.08969893086990254,-0.03969908726876836,0.22895796629076565,0.28616127711356215,0.23864848024992258,-0.0749993670146333,-0.015265523070752289,1.0,0.3492550410167329,-0.05334446910044975,-0.12244140470747757,-0.08991846475290528,-0.1058864026420845,0.07875330364976348,0.24591991001263044,-0.049349183888832304,-0.026876086401417424,-0.1348112148767983,-0.04959131410915122,0.03442595203361977,-0.096925298399496,-0.03562785075391007,0.12629076797818473,-0.14221077896763357,0.09940430162967277,-0.05694785554591571,0.07446579253730984,0.05076007319130431,0.15934294583505526,0.05056742066910102,0.15624288570403314,-0.15773779065696902,-0.08866268519372761,-0.08169060568482052,0.012271231722082802,-0.019406504934282413,0.05573842112647152,-0.20123949090041107,-0.08932661043751472,-0.12021380183651394,-0.13950069778159335,-0.13360946997482165,-0.12481043459531005,-0.07804756638552061,-0.08839603200147216,-0.052963836808510203,-0.07170498404143118,0.09963614011190619,0.07086570349745085,-0.15750222290128188,-0.07230283186048304,0.06027460715961398,-0.08768764545662668,-0.0641499303683963,0.041818431872612756,-0.0016214740591726042,-0.11845006997016858,0.18043955305308543,-0.025976746962976846,0.018696764780608322,-0.13238779334355794,-0.08289377612011353,-0.06332423301261794,0.1736812402919261,-0.09517654333211388,0.010255072104041868,-0.07104991958839435,-0.1553733925279882,-0.062205785646159584,-0.3017623809493357,0.02246700810335866,0.003218914526912438,0.1317697566278226,-0.0386027245376022,-0.15568941201115022,-0.10699791512749515,-0.21438857850709434,-0.02152907500314366,-0.09756890916281057,-0.034391046669694975,0.11134751965320443,-0.07023421213061036,0.13664012130221967,-0.06980302771375099,-0.01584336737482044,-0.10908765293427711,-0.03084036537300327,0.12131362075230226,0.09161306445135582,-0.050636408171667896,0.053229883020577524,0.07080272593228049,0.10139205901263626,0.07717656162636516,0.09057342793441162,0.01480758399239436,-0.032475971058627144,-0.12196326130779096,-0.09587971907892838,-0.10154081022199134,-0.16681353743897287,-0.18720914972640929,-0.17731870545715375,-0.01815945741919696,0.14285850786264584,0.13821106988848264,-0.1020479961223307,-0.012043998799998568,-0.03762505613620359,-0.09038058518871504,-0.08388429357208335,-0.03302858557666976,-0.2302458241525818,-0.06328178229031589,-0.2250430095183764,-0.11352632912509195,0.07495867843455441,0.15280626164587574,0.08424059464576973,0.0008749453932135082,-0.13243681860332215,0.2021123963916126,0.2042861580903051,-0.020843580069804274,0.10314778129274191,0.12907035378809537,0.2552543139359792,0.07595138785714108,-0.06376182349924096,-0.09674422775143329,0.05998703394008363,0.23123289265637115,0.022139710774469527,-0.14210582854300227,-0.1581922052444375,-0.08863686751574312,0.17352754042020066,-0.14762325596889977,0.11809071370062818,0.11832300453533884,0.017240303052208073,-0.03657269970244521,0.030888464230528774,-0.019864567105754738,0.03586131916642992,0.22158118801005255,0.062211638177033415,0.08672110141817675,0.05037439738853048,0.20275767651763174,0.15753941440762045,0.1242347603866192,0.07098833130159088,0.014884805494813566,-0.010596945793352656,-0.04428216794630935,-0.038004687561566594,0.033291902659296754,0.0587467329094238,-0.045368802736976264,-0.05222355920041002,-0.012769672068642917,0.00461217978445195,0.09840826867819841,0.09240751392845462,0.07475178234271672,0.0867426367639591,0.11531262266854095,0.10377203442249289,0.08141698450991405,0.09744700666798752,0.13770112960377504,0.11102308345372071,0.07225701226169727,-0.09199391390661513,-0.018283494420371398,0.11843047961442309,0.1229397966007399,0.0685380672054034,-0.11246796727676767,-0.1258044409323363,-0.113100180528635,-0.07747758524238577,0.10841335764705236,0.07962060421877232,0.04491833354854169,-0.12253398348104973,-0.1586154819146577,-0.19965709070078977,-0.17054978405388913,-0.08361391324308924,0.08179074456100374,0.09072172714480657,-0.18882072769812905,-0.19022225818589353,-0.2021742741596633,-0.016664240553646424,-0.04765205422655423,-0.041043951590110185,-0.04267192058224624,-0.02615467608663587,-0.1095859037152131,-0.08574536427474426,0.039567758453915296,-0.0022901975504771603,0.020652322759735327,-0.03197315334666964,-0.030896752104703464,0.024284010583517073,0.022888335375085167,-0.041464786246246076,0.047131412058253566,-0.031229226449267355,0.020292685670074445,-0.01799829666407478,0.041649199841506876,-0.050905812067450686,-0.054789842295710565,-0.0013721600413769493,0.04280928112489862,-0.055176276594930664,-0.051011315313937655,0.008418498968669795,0.06274920393978983,-0.025747442818082448,-0.08462000998300363,0.03395329312840182,-0.010505619215332131,0.079238933852587,0.061830956666383816,0.04580042904417483,0.01713778309941886,-0.02872333645167462,-0.08559813062233182,-0.013864194523696785,-0.009718991453655906,-0.03773473594878216,-0.03226563696180461 +Ribose-5-P/Ribulose5-P,0.025320334341895966,0.5645823959513794,0.034524663072160684,-0.17857664727899994,0.34516464349574927,-0.07692381728832275,-0.18829547159168686,0.4549699370563896,-0.13999629476002395,0.3186542694987904,0.31654350573071227,-0.13807186469202237,0.022335145636784508,-0.23315881190794951,-0.18695648443991833,0.6558074928822003,0.367804424090189,0.5119415363032122,0.2659812937388022,0.25716380493183644,0.15576998462268923,0.39996044623319404,0.37637358821776107,-0.02131438444882364,-0.047405253617165244,0.13416349839114683,-0.3143568333248451,-0.13918573694546083,-0.11199365835402587,0.44562062307297345,0.2674629764382195,0.3118918523514263,0.34585413526093045,0.25451819828424443,-0.34243276795578453,0.06513877781409637,0.3492550410167329,1.0,0.23768183696545436,0.16714683953576256,0.04398948631299201,-0.150756825807944,-0.134418860393581,0.42715103731477466,0.15403501489669186,0.15060012834176895,-0.12457660808353804,0.267780131007375,0.13504753764959918,0.10798444185547235,0.2901460319596023,0.31912334906763623,-0.27077889559682394,0.2754817084333225,-0.34121613700983044,0.11603610684421677,0.01962767174690501,0.271897391113483,0.05934600567247644,0.13298215861292523,0.02466770402179587,0.12201052961768954,0.26822282365981276,-0.011235492707248981,0.12056399883184281,-0.020180568881495393,0.09900653412060359,0.12889814952374118,0.07281039969295595,0.19851234142651578,0.1872119018299724,0.28557013141557624,0.2661327634702948,0.22917525962109328,0.24339339431298102,0.19321079683361872,0.17398554963142107,-0.06061170010353161,-0.04617213016447624,0.10806607938000477,0.06359925604498765,-0.23385744591041077,-0.10653739273665949,0.015051446898243103,-0.23323396222068316,0.15464222163012487,0.15895366889840964,0.18662912379512128,0.23935204783828795,0.1993522481200248,0.011642413283318597,0.21662771760935143,-0.0022084575981524777,0.16025632144782972,0.08760912939657277,0.3309966969055602,0.21809810964715834,0.03625614609936148,-0.14927635874255568,0.01436052215412772,0.006188912090348162,0.21854045352264356,0.2586676289085555,0.11110164367143911,-0.3119258291782634,0.1923753223271783,0.08732241077649264,-0.06120321005442703,0.299576494623807,0.10680864698232409,-0.059540644290294126,-0.007208334859749937,-0.19332627518851747,-0.14044314870652405,0.30067298198748127,0.2361987552516206,0.13854676828445533,0.10551584736083988,0.2636480645002137,0.1618560996818205,0.07272491567935863,0.06523439690447702,0.06313849575308156,0.07926202006179425,0.023088984536183535,-0.0027984075611312657,-0.15897640949475533,-0.17831621562484976,-0.23956188498225622,-0.26420508449574137,-0.26908969443146674,-0.23621218500871483,-0.2577609517522891,0.002513320569132977,0.22531162880172667,0.06724710089118452,-0.1672357268650667,-0.043908636980530005,-0.015100172490786047,-0.13695352549108983,0.12916316732971073,-0.1257151852010845,0.06945377331852298,-0.18238415725894982,0.10649115992188612,-0.053605361987074496,-0.05328908105348663,0.06490438480410671,-0.1783198327740187,-0.21117226207523887,0.18403129080217254,0.015291227685057506,-0.1930034399784297,-0.052594394794275065,0.04335263519779948,0.0815641472175907,-0.18287169204737314,-0.25318834077447183,-0.35805559695633227,-0.15749647266692085,0.03243397682753566,-0.16510036115600338,-0.3326301725209181,-0.36359550784739714,-0.33988984036515496,0.055833728745996875,-0.3318098120200919,0.09270801379644483,0.15165258093917175,-0.15451056863687518,-0.19413059338726954,-0.08408235932204085,-0.11516870421296539,-0.14121607264459918,0.045055556866759466,0.025875069134981155,0.07618564534702896,-0.1419537118948062,0.050001188214324206,-0.025753004587260504,-0.10372455004001187,0.08871210966040764,0.27422777854843905,0.2497065495997572,0.24221370517121646,0.278199119874114,0.2504525310788544,0.14265773228159054,0.21268505713926494,0.28710508023899567,0.1723586675946108,0.1627947216386458,-0.1732793421529356,-0.17222437112705105,-0.1825442430956578,-0.11152084757637677,-0.12953925972680008,-0.1463006099331831,-0.09701526541310715,-0.16459738261223075,-0.13821558529724987,-0.1499141387563442,-0.1290192119350354,-0.3690554852824269,-0.3039769922077498,-0.15943914604489354,-0.19515122088888026,-0.19403478998937396,-0.371051341671695,-0.39157891514240994,-0.3909343229703106,-0.3615465729753583,-0.20363361172403802,-0.23461517078030866,-0.2169157672230451,-0.28394379504259976,-0.410258610323762,-0.44970469967709875,-0.4213430726658352,-0.3915265794508979,-0.24797648399934075,-0.20724462471759786,-0.43009329102621124,-0.41819221335909856,-0.4186100853434349,0.048068050674482984,0.06840171015228,0.009574076862866258,-0.021564564905079037,0.05945258562463517,0.011858556355574349,-0.03029464757261145,0.08761625064832201,0.1029469645480637,0.0004517426856426703,-0.023808514786636408,-0.04727851441442954,-0.03348881537217526,0.08832417922163882,0.014987945597910075,0.08034587537222188,0.01185097911687042,0.09540987106319597,-0.03962072004610743,0.12724606943669,0.06564171159484185,0.014300914731833512,0.11837238022441876,0.11451394723003609,0.046232544700562685,0.011391669304791937,0.10621975114427742,0.056076702826870474,0.000711709303895909,-0.049308174560721015,0.005500640660186582,-0.028659715204870186,0.11688324934676593,0.11498575393693844,0.14564221404630406,0.11849085817672893,0.02734257145635019,-0.025026515728557477,-0.01821660178571203,-0.03360912271418019,-0.01160564491358638,-0.0011903235533621676 +Sorbitol,0.15088733920917308,0.12767459620932897,-0.16587232750148473,-0.050272276044051274,0.3477676420142739,-0.2490883165539847,0.0651416504196259,0.24280793293881406,-0.5588999214878482,0.2509398706108073,0.2733354910856019,-0.5331574394350341,-0.22528522512982002,-0.2738299600534626,-0.37843028514947064,0.19914692695699854,0.08007455019674185,0.1942112924085008,0.7021285601831146,-0.0734119901541878,0.2431707120984082,0.17796169839828765,0.011807515271812754,-0.43023181552095924,-0.13316375966266505,0.7058437672952512,-0.15658855973508562,-0.19772116759564515,-0.022148977942368357,0.42299678351151754,0.3949985546956912,-0.007622370606020625,-0.023031229786145472,0.15251560228512365,-0.41738740062616614,-0.05598695132280063,-0.05334446910044975,0.23768183696545436,1.0,0.5770254611696302,0.18549160710753018,0.11246393180903981,-0.5574161063965055,0.08195407621377634,0.5805903706194381,0.6281949521077445,-0.1194427822591094,0.749532506802238,0.13687640088552414,0.5713885286934008,0.1813069484548264,0.19265385395757298,-0.15583787844584676,0.02685771343122108,-0.3236151124954051,0.021446241779684187,0.0058646880940617626,0.13114611878321158,0.05003098569104622,0.16544917332165301,0.1727556711134078,0.28632634609661994,0.5720764516931712,0.05707858405913913,-0.05350284527861845,0.01749701300912088,0.23339694940810501,0.6218891231627726,0.5228896188063328,0.5748137684668483,0.4275432448330901,0.6124414735946819,0.5038786711925373,0.5374705414625001,0.5219116685246342,0.47281873828611903,0.14696591930150352,-0.06944144868531392,0.48249127993732743,0.5643735111172085,0.04072561240710902,-0.08094593697276392,0.07018006479209861,-0.19303716677186053,-0.22574476754716688,0.6935008986177685,0.04407372303572814,0.6562045998578765,0.5832459366952908,0.7197263847572427,0.22612548351247072,0.723918489311829,-0.36714099087357427,0.6651593662145523,0.15335645134803177,0.4584728477011153,0.32959972960432093,0.35550219911289704,0.12352659827398124,0.1356552261524274,-0.0558820564854088,0.1796913384765918,0.650120615320127,0.5451447763537752,-0.24625046117794908,0.4954595679217729,-0.05407112549690565,0.1754803457117139,0.47879374679134784,0.007907866335801107,-0.030569270230961308,-0.20116813971046565,-0.26059268869518987,-0.08448930949917716,0.5705117076488636,0.34076762525766263,0.168013095375242,-0.03835166640012575,0.45868781327784724,0.3082446831595353,0.1935221935650926,0.19809851938552026,0.08544693110306839,-0.07570749156582321,0.06915285154955285,-0.01010451842366231,-0.12506597416768273,-0.24066028640678,-0.2869160887445522,-0.2971646907198534,-0.21488372138977666,-0.2064220341142363,-0.3301950485879087,-0.015829545381503014,0.1257601840088805,0.551552022697279,-0.24433675882355435,-0.05067457939336774,0.1434742885799692,-0.049267688422403096,0.2837837260586923,0.10495360658595249,0.2465972477312102,-0.0371030149682548,0.4058668247794272,-0.26502028626691543,-0.2702744457984187,-0.2072193519813205,-0.23608672649784018,-0.1377480033425423,-0.15295811088319747,-0.37238963723453455,-0.30591068917784203,-0.2758816435705944,-0.17074217669115754,-0.29980866062856326,-0.42761009934641353,-0.23516486200658393,-0.23777908708421366,-0.18036773171557197,-0.309935518385641,-0.3387892823797891,-0.1487781706964007,-0.1511358114880913,-0.26882870783892115,-0.21846577560477937,-0.2634738903004249,-0.04772847783243113,0.037187148515971616,-0.29715163837823194,-0.28444043029539806,-0.2195305285508472,-0.12424795420444343,-0.2427591328401418,-0.29503554299763024,-0.07836540569063774,-0.10609042620866047,-0.33427550322212796,-0.3381821291603797,-0.31208720715439536,-0.43131210204425796,0.09964849583350183,0.44753732747344666,0.47955601799411934,0.4565322721254195,0.5561462394266822,0.4468467391567996,0.1849228237577583,0.5019275330770534,0.5895473178363059,0.38938936194232826,0.4386287012503844,-0.40725248220785965,-0.4964149131791186,-0.40997827369481027,-0.3038881397477694,-0.41841784907970053,-0.4467644305602814,-0.37341558207433534,-0.3815131199559133,-0.42403902994456105,-0.42209581718742006,-0.36400836617811744,-0.3903605653116996,-0.3704396095327276,-0.3585791616155277,-0.4368124653516327,-0.39929799659369847,-0.32775812812037747,-0.3528159037526465,-0.3228214754216156,-0.33687319914616043,-0.3439629897730542,-0.4132188634564915,-0.3970770348938262,-0.35071879982856596,-0.29491907381369087,-0.29497170117238863,-0.30024086198512273,-0.3523461126979161,-0.35699150234760485,-0.41802593995011844,-0.24728316041499282,-0.23149679923377975,-0.24850677017679368,0.04788417049813777,0.09106587824716501,-0.016632229440366415,-0.02382995657354172,0.0627987366672871,0.123657088759387,0.06393386728537671,0.19142813424234928,0.05355354719609116,-0.11153040792534939,-0.14224333875113088,-0.13118101953260777,-0.0975695260269936,-0.016180489616181785,0.12517049597873744,0.021973151525928776,-0.1554810793042455,-0.048979261510245786,-0.008861492553683889,0.05886948066682672,-0.009614946586017113,-0.11163047720581692,0.024612642670867546,0.0801894030061007,0.039840409534513455,0.04444692439664233,0.1602714389109886,0.048535063000521746,0.08435210436202879,0.11133278302511976,-0.0006803776736351594,0.07265116972107927,-0.05201839913871503,-0.010463867402139431,0.030492985675434115,-0.015768729241600023,0.09992186357428455,0.0531566267794817,0.015410368406549503,-0.0014322281179748753,0.042472717850672755,0.08112585068607461 +Succinate/Methylmalonate,0.07561197688479342,-0.008999016370664924,-0.07717353459432287,-0.04757801728763372,0.2921270740074841,-0.21549179209812194,0.12398187071330388,0.16427157698715023,-0.30570598365401813,0.284750210907612,0.253937436202212,-0.2857893137520761,-0.18558602232333174,-0.15049261859589727,-0.3650044227846604,0.05259270044200339,-0.05050793485348129,0.09713705885641419,0.5668531223478117,-0.044422295867807146,0.2177528094055936,0.15576122938933712,0.0069033545644219,-0.2480702849662455,-0.14436413249625782,0.6260731788444848,-0.008130470460044122,-0.12316471547216613,-0.08011090587473184,0.3457614675771855,0.27873731187757855,0.10678502827569632,-0.041549076850081676,0.07439325343772585,-0.3543557735329371,0.07651175491082877,-0.12244140470747757,0.16714683953576256,0.5770254611696302,1.0,0.10306426762353528,0.07770557347626104,-0.31376040574718317,0.07757491329250357,0.5335996055843554,0.5349329615237229,0.033941897009037825,0.6452360310974611,0.028680858060156616,0.5135950715573844,0.22416396430347338,0.1837123439174919,-0.127360642491829,-0.07752166791908284,-0.3221650067655384,0.0868693969252097,0.027855936788268865,0.05475062362780802,0.07846674653372715,0.18466084673922284,0.1869318959308016,0.2416343058683941,0.4814096294248802,0.08129788664115585,-0.04474820867363952,0.04538999196885343,0.26746944214537266,0.5018962837202238,0.4198790933970842,0.4883179033984469,0.36285852120492523,0.5229862092164129,0.425274204958343,0.4406714198632941,0.41798760806199153,0.3849046532883933,0.18815442347094352,-0.003537075303983738,0.47218825094966954,0.47045743346660246,-0.019791370382135166,-0.06984245171050447,0.06801205639464071,-0.13341277986423122,-0.23268802102608313,0.5452725747090277,-0.056628779658435976,0.5613571693493039,0.5024362719214995,0.6295806882064877,0.17196485567262282,0.5946688612793538,-0.32507603299117555,0.5432555866578961,-0.015736137495093425,0.44726172348694454,0.3689061906063548,0.3436653590457479,0.10882212825394652,0.08679832568253887,-0.0681571164077598,0.1653295705142494,0.5581160306564701,0.45965031927352323,-0.21378899105012578,0.4337228545566843,-0.05068468113968395,0.1527800208106378,0.4417595765750077,0.014517081819799658,0.020250753444261253,-0.2501849757677427,-0.2707329196009794,-0.03253711224595852,0.5085868281446018,0.15339924121808216,0.18765952163881694,-0.06912836176556786,0.35756425913712153,0.24094608334120993,0.16589179566361476,0.16240423079147365,0.12303730526968741,-0.004754344179811299,0.061921040942941395,0.1633091288927741,-0.0074375068723982,-0.163676274744804,-0.15897779831286662,-0.16982254716825682,-0.11369560435598913,-0.09122126667636996,-0.32319639165781444,-0.0593794488497805,0.01926431077860618,0.4663514626262887,-0.20010405522456948,0.014416195883992566,0.14329027591793608,-0.08754827266911243,0.270968791396121,0.10087462467923926,0.234742981838856,-0.01694258045048656,0.3299095715233153,-0.20296829974467534,-0.23212147396211813,-0.20262492836830612,-0.24555656885334032,-0.09325382634241455,-0.09959186431619205,-0.3178834412839226,-0.3828677214791313,-0.23660974071003146,-0.1651606028446263,-0.2845852083231367,-0.445139172221218,-0.27311488548887924,-0.27649386847262175,-0.2514912353187217,-0.3505874251410398,-0.32864581495752965,-0.16398986988599804,-0.21058993480356417,-0.31200620604787804,-0.2466792560278473,-0.22256050027960522,-0.12619360276332464,-0.020617160023393054,-0.2988839760809794,-0.20286978025157712,-0.226992364721216,-0.17172129937277922,-0.3076488844793784,-0.3465721858131011,-0.13556183606668784,-0.13358930025248072,-0.3261451657034442,-0.3301751937453242,-0.3142501423656481,-0.4042082343814939,0.03815299038216675,0.3529200720844281,0.3392642063055613,0.3512911569383394,0.434210315051136,0.3499147276969138,0.08938400939363027,0.38018691432675183,0.45550805518049214,0.2566510945109134,0.28143995500292573,-0.28628833018207417,-0.3595188602328604,-0.37643436869106806,-0.2007618776586038,-0.2829368459439378,-0.32920253638076624,-0.3005806216884297,-0.25529545475385246,-0.3220618754649,-0.33902407564673775,-0.33779488666629187,-0.3185591723464203,-0.2950713077061704,-0.2803878870963695,-0.3620502158936164,-0.35538991356183885,-0.2986904894438454,-0.3123113635741571,-0.2760372495388993,-0.2990002485011258,-0.29956147436509456,-0.3674637642440303,-0.36334757611061835,-0.30486856871618007,-0.2980650440869946,-0.2576800782271056,-0.2785796160192932,-0.30632712643829046,-0.3421250664733951,-0.3838489706538724,-0.2211841909682127,-0.20953163244834347,-0.22947337737085377,0.04453358478395675,0.1080491197733854,-0.012680813130382823,0.0195336270541621,0.022160798420721307,0.09180426579943099,0.04529616886740002,0.0723185203991794,0.04063589299689323,-0.06599478338061775,-0.05535895166780069,-0.032449209205808134,-0.03575899161878557,0.0010422542545490698,0.0521399297443983,0.0492416522090204,-0.042938588872108344,0.026224802751073664,-0.0035362316110787145,0.016246394568300914,0.01093389943728321,-0.03874143683265813,0.037500664372465575,0.015768459845261044,0.03510080930967895,0.039533458146740176,0.13378095718971075,0.015911664390002904,0.04107163897828803,0.0492630771217212,0.0003257966089012348,0.030837559950007826,0.019852336727114405,0.03546784818388157,0.04068865782088494,0.023068493202222595,0.07653889678574262,0.007967949174084313,0.05533403090269182,-0.06003254241634491,0.02495663343813351,0.05387784574434401 +Sucrose,0.0686652654479123,-0.020090874915777063,-0.14110137901121506,0.08468529502022348,-0.07083981484527248,-0.12873168682988892,0.0880800325803615,-0.024827923821671982,-0.278608862888351,-0.06685618028020651,-0.06983585092387964,-0.21982936294288843,-0.09780569445024813,-0.11706212062011022,-0.14225613124495592,0.11004679406677446,0.01849337315038135,0.040952669152782256,0.29730495369820253,-0.09210658537221368,0.02000609712232101,-0.022892241500539666,-0.06559439669180281,-0.26953785160354354,0.029125616010228447,0.2178954205410551,0.043056974855928756,0.07438593051624336,-0.024356756877378174,-0.039505482904663394,0.6833472716897058,-0.09855203468431288,-0.09794889401630132,-0.006196227140528089,0.014729819394476215,0.004543729735635925,-0.08991846475290528,0.04398948631299201,0.18549160710753018,0.10306426762353528,1.0,0.1690855419633048,-0.2523307770141307,-0.07774261530721312,0.14118379621793387,0.09901353140892892,-0.08089332893159924,0.1934094535306618,0.13932723254972174,0.18351335450766737,0.1006931375933168,0.04505995459391209,0.08388673824142069,0.03138387217423086,-0.019751871802170737,-0.09538828834085736,-0.03847481004403393,0.018871809193478924,-0.032468329998075675,-0.11006928077028279,0.14211802549930344,0.09873973238888659,0.17277829065684594,-0.025406763055335336,-0.022848792334132444,-0.19091245983627328,0.13814619254282504,0.17345482625469455,0.08430685253527606,0.26078993921644356,0.19155882349433448,0.15275301087682608,0.09066243553081511,0.14939734373717659,0.11482057116917761,0.08838155004415493,-0.14118109822786706,-0.20939631261616853,0.029633258672404388,0.037028338828658164,-0.17769981826500206,0.01926966640174384,0.033491563087127266,-0.07762098576481269,-0.04225845194606169,0.16163542351203553,-0.03889800917770237,0.04073942935592099,0.06045626384770842,0.10691723240394464,0.14701124539456534,0.1855260651890513,-0.24925750432392607,0.12700907689851257,0.04673410607092601,0.1681531781932617,0.12381438556554446,0.04279183538566298,0.09304872393119366,-0.022767155784786608,-0.12555716697169214,-0.04742807662148069,0.14631584234360992,0.2348218630388534,0.03203882243634843,0.31124732135100686,-0.022260249268610414,0.16932871274778577,0.0666485743564013,-0.02853375012339316,-0.06810240073989206,-0.0836067551541522,-0.07921015962827295,0.12723888067027067,0.1499044346387411,0.12956153256970612,-0.0973993203554038,-0.10920313912991607,0.11613792092030181,0.0027866006482363203,-0.11287266995236839,-0.07050206469701477,-0.12203064020356005,-0.1724843353565678,-0.024213503357013236,-0.13614709425124302,0.02364713450666393,-0.06288544030514806,-0.08723322638044519,-0.08967769334281474,-0.06863436109585051,-0.030417168526462215,-0.01089630982741059,-0.12498481117984458,-0.1616549939253881,0.1364716815115861,-0.02618618852767022,-0.0006336286182562771,0.026475970181150905,0.13816644315343585,0.03249747670135729,0.058701797486936644,0.04514132969011184,0.06068953743961939,0.1888624902932187,-0.10099170780595174,-0.12761624778234743,-0.09640829462919584,-0.03966342099370573,0.045444186796716884,-0.1323409874298106,-0.18015074821323496,-0.10779852223843013,-0.05539538299785486,-0.027947716143638075,-0.17561040332008135,-0.13289193738907185,0.004073290566333286,-0.033679177532727575,-0.03986170832993163,-0.1928247977659448,-0.08827207767689979,-0.051218155884545445,-0.009576735151311787,-0.02634762205239131,-0.15937099959559908,-0.06130634561470867,-0.07655799974865438,-0.09190505143297852,-0.08839452505011579,-0.05808602375478812,-0.06327134781851125,-0.03118505389791286,-0.12218642455782885,-0.14637905211930535,-0.015549209364172688,0.017796540798863683,-0.10965290884938803,-0.1269471729202928,-0.09978252274581703,-0.11930251213284841,0.1445733096619173,0.20686278318850232,0.1955057402424028,0.20688591881855997,0.22009276654005747,0.15077614526003413,0.11436579338273595,0.2031795124300781,0.2099366865834095,0.2166568664355117,0.19794158742245996,-0.09912264298521273,-0.13863957283759953,-0.09783093780981478,-0.06723247140285658,-0.13598768070971293,-0.14564838241503494,-0.12333878817238092,-0.0862853030972714,-0.15212909716819953,-0.14035214190897202,-0.11833390038386181,-0.044350032192452246,-0.04173505091391512,-0.102797342808536,-0.17637832320153135,-0.11747099235706185,-0.027956885091921867,-0.004152982286040937,0.0005448453891585254,-0.07776316982544654,-0.1739366385036799,-0.18298371567170202,-0.13080194562984013,-0.005852688534059239,-0.06312991159748102,-0.030278887188895147,-0.07696118062066609,-0.11231214219384643,-0.17780615358096036,-0.17281525388498808,-0.031537351085675285,-0.050995044228841595,-0.0577033578482002,0.011647067042180955,0.08898866741411722,0.009628016354145345,-0.07401359775462939,0.017702246547607662,0.06458752409003866,0.05716997340365983,0.13202000573568612,0.035406564732925506,-0.05686944877415786,-0.04413691050045714,-0.03536850566009835,0.0019038579793392858,-0.008023382927438793,0.10821531171408329,-0.03212326415095566,0.00053007145162433,0.003883392843430694,0.05329925317086194,0.06424263108574899,0.05191324464962062,0.007777725120703027,0.053127780382975956,0.062136688714890295,0.07321794219134287,0.0653440315605047,0.08457368148078048,0.031290635366783615,0.07473368895481083,0.05434637618532614,-0.014812022965455696,0.0040932540489781516,-0.025667470850238846,0.023432850491697393,0.013116182848593533,0.004394064520947799,0.10552751278049245,0.0779284104237028,0.04454082791416476,0.060966959529317834,0.05881011508300518,0.04936260145907116 +Thymine,0.025207528504823412,-0.1282500204349378,-0.11445894767950063,0.26752689769988597,-0.10595617991336802,-0.021668379644352014,0.2669384318613977,-0.16080229688830877,-0.1650914704501722,-0.1342609976815981,-0.15021232361019188,-0.13739927081933181,-0.09375168804531424,0.03245575055046673,0.020190776633480904,-0.07991816379677628,-0.0377605136090491,-0.10798226430495253,0.17929878232206353,-0.14924667458151672,-0.019043045916583855,-0.1301507661356567,-0.1659473782223611,-0.1795394957739925,0.05543448636496552,0.18478527103463332,0.1681764563573494,0.140593631695171,0.04024231144294832,-0.08532665888166219,0.16152939090897964,-0.20183082296091012,-0.22121386101777388,-0.06777759236621617,0.2108424776265614,-0.035648012625527865,-0.1058864026420845,-0.150756825807944,0.11246393180903981,0.07770557347626104,0.1690855419633048,1.0,-0.13868864430217764,-0.17802339870091843,0.32174713333494187,0.08011275111687528,0.02165344808641039,0.15099440322815805,0.17753301693218287,0.2879395514723009,0.0007467616673569406,-0.09064139648882207,0.29813129766444696,-0.024165626699534596,0.173970412394431,-0.12326983320561846,0.09071203748671147,0.012297942989341913,0.08978799616799502,-0.021164723509694647,0.1749799682747589,-0.005642596522471965,-0.034480645681398296,-0.010902335214509947,-0.07865671834065383,-0.041802880636105856,0.01345320027634436,0.05737025575249141,0.08116088049994011,0.08013528675853444,0.0135208917913352,-0.04892228188900663,-0.11951266137312146,-0.017353177692221507,-0.06919731306186704,-0.05857438293785521,-0.06131777304979715,-0.022254129641101406,0.1675428513666064,0.07829877707916766,-0.08324993894551808,0.1956295827439268,0.08245895896904687,0.010890518810051465,0.1988055637012871,0.13112593860227437,-0.06518835752639425,0.0401415866205931,0.03612378381141946,0.08170349306632722,0.07257402180182278,0.09531810827766214,-0.1494440853423845,0.12008239025011158,-0.20097493825937915,-0.03558333365304691,0.0012947009469977103,0.14607421486646707,0.18694255547902552,0.013423437018141292,-0.02932642841151979,-0.16225564587615335,0.0390760077419726,0.21387427020644448,0.27013231967420326,0.1940693198200285,-0.05836210845646294,0.3399050507408573,0.10833800340018244,0.09371484089210717,0.08234122244375255,0.02919108545970772,0.04850539539363937,0.007805372955411731,0.05694673631095526,-0.06198769542302337,-0.05397183473545681,-0.03373058806417058,0.0702088764443324,-0.04049723698881697,-0.03601753326058361,-0.07052267894393897,-0.14515128922354173,-0.08820004100971743,0.009392474846280313,-0.08360549164837033,0.05940010787953204,0.044278308069852175,0.003434014904261125,0.03129401166917008,0.07163945945706471,0.02881443392478931,0.10054868456686057,0.05863720745331366,-0.13674551758760847,0.17855804376465095,0.04758977604819322,-0.005732308034174486,0.03459212356950703,0.10016838511390629,-0.019854917771253176,0.07673634834469305,0.011180535733500639,0.09592126883782806,0.11391173766772737,-0.08135045455047245,-0.06721145621830257,-0.12364343896752138,0.07066933212794284,0.04188599375113037,-0.2166868969553163,-0.21106200793965238,-0.08444533827946364,-0.07164932611392384,-0.16643125925736502,-0.22467458589286088,-0.06061657669045559,0.09506832889254294,0.10266937431479989,-0.026820950611413794,-0.1470381874351905,-0.0336319986379816,0.11249743942304335,0.12353634966062013,0.11593820123949547,-0.16892164340909008,0.1281501682165445,-0.1186204757505464,-0.1617150653973818,-0.03874032420118076,0.01410791109996641,-0.047993762076071665,-0.05792600390924344,0.0014224446497657613,-0.14382792939955313,-0.14289092576070556,-0.05881904315059873,0.009129566598099171,-0.20145220685328505,-0.11212434563875343,-0.1210159103688032,0.028579634649396193,0.043010741435455045,0.024284653761660818,0.07657272307779474,0.0793517000154498,-0.013184148690773667,-0.03534050913838101,0.08584868938483527,0.08555779189593486,0.0728348378128891,0.031087555861436016,-0.04965100874075638,-0.13643831528618355,-0.05335297906937912,-0.06762827208834976,-0.16270435979621226,-0.18449383642689798,-0.14946560076864535,-0.11331440688187647,-0.18445704595336504,-0.17411197310024912,-0.11602621071100412,-0.0004974605717001989,-0.02767795538814038,-0.11907410367662896,-0.17264588243446624,-0.13205851036897742,0.07005572201073959,0.06009231351553565,0.01962456015959403,0.021219763624591662,-0.09725044260411901,-0.1153266396195672,-0.10060234341741021,0.06850196477882885,0.05582972248860714,0.0742019447858099,0.051119786569700454,0.049420107500317854,-0.055025107860098274,-0.10822475960936435,0.08839806811351375,0.084875466734493,0.09759871176468836,0.0031394124552582103,-0.033711016670871376,-0.03072120015834372,0.00255153373430921,0.010569715959329231,0.024918483893910503,0.009216652331207578,-0.006566027582715245,-0.017573302389803064,-0.030044001622119364,-0.02535673130974326,-0.0373569592362347,-0.0029263517502571847,-0.0344867918261232,-0.00015360377235925244,-0.08596769680261312,-0.030128498355193666,-0.08644223369152432,0.005513844327709378,-0.07322891263009161,-0.0711772664938466,-0.04693750296287687,-0.07308022484833962,-0.04337714144071489,-0.032178445857184,-0.03001210739561485,-0.07332814157804206,-0.011371838765328001,0.008552030857301897,0.025880471853886047,-0.016969134228220245,0.0221157400671815,-0.1161718132135932,-0.12524799584754065,-0.09782033237434085,-0.0676240911042276,0.053574173579330184,-0.026966469835593965,0.046327281671412146,0.052423989913607555,0.055006375899057096,0.08189735561234157 +UMP,-0.15530730854995686,-0.10325895354433445,0.4391531371709369,0.050933168153884024,-0.09662317443189478,0.29607678629718537,-0.1602847576335155,-0.017299102990415777,0.9238705662796756,0.0060538877452867654,-0.025686129835478928,0.8549830599704182,0.14879539383630838,0.44753633082886457,0.4176010521917211,-0.18784176142519313,-0.07656550965914508,-0.13195018556415022,-0.6647343920122102,0.2850135170877321,-0.16157472793860703,0.04595196287728009,0.1802171492828378,0.840706043399616,0.087192016181417,-0.6014678070977687,0.14230614328852026,0.15421600985803838,-0.045578296639233205,-0.17694265972240886,-0.46804038699325373,0.275259677073342,0.27529849884830176,0.05777312251745519,0.23201168607003173,0.19929399760970337,0.07875330364976348,-0.134418860393581,-0.5574161063965055,-0.31376040574718317,-0.2523307770141307,-0.13868864430217764,1.0,0.23146621597181746,-0.4422299772491038,-0.4189504179274329,0.4032402188367259,-0.5855334919929476,-0.24884579391181064,-0.5497854196537939,-0.12970540888022722,-0.25533644282559115,-0.019851569792281216,-0.14216144690696705,0.19990194109381865,0.14423090590093163,0.10029986643194035,-0.0007736720674435731,0.08457599187545252,0.009363561312496656,-0.25490758771978833,-0.22968096979535607,-0.4895643598504983,-0.007055748843200837,0.20608495636532922,0.08115912992703689,-0.31395752062201293,-0.5581525775854038,-0.48187724908557383,-0.5724369045038543,-0.395449731546467,-0.504609523203252,-0.39739672819648925,-0.4436550143107538,-0.4155121111619739,-0.36088286979849127,0.11798599137544287,0.1944083095698488,-0.37356028023928345,-0.3868022578628495,0.21805189008899634,-0.027927434627007957,-0.044592798778350554,0.24640000578487906,0.14629158734597816,-0.523360431193976,-0.09821219707210303,-0.4384829171426875,-0.4196879798541004,-0.5616889809581317,-0.3173715213125288,-0.6579734856101774,0.5751172014084837,-0.5896954676427469,-0.1782593105402566,-0.3851821528875639,-0.23039788383486393,-0.23474179312820245,-0.07234088660485129,-0.13744225459184936,0.0768976408052337,-0.08207263885196663,-0.5732108884375163,-0.6277233706962885,0.06576839713826334,-0.5636993417392346,0.0696252322386398,-0.2374844226590621,-0.32433786632273737,-0.06486553913721718,0.06200086482528676,0.20296993065583574,0.11914906806450783,0.13347198870187119,-0.48031376012076427,-0.377758169278114,0.07040952764940316,0.11704555278464723,-0.46386073873753897,-0.149415377265623,0.01837242370734961,-0.048383289875540775,0.08165328493031584,0.2142900503296314,-0.01631941202541383,0.1242187495955425,0.1661994538526979,0.15367613107000105,0.22405599807983556,0.2256863013991008,0.10604455598332542,0.09091312790635854,0.2227813627636964,0.03077701606593635,0.11689310754870838,-0.5437297004611874,0.11442647142940522,-0.017431918065068094,-0.22394874643976692,-0.12425919555102176,-0.3014362239062146,-0.22618920723380004,-0.26235541795518574,-0.1265627037667781,-0.5210887335610438,0.24908643034045372,0.2779908969631982,0.2774237214984211,0.12900834430091934,0.05624617065534295,0.2522017533217983,0.40731587710370576,0.32716353982984564,0.2625677003701392,0.14691863378506054,0.3262931456317449,0.3616699489494179,0.13550831582237777,0.15723245002821937,0.20408494416301165,0.33394890569132474,0.28372961240888456,0.12610877920566976,0.10556888689305126,0.18801957690477625,0.2795251743623986,0.18931955195608793,0.05739572594493972,-0.002484816014434142,0.21278866763484314,0.2707645383323087,0.16673628100733806,0.1363902537148116,0.28120011624926294,0.30558313938707,0.10644071529758105,0.09755139775018139,0.2290080086131205,0.3084848854876241,0.25323248444888957,0.34348549207929446,-0.21649962357286803,-0.5316299244621734,-0.5433265086201835,-0.5252610911923976,-0.5956351049135831,-0.49512489100471796,-0.27697440852702276,-0.6164278071679977,-0.6192666916556623,-0.5117796962281619,-0.49105281002868756,0.2753646002505119,0.36607945116427276,0.34290161407741904,0.15040378539688326,0.2695886946177114,0.34425846143982924,0.29558855213651414,0.21274486651391575,0.27802140540255094,0.30962579570933396,0.28554399832369026,0.1947155704994325,0.16248959787758743,0.18707585458972092,0.2815170131539408,0.2905682720371205,0.1542963859155558,0.13023945629385847,0.13248568947005426,0.14452810179014566,0.1719971924824637,0.28828789467438626,0.30560303553312373,0.2080061892882254,0.14679886640177647,0.11499265106740669,0.15179187416801584,0.2099160954987655,0.23918909005063296,0.3194348354697121,0.126192920851339,0.10813429936310233,0.13075134485218878,0.02940378581940073,-0.0760748626378709,0.061625236180165584,0.08546603465246273,-0.024882344879581735,-0.10193475514282306,-0.12057567075937486,-0.21828065577738306,-0.015386921378290187,0.19934663053911134,0.20436314490493215,0.16251201205591106,0.09422234260744505,0.08628212126483838,-0.14966568496665247,0.03452782226919364,0.20383474437896498,0.11315526469698363,-0.020783846633666864,-0.0805557153038377,-0.05195747951345949,0.04514187526115709,-0.045151551717947186,-0.08448331445231112,-0.07535039537753101,-0.046209221178137784,-0.1154851743877556,0.03193095801226047,-0.022342093435072024,-0.07624715277971525,0.10247004932176701,0.029965227004086614,0.05817066288310752,0.021130182059833916,-0.02640409086119479,0.016678951426909255,-0.1945338111531878,-0.06688370437235011,0.04528768833044462,-0.008486067265628167,-0.06550479389507742,-0.04409639274785395 +UDP-galactose/UDP-glucose,-0.014517687996291473,0.38049136881008677,0.32546873230590934,-0.25553841779600456,0.5542629165438892,-0.002735167562371774,-0.30719543238897884,0.5110268374176774,0.23484180683846453,0.5989366441493434,0.5585393203202685,0.1896828574907932,0.03434123699552692,-0.05390998492636404,-0.1180354491054814,0.3371671396822174,0.3236632368021951,0.48698075081111436,-0.06548074042506116,0.49091044088644586,0.19017887248725548,0.5620970946767894,0.6589999359022058,0.281835848486903,-0.05880472882096942,-0.08335985113940925,-0.3001169780639939,-0.22801278986485354,-0.07224934684017598,0.31381818236244063,0.050897696985771894,0.6373424653896527,0.738174311536425,0.39964873506670184,-0.3651304710953199,0.12047933717317784,0.24591991001263044,0.42715103731477466,0.08195407621377634,0.07757491329250357,-0.07774261530721312,-0.17802339870091843,0.23146621597181746,1.0,-0.016228605907039596,0.09562764471827442,0.09834384364716874,0.05160414742257774,-0.03941063421043741,-0.11623809464116783,0.08700836605427933,0.2483107383405528,-0.32618030869721626,0.006881888766748052,-0.3311604379860741,0.21454464985957006,0.164776532198977,0.11075566913202324,0.14452860322371827,0.2518814841117336,-0.16361932787286185,0.01538327398629423,0.06311806007129557,0.20400376535559167,0.39556289943560496,0.18448053177919554,-0.12088405432807642,-0.007340743955414787,-0.04005830819918231,-0.08579184291824868,-0.0362981046552443,0.09901788891251954,0.12109135924926508,0.04434609977974917,0.10332395874883316,0.021162398478219772,0.3668698930652807,0.17808628607949054,-0.11530076851119041,0.04780586123999639,0.33452151074092795,-0.27978510037073645,-0.11300334838606668,0.12309264860048132,-0.23507316725469896,0.043288728021713255,0.18716279662122537,0.13246885647826892,0.15478833484518245,0.01720428927024608,-0.07928190647643997,0.040589017221139535,0.30312983406278043,-0.015088983549790998,0.14765763003275814,0.0737514591747975,-0.014152561793314047,-0.029143946119438272,-0.2597894479275411,0.11460231398126595,-0.0177983150043192,0.25524071378051344,0.10960720101121019,-0.12887226338027793,-0.328128640233652,-0.1751016794826981,0.05249402816928223,-0.13112961839378032,0.02417448295081584,0.014558349468540217,-0.07432108892819554,0.01192245871110165,-0.2339838682685427,-0.0011471707992200644,0.08194839582797217,0.15358856349913363,0.37827104343251955,0.17174022574617767,0.047273509202965594,0.22805748872186596,0.2990180903047873,0.26166027242436246,0.26694053693039954,0.16585158801630778,0.1386374886929492,0.031629288625573126,-0.185060768295098,-0.14372725577389175,-0.15464261432269025,-0.1979408200543891,-0.2535584612813638,-0.21815757785203907,-0.2596568261314349,0.036453560393275346,0.4483275652380955,-0.1057499809406389,-0.23442407705420887,-0.17783660582638117,-0.18266324158834887,-0.338867153826524,-0.04359740189730896,-0.2898170214318396,-0.0892922051335121,-0.32980005719265426,-0.18026644772462042,-0.03107322698620203,-0.01732095478594242,0.1225791030178423,-0.19174751917388333,-0.1985573312838277,0.272051558813917,0.17203848693551013,-0.025204465979645915,-0.00990448421101627,0.1293511409041942,0.28267088997854667,0.005159597184273248,-0.21750667139593552,-0.2836642174826725,-0.0322891159395644,0.2667602694647057,0.02379623871187625,-0.2626147008609227,-0.29470342973838665,-0.2527153035363753,0.26430313348543893,-0.3162386709436001,0.16647264997016864,0.22015630013743728,0.001520120041753495,-0.09039802665897582,-0.07168137524139036,-0.07114642617407115,0.040686476252109575,0.27196504122528947,0.20890531948506857,0.17298141370251457,-0.12105394130966321,0.10088024873063173,0.0058152237658546406,-0.02821642007965257,-0.05161740218211083,0.019605532952846293,0.005453624449174264,-0.011209388481010694,0.009176970403216892,0.05841775957040006,0.015234543011276419,-0.031471397264827256,0.03372500060552389,-0.041832791399755376,0.011529489184000036,-0.18075928319450704,-0.10338698823461137,-0.08541571448045762,-0.14314318134062612,-0.06707428164104663,-0.014434135357154302,-0.005386843740322545,-0.12894708874268881,-0.030177904055999114,-0.01912475524977127,-0.04196694928106634,-0.35046530795031877,-0.28806843267073934,-0.08015972884847698,-0.03978453242539557,-0.06858229166434812,-0.3410065814773997,-0.37084304403601653,-0.3436671702101634,-0.2972993768374543,-0.06927122592798128,-0.06755050064822914,-0.08100681272750371,-0.2749002162332516,-0.3462707417566304,-0.4032389016131613,-0.35694678008021563,-0.2806830523115512,-0.0957361769122621,-0.07433658998506368,-0.36443530113368183,-0.3400682247186103,-0.3574992603248842,0.011396978909598614,0.01667672409203099,0.02624925973294197,-0.007693529492814036,-0.036611398755835,-0.0348291364781782,-0.04077276412651499,0.03779393335986301,0.0412295642986172,0.005295792233173629,0.007527544476061634,0.005022692854528877,0.021546539476300548,0.06963088506305937,-0.04257627744827194,0.08500498585084361,-0.019488316530794626,0.08073455399946525,-0.09580777351213811,0.039580358309805455,-0.026096607183298703,-0.024269700133575607,0.04725416839730324,0.04563544941169299,-0.03559757223548102,0.02272990171454689,0.07392666778686625,0.052589288232242376,0.0338700414718036,-0.02391496467254114,-0.0033015895272979707,-0.019193803443795288,0.03086045211276008,0.03849603678673058,0.07577857009871684,0.05022714164158975,-0.10371344468589018,-0.021589757311382844,-0.002294763912040604,-0.07485512138873826,-0.021812725557128303,0.020398983612370795 +Uracil,0.004112472489763382,0.0652290419140044,-0.2634786875514759,-0.03949646720737046,0.19757610345506013,-0.19657387024292067,0.07764738500662274,0.10555864276648663,-0.46105543973174085,0.16195411706868115,0.11159340196848985,-0.4193636992046327,-0.27252667004079306,-0.19920024092715072,-0.3627094164844037,0.085369891368346,0.021556137882739135,0.14160472174934696,0.6199222770122697,-0.1292684005927352,0.19325583984094194,0.10462869824036514,-0.03844990802246555,-0.37789926086607745,-0.1315717753978349,0.6131775437478301,-0.030229085518471352,-0.10955033039985618,-0.04360837821293786,0.24905457764202718,0.3589318196022644,-0.04643786632428593,-0.11133437058119287,0.04894510689728558,-0.3737514550290902,-0.06968214810590848,-0.049349183888832304,0.15403501489669186,0.5805903706194381,0.5335996055843554,0.14118379621793387,0.32174713333494187,-0.4422299772491038,-0.016228605907039596,1.0,0.4703997572202155,0.05703211218696511,0.70960498356187,0.18725650636141006,0.5629152166490922,0.2243872090222867,0.24150666767983667,-0.10205380212528796,-0.008583818007079191,-0.2927876829214547,-0.1311440463478942,-0.024704655620889634,-0.005504242548722789,0.0989641860127527,0.17312044398202187,0.26284239531461057,0.1898032401924124,0.4886872449613289,0.16956330050980764,-0.16550952489019288,0.04506552070904833,0.1981227858502619,0.5095429088966822,0.4329340218531574,0.48630657046578735,0.33980922137350394,0.5234542815513961,0.431132233036639,0.43236612349376824,0.41267279571596943,0.36135046911642227,0.08211016222531961,-0.0026589679606685308,0.45090525810828536,0.4733890598365598,-0.06279085011192453,-0.0868437478694765,-0.023294356757844092,-0.09465694248389614,-0.2023651075715256,0.5896487035309347,-0.015753592980353972,0.5778624073510423,0.5309609031604003,0.6236923654654906,0.18687830194768706,0.6500386714145064,-0.3527855499347478,0.596848453418122,-0.19202083284819002,0.3776842210186737,0.33335496019330374,0.41694439917010734,0.13224567234553983,0.08819586577003585,-0.08427701446544392,0.15191375505844948,0.5750229315805878,0.5175812533559914,-0.18924818939857896,0.46743823146300945,-0.06701577928555688,0.2028069072194656,0.5049040254096903,-0.01948744363752129,-0.038531977424706446,-0.17726351877715033,-0.26596631948662086,-0.07081470345336799,0.4907890757879319,0.19412809202443507,0.1607410925029976,-0.09988751395378802,0.4834367678481318,0.2774671771208313,0.181175914010799,0.15772868255016453,0.13727222310163717,-0.06888357454697305,0.1063149139705066,0.10133690894262508,-0.09636294614072895,-0.13306762241441986,-0.1565411858441597,-0.1649547936713712,-0.09906333312552396,-0.06806255077443316,-0.2882239510115568,-0.006977692498283777,0.01653334546340067,0.5186033427613317,-0.1840992718920369,0.020205486525496977,0.1653246798719611,-0.0953299769033572,0.28611387499230806,0.09852863322034888,0.2260326016943174,-0.010828058929377899,0.3368512764048789,-0.22989308978416778,-0.2521759194063553,-0.20343151098093065,-0.17642523595116477,-0.09516812452188594,-0.10597799390560601,-0.3205346660294262,-0.392485434378029,-0.2554118179455705,-0.17687887938587285,-0.2603187747082695,-0.41496976230933247,-0.24317336713451676,-0.25983351357810497,-0.23404715797419065,-0.3099272977474187,-0.3469321977531387,-0.2025932795937574,-0.22263601743185707,-0.30840691181561386,-0.2686686866902741,-0.27053169338879657,-0.10837036927488491,-0.02255892705867078,-0.2800751363743497,-0.24395409335008067,-0.2398060930981351,-0.2019988184938699,-0.30039184852038026,-0.2690011271316821,-0.18933684332728665,-0.15777494469425524,-0.29534861643817295,-0.31394538723189397,-0.2748967415960127,-0.40150602667573354,0.060246665595737124,0.4166560120178492,0.42703947610528026,0.41087409839180633,0.4901479749607145,0.3839323762616615,0.13549494397884898,0.4580853109687574,0.525632516939876,0.3160725666870989,0.32948931572023327,-0.24375634717621686,-0.3387243562540992,-0.3576287213135126,-0.14911633874717625,-0.2575586655046966,-0.33291931060128666,-0.3082356795693459,-0.22977658797540254,-0.3047651062598296,-0.3435211717565955,-0.328969646243418,-0.32484034874880613,-0.29813129372342934,-0.2549717326791185,-0.35087415373436315,-0.35981056537514033,-0.2596185348971863,-0.2889217711687621,-0.28996132051192064,-0.28850462022213746,-0.2565156192799783,-0.3453856910383451,-0.3557399927486116,-0.314456925296128,-0.27266780054774176,-0.2759171769658302,-0.29329755263498286,-0.3128508937119499,-0.27736482730094125,-0.351939662032393,-0.24170789154800137,-0.21314534564461146,-0.2527146696368274,0.05219471144145087,0.08865422170140182,-0.03887821533110582,-0.07572705720348734,0.06541347677299086,0.1376614996655862,0.03920860958120497,0.1823126857387258,0.009448510342118096,-0.10503347510925272,-0.11833394132049954,-0.13569885191825912,-0.044063077343290534,-0.05171689564333821,0.11816395670160008,-0.016256524132370827,-0.12543793822047714,-0.08265693853866739,-0.04323541430672192,-0.006639265451891906,-0.0393508049368557,-0.11812514443349419,-0.040500232015922406,0.027876447752853535,0.016367251826213583,-0.014895185003995098,0.10242750086408278,-0.002656693442732855,0.07656324902100298,0.08647834010292195,-0.026017568761583978,0.07170626950207042,-0.08162341271878847,-0.06718327612660066,-0.054593911245745363,-0.07761193720994178,0.12082124159791659,0.021594603805159714,-0.020219948253922468,0.0202524058285393,0.06412269517674941,0.0914974515223424 +Urate,0.13068851926008304,0.10101990818324542,-0.11004627141829673,-0.04340004215541531,0.355309036413909,-0.2260901442015506,0.024148560671822968,0.22483347541922388,-0.4153783752686234,0.29123524177903426,0.30420666855981315,-0.38053577791746457,-0.19007356199637654,-0.21840360176932327,-0.3176621529098234,0.10430786751815725,-0.012528850129906179,0.09596530344282432,0.46900373789579397,-0.021049082952906733,0.2475141234015016,0.11432797935322844,0.007188838951901033,-0.34468222590471104,-0.20516286884260007,0.6020991593775699,-0.09831087064920126,-0.19395847601470936,-0.041862884086781856,0.38100338711732246,0.30594617879682184,0.05014074752869232,-0.009334746642363948,0.05083127033271095,-0.3933327468817097,-0.012755453922665817,-0.026876086401417424,0.15060012834176895,0.6281949521077445,0.5349329615237229,0.09901353140892892,0.08011275111687528,-0.4189504179274329,0.09562764471827442,0.4703997572202155,1.0,-0.08589512517745898,0.6195702438746905,0.064268593817433,0.4878110976576089,0.04838959166480714,0.19891346240776017,-0.1330481768668687,0.015695666420105978,-0.2619065031890649,0.03038830558613814,0.04262909958336415,0.13479846864074407,0.06639424069307967,0.23107323871160831,0.05492420341771999,0.24267641179581248,0.42589425248751234,0.02178349019602404,-0.0736474284457043,0.05237105416657269,0.12698612968369327,0.5038266521604229,0.37529694105873135,0.4248501496788453,0.33264411026268437,0.4635622211241425,0.3677766084825034,0.435607291574768,0.4206614738265608,0.4074386369780208,0.21752605316988188,0.0022535228105328036,0.4404843006770661,0.5309224188143656,0.027342432561426336,0.021791341261852778,0.17470880233860356,-0.09949803596423593,-0.2005109601403278,0.6020534789968722,0.01900455844805296,0.6166688376948933,0.5237631913234658,0.6386233514127025,0.19327470951376116,0.6391051930582916,-0.2743015491207268,0.5691357660336874,0.13553288112675274,0.36230272859279417,0.2516751550232702,0.32773166793452013,0.03090969029551365,0.18590673214239686,-0.07138572953392275,0.1578543361078601,0.6065332947780585,0.4609708357383016,-0.11577413235236429,0.2874932049563604,-0.09732213261469057,0.13124705395090513,0.4756459684991923,0.00633566090292879,-0.018230332027606082,-0.1534565304891925,-0.323026734634627,-0.036120568183284255,0.3977292681814346,0.2263445915005619,0.22066153888496987,-0.04768437863315265,0.25158935043608827,0.24249937323894827,0.23198676339442592,0.2456886238523985,0.11926531838587959,0.04220268058753612,0.11247695733148397,0.07401493237267442,-0.03335495805587413,-0.17318389060972916,-0.2025752262782307,-0.2130686562744938,-0.1627258598881302,-0.1654990271458615,-0.3146099576095423,0.026996701367782216,0.1166221550828062,0.4844161065784202,-0.18177350725254046,-0.03110190610997391,0.14492186471715887,-0.08555316578965445,0.26293637199641057,0.11869936085388244,0.24962806166123952,-0.011146622709333715,0.3151317694791242,-0.2039702759676705,-0.23586166697292588,-0.13784512653310224,-0.2324386794093183,-0.16113969283449672,-0.18751361470756622,-0.3895183595431272,-0.24192352110438992,-0.3018926969951707,-0.18427329591202943,-0.31350725730285367,-0.4020122692959482,-0.21162487631482532,-0.22640657566951114,-0.17506347926586835,-0.3016207460754635,-0.24062610400146245,-0.11009735320612299,-0.11628976377500934,-0.24393467955780915,-0.16735965147761797,-0.23933064428841155,-0.04554277086430972,0.07332372912245218,-0.24080647890733858,-0.251049666757033,-0.2009772381468216,-0.16784567396491346,-0.22803719646927958,-0.25913825350251857,-0.08754075409822222,-0.11808890293501838,-0.30904690058589773,-0.30605020494138846,-0.311485180897182,-0.37445458500314793,0.07862081305117344,0.3466073616870244,0.38632099240272955,0.3621403823857279,0.425338077547412,0.3560403635162498,0.1688382489036283,0.4309273232465722,0.47634849433842863,0.2998078909407607,0.36923725063177354,-0.3986099302425232,-0.4048797813572314,-0.39343923833907424,-0.27889202101314814,-0.36596731087045775,-0.3519591510303603,-0.29318948149731316,-0.3486434275577942,-0.35398695730174295,-0.32718700745067014,-0.28470497495013847,-0.3234368162892084,-0.325882749457525,-0.309172808131893,-0.3498973032129135,-0.3080614359389175,-0.2638397710964292,-0.28613391913867303,-0.24932932796376486,-0.2780591472986414,-0.29445754136424956,-0.3236326320165072,-0.31881247848526,-0.3185542247650572,-0.24597062226282274,-0.24221375267366077,-0.257585750595046,-0.2890880860112436,-0.3238881949038461,-0.3512405119906321,-0.2078202826776875,-0.21627121060524204,-0.18613163147017855,0.007612425633436403,0.07452312705605939,0.003467397528012552,-0.04341446131883019,0.08558157383562243,0.07036077593717203,-0.012258144952487652,0.1453373230636066,0.021359916628654278,-0.043035831013581036,-0.10558490998502504,-0.13452170199109648,-0.1106885123232271,-0.012502376198842466,0.07771598282034761,0.021361063604462438,-0.10688292092245442,-0.032609546081190995,-0.0034849941512202147,0.06433264692544705,-0.0054057210674200145,-0.03656178809288841,0.04453223242003344,0.07376715512059268,0.003564560458060597,-0.004749114010923137,0.08636851819204648,0.029134422193638144,0.02163569170107208,0.03778706057185435,-0.013011636652444258,0.03765909541503975,-0.03286512703937753,-0.000780725477013464,0.045857811235051074,0.03245320345974127,0.09181902485908316,0.0020550626118642254,0.023376105584813067,0.05100684303782353,-0.002632739259204245,0.0144380261739394 +Uridine,-0.010077186386154718,-0.17196943035985804,0.12598085457075947,-0.00045773259197037883,0.055292783201230766,0.0646736222791675,-0.0899376738809945,-0.0491728593324083,0.37607122495645157,0.09807712119869265,0.09392902964116799,0.4160224947648265,-0.02879948565185047,0.510549068899606,0.10656675302776733,-0.24708116427531696,-0.13441130890123584,-0.10921320820350017,-0.15307132143826296,0.013043873223315912,-0.08134458633386762,-0.03541239625050311,0.013348712876546489,0.36423269487263876,0.14517519443947902,-0.17687765067133301,0.13616798133886487,0.19662435138674259,0.010496090420491006,0.00952412876530328,-0.11411582468059946,0.09202534362107428,0.056008957905197936,-0.06113496657251217,-0.052956558188547546,0.01782158131587946,-0.1348112148767983,-0.12457660808353804,-0.1194427822591094,0.033941897009037825,-0.08089332893159924,0.02165344808641039,0.4032402188367259,0.09834384364716874,0.05703211218696511,-0.08589512517745898,1.0,-0.04602250140971935,-0.17534581241526426,-0.14396233374843528,0.017779774933475687,-0.11247561880532021,-0.07105902902466014,-0.14025439580634538,-0.03302353851584472,-0.025358409037414365,0.0985847925551438,-0.07496516354435184,0.09642289000456793,0.11173831381689599,-0.03515074199065018,0.00032053419478790025,-0.05602968003374604,0.08440321169590968,0.033553354273907265,0.07624997975032237,-0.1576459218962641,-0.06807985922655507,-0.08555763923574204,-0.10365699985071469,-0.054465810935973046,-0.021352338128714364,-0.0013959402027709027,-0.03692566929532031,-0.024557071243133666,-0.040232032109619384,0.08594973255253695,0.11585111653631934,-0.05581578837024837,-0.013965970096840124,0.07591832149356079,-0.11021722612140256,-0.01827905771030438,0.001182213422740608,-0.099158593027223,-0.11583457437524876,-0.12786221409994605,0.023059908520870528,0.02258243733845541,-0.07907213059140564,-0.06977193219282438,-0.1359825424912394,0.1945722225907538,-0.10883333780071944,0.004961468681304802,-0.055330920301200126,0.03201952997499114,-0.020375935829108842,0.0038482461484436905,-0.07897816772569685,0.0224920723697656,-0.046606008492414114,-0.15190696207595614,-0.18393798530678715,-0.0748833713739582,-0.1681425334759167,0.14876629266103603,0.08170812418415942,0.05918805243862641,-0.09627659584315722,0.062085396258895226,0.046399381976828954,-0.030822311972771414,0.09624038684776395,-0.0898943601865244,-0.05693169278435167,0.10422798970437339,-0.07178754666892637,-0.05220297875977412,0.005760921557679322,0.07181003162068042,0.09240110512668345,0.10011963498941828,0.09705515668496052,0.07413238278952271,0.12443427557386977,0.0526812862881606,0.06798818184197794,0.13649527651487686,0.15397029652235086,0.1114296139028986,0.12999186059108836,-0.03110477408671894,0.010120828398005958,0.054751215379973205,-0.12755979988105018,-0.04013032495645306,0.02525819041931015,-0.013249249227835125,-0.11417382701659136,0.027712168917935057,-0.050061364766480154,0.0018573733114317687,-0.053143882565212124,-0.20743139767018645,-0.009583834953905903,0.006243050087634599,0.06706716219715171,-0.005398779879870843,-0.014316896607346072,0.06335479528802468,0.03431231907600469,0.023994529520815558,-0.008142313573511665,-0.002888584467988731,0.043607673785062646,-0.011374592265418714,-0.04331449096678264,-0.06327401138427842,-0.001273482738158854,0.013145326462864124,0.014749752268301271,-0.04682856743707805,-0.06273970058262197,-0.022698814889439846,0.05785236407608481,0.007577831802817766,-0.008252018225827622,-0.012227014925289431,-0.036941799892779605,0.0499526266254185,-0.055183689599062107,-0.005568037727247103,0.03136326792185436,0.029699024689423068,0.0004927424311193516,0.021965975797236383,-0.04708325300223286,0.01404163734147508,-0.005431858803074861,-0.013337944100385286,-0.18281396868154273,-0.1566836743907308,-0.13228498843308628,-0.13447336502975274,-0.14550941301656412,-0.1104393583209814,-0.11198729148916166,-0.1818989232078102,-0.13817648102013502,-0.15802296192343726,-0.171253309787792,-0.01415269126362297,0.04240666211146019,0.02029597920191154,0.0027841379944454313,0.02045021221768904,0.040685877609586106,0.0352492159355581,0.011735371815079602,0.005206946240897209,0.004862336148824651,0.0280696660517098,-0.027525038541806865,-0.008224473775620349,-0.015498294778931951,-0.028688257060318127,-0.006260189809204798,-0.016673482761008333,-0.03057697825235478,-0.01058342171604492,-0.025024807253208325,-0.038604866465505254,-0.022732041648638675,0.038069954538366535,-0.03892905566776172,-0.00021822353067928874,-0.023367071081901454,-0.002909242570922452,0.026132927056478517,0.00907357892294788,0.006999325991558376,-0.031957008411511355,-0.025419749439382893,-0.014003108899838183,0.034519899971311996,0.03936806733003797,0.027620253564789338,-0.029439844344999782,0.03028112619646722,0.0281397646927713,-0.011240245286719568,-0.002583264014470668,0.02889546551475884,-0.0008738859363936752,0.013055116309081257,-0.008946436439601866,0.008530020395453869,0.03195161904991296,0.016756186095766422,0.04490459111303381,0.04452645289473515,0.05710228784624882,-0.03525975675342948,-0.021233235627163095,-0.041941943728764954,-0.002245136256453678,-0.0056744356592749665,-0.03031249238378201,-0.06816784969648312,-0.0452335054466501,-0.06271915916844664,-0.02463624400072597,-0.05410608458603941,-0.04435415689328815,0.030895900991846904,0.04236079786395173,-0.031105240437913833,-0.00862420749549228,-7.064334967019476e-05,0.028643125480881555,-0.03592774318937189,-0.019921945893890444,0.03042711005576729,0.011871672175181073,0.00047811047787882507,0.008548074884518062 +Xanthine,0.13981217132247356,0.17124129712806813,-0.2596376863474241,-0.12293479581525882,0.39207101871218053,-0.29919881987654634,-0.03137677174016247,0.25428790432223974,-0.5844881886767352,0.3226567248651232,0.28847160395120985,-0.5508205828648941,-0.18194577025044834,-0.2936622929005254,-0.4845733170012847,0.1774230203891448,0.04707736004630128,0.2223047247560447,0.766755938128819,-0.10598945797488449,0.33726419062046253,0.18803732116691899,0.02768566832799173,-0.4369312470767419,-0.16614091147525498,0.7048444576187247,-0.13449383545631294,-0.1732343079762466,0.0033606734390042884,0.46133346776778,0.4651758196223043,0.011908036011449272,-0.04863389354664856,0.12989957412844058,-0.5320261455407373,-0.06525410420391971,-0.04959131410915122,0.267780131007375,0.749532506802238,0.6452360310974611,0.1934094535306618,0.15099440322815805,-0.5855334919929476,0.05160414742257774,0.70960498356187,0.6195702438746905,-0.04602250140971935,1.0,0.156516568701528,0.6615891519839225,0.24052439245138302,0.3625973803578331,-0.23296773114589878,0.002596831444635213,-0.41760877235710514,-0.0460264196620021,0.02835775963814235,0.054061645299202536,0.11277560595977008,0.28627687469979984,0.24165955772900974,0.33730032163325074,0.6416940851693798,0.11951543335155185,-0.12787562145385006,0.029019085276330008,0.2577018614730795,0.6625577742696461,0.491586150653171,0.6620308547336954,0.5063945564588898,0.68092063207758,0.5468954995219436,0.6077373070468585,0.5810514031632202,0.5048286838897361,0.2093584080587479,-0.059744846697722995,0.4943479366248794,0.6265578327856458,-0.026243371290346856,-0.14621177163180413,0.034203016240304765,-0.1093476734552784,-0.3239140703348738,0.7441580218125596,0.04993552323593394,0.7592246345586986,0.7259967946476257,0.8026897229786152,0.2478455481135812,0.8075663990710238,-0.424662097919288,0.7612057956943901,0.11526540147193744,0.5679722976546059,0.4095605917836907,0.466843208799544,0.09855435890186057,0.12477228371060581,-0.07021622967447831,0.25807439216699696,0.7765562941518622,0.6195809106341059,-0.3044549075772253,0.5649331206429514,-0.03509125639371504,0.2632895237210608,0.6739278914648319,0.06846171550322395,0.015030383232290648,-0.2752161677810028,-0.3851970540649534,-0.07978367431572217,0.6575764042454442,0.30590258316787017,0.260329479169407,-0.07828228703954371,0.5641524431117547,0.3539486175231132,0.25202023661865836,0.22961127773710213,0.19058955158646393,-0.02420268687985701,0.13134635190183594,0.10227639835977323,-0.15468310867110427,-0.22645432773474058,-0.26135558199934483,-0.2711882351229328,-0.20656956414249944,-0.16840466467394227,-0.4517649341566551,0.046392651302925025,0.11191478760052712,0.6176445307757832,-0.30154300658132505,-0.01866061105970751,0.18056652926154934,-0.14821020749701327,0.36713272895525056,0.09284915434932871,0.270272200553429,-0.054020451121568655,0.3866409250408047,-0.3016193591184347,-0.33398980696179537,-0.20774243001074344,-0.2891922501142373,-0.21298139262118937,-0.1050512317241415,-0.3944051336541479,-0.45475637213035147,-0.3239631514100431,-0.181720696027608,-0.3127261435984236,-0.5393578025125875,-0.39295123832584095,-0.4082920308478695,-0.32722123872810915,-0.3859322082701595,-0.4073745262715003,-0.33328537656330437,-0.3496693739546143,-0.44056412923672295,-0.27352217421458724,-0.3929328438114197,-0.08089457749278652,0.0594095894470253,-0.35937156111701185,-0.347243938904385,-0.2993061803702259,-0.24644931817871282,-0.3903519188266303,-0.3322180325274642,-0.1918315788117137,-0.17285678605420052,-0.36920071179733405,-0.32353983540149506,-0.31784490566516116,-0.4560305800655149,0.10073317991074157,0.5111770582110514,0.5452066325669892,0.5119375435457927,0.6054597143867071,0.5053447782156589,0.22919768404568583,0.558143519756337,0.6454113103440315,0.4039726387527604,0.41714740343520507,-0.34757840671155066,-0.4181258434975255,-0.4561287512957378,-0.2057156099205276,-0.32435471572951485,-0.37943518034099344,-0.32981460919008815,-0.302481003956653,-0.34282987427352757,-0.37547729197702334,-0.35759625975792675,-0.4279602032972811,-0.3754220747879848,-0.31181747883936756,-0.39816714156228367,-0.40536169334392563,-0.3681922132520729,-0.41432733195672833,-0.3980637817272763,-0.37912120886446155,-0.3222281446532134,-0.4157690775822587,-0.41523189185402937,-0.4230859034267368,-0.3947331548088656,-0.39106812811757363,-0.4021477306745087,-0.4197275003995122,-0.374961884160432,-0.43733585017471804,-0.35541592824548085,-0.3332027672437136,-0.36653614481306274,0.08915909120004734,0.14298170957922365,-0.053630920876141665,-0.07306347022010787,0.04465883988255624,0.15445844104503778,0.07592183078242572,0.20078628867376777,0.05637848926850888,-0.13189747412963207,-0.1198053278422088,-0.10214244452853523,-0.06535533157976647,-0.01657362170374734,0.14380703721015267,0.03855307651069168,-0.13860705846843133,-0.03317297647669181,-0.043205980565549515,-0.010132749895106227,-0.004564358234662416,-0.09319121192204166,0.037531122686946576,-0.004366994187195442,0.05184073975385233,0.05435013179676029,0.17198420571995177,-0.017129524931727095,0.10972183641503526,0.14613767522757543,-0.05416768880091964,0.06101648638026681,-0.06845618376973553,-0.008551617537922152,0.030430088611685616,-0.013951455758429383,0.11885804964778501,0.04064309297198213,-0.024116599073873205,-0.0012539979623636083,0.0747002681781018,0.09180226958372555 +Taurocholate,-0.013706544393094008,0.11192559595407339,-0.12811783216974104,-0.009250334316141563,-0.0429902019487631,-0.05672012516429223,0.11055951184753765,0.02539159376881121,-0.260991945875043,-0.08804594579136238,-0.088865796881338,-0.2140477620803197,-0.04391455085334714,-0.10954571639343631,-0.026461601959337184,0.1989807060630574,0.14318716031647924,0.10445324661564767,0.22982369743668996,0.0427781362049296,0.042351632295384946,0.04746422965692615,-0.032886468909370636,-0.2696947263676049,0.009754336685562413,0.049916058896719885,-0.1205908925621422,-0.04607447174703478,-0.021986305278188307,0.05110516564004561,0.16158410656634636,-0.024853661525794844,-0.08980647293305394,0.025831568003247558,-0.0016682158715806501,-0.2752697116594188,0.03442595203361977,0.13504753764959918,0.13687640088552414,0.028680858060156616,0.13932723254972174,0.17753301693218287,-0.24884579391181064,-0.03941063421043741,0.18725650636141006,0.064268593817433,-0.17534581241526426,0.156516568701528,1.0,0.1972869111943921,0.2078013615956693,0.004116200093606271,0.16533236613409244,0.16564080148864083,0.002379435945732588,-0.030767213451633416,-0.05646291762840664,0.18459362386552078,-0.0033882766127559367,-0.05110119783009695,0.18387648475187773,-0.013799108159621633,0.1532619793200677,-0.0009082039032312683,-0.04529218339771265,0.015739222563477658,0.10493909889041765,0.05088698969931057,0.0956748571266394,0.11149626622310015,0.057929777221617886,0.1502332813684639,0.15620888016021295,0.08363364066335777,0.07373927672590262,0.018910891095686926,-0.03892422513850365,0.00749482983469409,0.05027018291000369,0.08740971351768202,-0.13115500333355826,-0.1312824610137797,-0.1775325307190268,-0.05297143611902434,0.09548952162584681,0.13400637987282193,0.054971050972117456,0.041417326861856764,0.03916344851701496,0.13562461994885597,0.18684301571201417,0.192757717643209,-0.10840370289711769,0.14937877282477804,-0.020203522928741426,0.07488945334991852,0.15753746350879452,0.0061139559950330515,0.07687453371469515,-0.0014867491534400045,-0.0054894465738981,0.04215201034618172,0.11885164130682797,0.2324800269635746,0.11454443120716097,0.18860207921921193,-0.15221723034857443,0.06708191862575831,0.09269894132806292,0.021254439863343747,-0.016639788614446704,0.03561553558358374,-0.08424338401268426,-0.1888733925478661,0.1769944110958927,0.09754295877395076,-0.14623009688684516,0.0022959361519295333,0.26837753780249163,-0.08522911742894024,-0.11672359944421394,-0.04685817543467917,-0.11802112503505566,-0.17352641824922418,-0.03722362300892806,-0.10933771358183518,0.019339944473171035,-0.03844221993151538,-0.1135433431125146,-0.12012014728856778,-0.0779111140880691,-0.1150962009217667,0.007314624722756267,0.012521725862709377,-0.06614178534724173,0.19981299675309902,0.012897855757733277,-0.02881930243732408,0.026767642553325196,0.0949429237237783,0.017186847812089897,0.025958034172235217,0.014253941895156967,0.02546877033682753,0.1505955106805462,-0.0037346745003893757,0.005868354697688534,-0.028769011282884022,0.05356427709695806,-0.040163573627907886,-0.0814054694601956,-0.12073006589084122,-0.13878755967205172,-0.01744063765492374,-0.03846830231443392,-0.12397344985430535,-0.11229182870691033,-0.004286717627614505,-0.03999316862766955,-0.09561456207344288,-0.07347178405449342,-0.09735829927291309,-0.04393742804312641,-0.011201524821883142,-0.00890104151906603,-0.11504629583468264,-0.04796959718824928,-0.07048820527562857,-0.05166530146755038,-0.1368727045270409,-0.05365141050537655,-0.018861996739985384,-0.05354721471560582,-0.11228211540139751,-0.024806989926409215,-0.11808354937856932,-0.08313001732575451,0.015921089216917584,-0.030831413872157057,-0.01029975616020475,-0.05670527179632841,0.07863563852270203,0.11270159133453841,0.08401458758840566,0.10927791996206984,0.13712341011016918,0.038433094508913065,-0.0049932134930919915,0.1258614777980975,0.13596553332585884,0.08655769328507908,0.07135929347453385,-0.05608114060556528,-0.1201523191766783,-0.08249092392195258,-0.049416687341173327,-0.09740678216215244,-0.13365479669862046,-0.12424434600589067,-0.09018345212750166,-0.1239099777597019,-0.13814249240696844,-0.1121729569741976,-0.06386094817617685,-0.0821699704304556,-0.0745517599883957,-0.13528847157217666,-0.11127623376144587,-0.07867904609427093,-0.04668542985641387,-0.08304727663662281,-0.06596638113473442,-0.07094744780150196,-0.12845024167296773,-0.1110409143857121,-0.03746427002189585,-0.06659974687126768,-0.04876638735850869,-0.0740437518246063,-0.07506080038177511,-0.07749007778540544,-0.10562726160120557,-0.07313128009101853,-0.07291430370930595,-0.06981144476561413,-0.03828460406284892,-0.042603163456427395,-0.04652272029068011,-0.04879117536568793,-0.03997119584226634,-0.010156457685355419,0.020616968270256688,0.007533737526412354,-0.0023913973473098826,-0.05294555040253165,-0.013432029835737434,0.006148220487580643,-0.003534915988935416,-0.006559263425649468,-0.011265272464544646,-0.0320385488179304,-0.06480562385072938,-0.028137388142613552,-0.039855575304338385,0.022451279559385917,0.018694110173921485,0.0001712647885607069,0.015960660979574937,-0.00017885617521497252,-0.00838640533689977,0.016865953170710636,-0.007288542577327887,-0.04729346818136396,-0.06408808802410727,0.0016574381713211155,-0.0601829712222139,-0.05899892920912899,-0.02781013637913309,-0.021915672664245454,0.018651625367279517,-0.028460805388784455,-0.006896017097638842,-0.07394848072082699,-0.04580358618717631,0.01007296418245781,-0.05410347504597935,-0.04115620639189887 +Glycodeoxycholate/Glycochenodeoxycholate,0.1836060546593258,0.01164802349897683,-0.2743312188440658,0.14194131810189314,0.1308002669683207,-0.22840261135936055,0.3074236858007475,0.054517202842149545,-0.5651772465000642,0.08145274318850912,0.07161905556839104,-0.5448166389259592,-0.13051630753929133,-0.21552636800850267,-0.36455869347966274,0.10625379360539797,0.0359623327502021,0.08542136476566771,0.630225725517946,-0.2038044138301549,0.23255922594083367,-0.01044618805216033,-0.15694626145149276,-0.47788262586606944,-0.10993215774425603,0.7208009133137586,-0.045886872020078906,-0.058547732369057366,0.02369791886329786,0.2358541815427386,0.35018315789865595,-0.1763536141884048,-0.17328946311770585,0.01053550965843801,-0.16162628672194554,0.06007009908189065,-0.096925298399496,0.10798444185547235,0.5713885286934008,0.5135950715573844,0.18351335450766737,0.2879395514723009,-0.5497854196537939,-0.11623809464116783,0.5629152166490922,0.4878110976576089,-0.14396233374843528,0.6615891519839225,0.1972869111943921,1.0,0.1469864955172986,0.1663982939439432,0.081728215933522,0.029395389677963676,-0.1074521352709939,-0.04466929941443507,0.02593816582402823,0.10020685167604178,0.0829697596294245,0.08099565813724541,0.29063479855484375,0.2328032640552404,0.4489043529737844,0.04235241740475013,-0.128122656672163,-0.001757719441825235,0.2168736888632623,0.4838959455027657,0.38619420593752524,0.5138063689632478,0.3898730999755918,0.4513554249105312,0.3544347328241062,0.41813004524018693,0.35448037736924093,0.3031809541438884,0.020057455434693013,-0.0036237020208842847,0.4276612580064704,0.4632756209587837,-0.120502520170598,0.09410446430907292,0.1155788601607013,-0.13744967147995865,-0.06465791968068207,0.5493568859883804,-0.013815475840661189,0.5184529708870597,0.46827763163952846,0.6110156647676757,0.28201953130207724,0.5643543883999014,-0.4975219536691855,0.5641731509804438,0.09142912332155653,0.27159238584807727,0.27497253033705327,0.3092472284825204,0.19235838715221154,0.1222844016030012,0.005684191433907978,0.005455271148884041,0.5201839154427604,0.632170351543538,-0.020073799830344817,0.5849086916705415,0.039268387900926016,0.24879169154544178,0.48365115628711536,0.06238521462686794,0.016111788321273912,-0.23218096138591837,-0.09525790264284405,-0.06965216586661098,0.4347561171588701,0.21767987675130027,-0.011565439087325942,-0.06773050228703154,0.48197635652886206,0.1243421859478802,-0.011591414409420834,0.03094075587160556,-0.09233876331422003,-0.10257013784860049,0.015302010683544764,-0.03941900868684088,-0.022604642156286978,-0.15812474754687592,-0.21478049278932274,-0.18822003294748682,-0.07481666931306487,-0.11120457429643632,-0.20889314564148603,0.02199703779994273,-0.07363955774522811,0.546759689370225,-0.15721684700714397,-0.03469280425346036,0.12018287410064517,0.03704748366509509,0.18419506840347064,0.1477373694849733,0.1927356468487616,0.05543832220775583,0.3998697372621964,-0.26764962607913073,-0.2669781047318378,-0.3214070243899148,-0.19701328160138085,-0.08589694542387569,-0.2535593415892157,-0.4145330643137501,-0.3513175603625102,-0.28596690202182057,-0.23923042637120398,-0.3845329108535988,-0.40944659020741514,-0.15023197150484724,-0.12712611047858574,-0.19584360214457328,-0.4008651411193671,-0.3265637988844943,-0.056744403914201005,-0.05016631249974457,-0.16418836184432517,-0.33923233945079845,-0.09897589660739038,-0.19320520676718422,-0.1107390699794371,-0.30541708926462774,-0.25048319831283,-0.2202568725165735,-0.1842528898514308,-0.25076327921336217,-0.36777229613211365,-0.20094147814948427,-0.16261606284539035,-0.21252097124803343,-0.4165789453808858,-0.337616423652732,-0.4270939955227058,0.08927257564998815,0.4130352719289396,0.39443543705261425,0.4453539985153302,0.49656513538644337,0.3679482794415052,0.14624608113697204,0.49203591248216766,0.5306554347731248,0.37659828326798367,0.36380427673960464,-0.28478827024716435,-0.406662018864462,-0.40522355874515803,-0.22831839177575547,-0.3479506047806832,-0.4160768724551189,-0.35522627077474894,-0.2955907936470741,-0.38991001192148905,-0.39303200470821964,-0.35422377803636795,-0.2320307457066517,-0.24200167365541686,-0.29768555260647267,-0.395736749772568,-0.38104224439322054,-0.1847581154384803,-0.16835864443744808,-0.21205664718673914,-0.18887678111869094,-0.2768273057415555,-0.3707854212094053,-0.3591507361263044,-0.14549394456629602,-0.17204389212068386,-0.11523769589366437,-0.1534964093202277,-0.22559799661477864,-0.3045130740487946,-0.3869163264913673,-0.10624288151653913,-0.08202399907264536,-0.09295394254188492,0.029182715760478005,0.09154271927450391,-0.02499287101507681,-0.04355818573196602,0.03166599395312495,0.06498481379353555,0.05515885411073968,0.12567135603473537,0.015066731532207403,-0.08541750122263228,-0.11035908432079825,-0.0994714259336516,-0.07023279580430693,-0.03829065867188924,0.10593428845119343,-0.014362970537012455,-0.1261170100549427,-0.06766414359040336,0.035363315385415935,0.037749275838319746,0.04695914385587608,-0.027352323562271783,0.046265571423827354,0.036764551618252636,0.08050762355760584,0.020607172747661662,0.09742818238953595,0.005423009084362456,0.08332323689400328,0.09078869171137673,-0.06577699262908886,0.010422126910942561,-0.025864871566377016,0.005747872948914527,0.02943081419316697,0.017521043315737367,0.1372803260224489,0.01988750285890787,0.1020126745787988,0.012859599119491052,0.007293570623152406,0.08222243937652356 +Taurodeoxycholate/Taurochenodeoxycholate,-0.21161075695913303,0.10646723381216536,-0.05999166433581242,0.01552534836359722,0.09893247096015281,-0.09677026130741656,-0.020237857205765365,0.0638627375352376,-0.14593720828868462,0.10320092736295489,0.09098312032281383,-0.13591578205278573,-0.1950181191516885,-0.0941604217519837,-0.2008729888329559,0.21579707727255165,0.1538672214295017,0.18507321549947145,0.33476425683562994,0.06281095579907073,0.20337517971633276,0.17735882826257382,0.07057524202678866,-0.09048022787462837,-0.052527714789974374,0.2393484665346883,-0.15058007904425788,-0.1314518121350597,-0.08564440618500226,0.3653790447755136,0.21244507453033307,0.1016769531934914,0.0757523006688467,0.1285999416987844,-0.1783869933781939,-0.022383753654804238,-0.03562785075391007,0.2901460319596023,0.1813069484548264,0.22416396430347338,0.1006931375933168,0.0007467616673569406,-0.12970540888022722,0.08700836605427933,0.2243872090222867,0.04838959166480714,0.017779774933475687,0.24052439245138302,0.2078013615956693,0.1469864955172986,1.0,0.1324044632707475,-0.11528984766372018,0.17680821574450578,-0.28618922315842366,0.027830299594525015,-0.036236028453250906,0.20680314089798352,-0.056633820138079445,-0.09143773252896277,0.32352918178071427,-0.10040035670802956,0.23370865197213814,0.11747101687101147,0.02195768185229036,0.15821855584051356,0.22909955710041327,-0.059977034523931806,0.2968483088921455,0.09572896749293264,0.04532647889947565,0.28402579598652306,0.3247454548645135,0.05638293260994111,0.11175703182921627,0.012773878939200657,0.056032196868299584,0.09385925455343858,0.19284552914739087,0.12822096572816175,-0.11423672189118111,-0.30738463641430885,-0.24300034299409723,-0.013109681946932652,-0.12067023404411759,0.1765419826558623,-0.0038743670510093006,0.18105873312609266,0.17361916974542463,0.27614779735488776,0.22400447791852182,0.17108070109807605,-0.18345454142810985,0.20223567268696127,0.0478476398964064,0.3219575311216997,0.34193073159821263,-0.008682032876446819,0.05259169590019545,-0.13232756499181286,0.03864741328133267,0.0561801478313808,0.23846711939551093,0.17180970005186555,-0.3390402137681884,0.3412716282382193,0.18328495198327327,-0.00831480850591195,0.24321656902120628,-0.0035994803670105456,-0.015447996645703517,-0.01998370821759898,-0.014957488824377661,-0.35415297742734947,0.40742361550775674,0.14623868906143325,-0.09651968048418699,0.08418045474121987,0.3012964910397407,-0.022221189241885035,-0.11702011908342477,-0.059424283089390725,-0.028260675789544724,-0.31701556020809823,0.034698505366408144,0.06825364112922346,0.0011086066860908446,-0.020278338551574748,-0.09082507091141312,-0.08010477264733078,-0.05045152931659208,-0.0473256631094109,-0.1493197097510917,-0.14762125186535693,-0.018660268063203516,0.1784732615978084,-0.043060571949140744,0.0347316215267778,0.04808866813786733,-0.02729075619376006,0.12895786930946396,-0.0007197171081413136,0.06102258823991592,-0.04467605199014165,0.06759678004483588,-0.11799702413678825,-0.06280000971125277,-0.013014946695387875,-0.08657089286132594,-0.10556832608209313,0.06648841046279388,-0.08385426827612863,-0.24472625826201638,-0.09522785446187818,-0.005222424262733556,-0.018951798480743725,-0.1919927252085529,-0.17095375060290488,-0.2052721094872489,-0.11971210881878733,-0.03849245017317228,-0.17996390716248006,-0.25504258360626797,-0.19534337857127096,-0.16022943482283827,-0.06928871536434997,-0.1618062150678125,-0.019272163724403643,0.054194398671001044,-0.14828497403610122,-0.15264442202871906,-0.10026571119681524,-0.10764138956483069,-0.14616697203829782,-0.025723131185640322,-0.06253371324859434,-0.02525117077904428,-0.10575418016136115,-0.038942768209010103,-0.03765168380302575,-0.121956343419519,-0.0007371645642601696,0.1838616863388477,0.12525766343018604,0.17239112527287806,0.21942456053097223,0.14937531472031074,0.018486387732069686,0.14789125209818074,0.21979504779539918,0.08914960498192041,0.03737909235225695,-0.08440505572910563,-0.13738996482569119,-0.2086225377585416,-0.036252362667848724,-0.06432854267687789,-0.165258691461923,-0.16678877341248452,-0.0683686403075992,-0.12093425946253203,-0.19970299903615726,-0.19483229353548642,-0.18016372993333218,-0.16081222987551372,-0.09166359994521965,-0.19198134788208798,-0.22697584778861102,-0.22238657155414732,-0.23649213816794953,-0.22100184298182168,-0.17492542280367104,-0.13285797727081336,-0.22412978332274708,-0.24284241645458782,-0.18225537040157855,-0.25872051918864525,-0.2475046954430982,-0.21646517289699257,-0.21281851835015314,-0.17142010997942211,-0.21083658458422708,-0.25548831727674803,-0.2229207173329466,-0.2465286525845295,-0.03506962002009694,0.04333709314535046,-0.01066393868049772,0.010430796859013495,-0.05323506886379767,0.02252728347601125,0.03804975772338456,0.05654502226227332,0.009411803912104602,-0.05110933531723669,-0.023341642353133775,-0.010075189969360531,0.03172157155137168,0.008383411915236118,0.013435771321025372,0.019125326801603316,-0.03405575098495567,0.03733256701569391,0.018962510943586464,0.020927644488585,-0.029264280284874936,-0.06360128128104944,0.05394293106180438,0.05218560897102976,-0.005056215525042944,-0.01697378333046734,0.11983507569405102,0.03534796117950848,0.06368943121078723,0.037637641997745316,0.008847222137084247,0.04732165958233237,0.028393380517764112,0.03689822817948059,0.038230853700599955,0.0785516386470212,0.019179773506868284,-0.004782107641468083,-0.0073798606998798965,-0.0010896821178497625,0.02004916596700866,0.028717518097438503 +Phosphocreatine,0.033117105302002244,0.27534839749130946,-0.15652420035142334,-0.19837369243492706,0.36708000781524747,-0.12886741314678918,-0.21780667389978967,0.19607651818821525,-0.24035877390449809,0.36462930467227694,0.300017523856,-0.26026091442616955,0.06002779246220941,-0.2528351328383412,-0.3015002663338144,0.19839769734880686,0.1980575136198823,0.36587717187620933,0.26350696102206506,0.09789079314224754,0.1787515794093489,0.2897218017107596,0.2633303043109772,-0.12088833596770351,-0.12101678371765215,0.23782891607669446,-0.28539513567743063,-0.21127487269828257,-0.002289334069294112,0.23179269218563306,0.20022910133135186,0.18896836781979423,0.27315968253343575,0.2217799131426627,-0.44743916843451514,0.07371726715778204,0.12629076797818473,0.31912334906763623,0.19265385395757298,0.1837123439174919,0.04505995459391209,-0.09064139648882207,-0.25533644282559115,0.2483107383405528,0.24150666767983667,0.19891346240776017,-0.11247561880532021,0.3625973803578331,0.004116200093606271,0.1663982939439432,0.1324044632707475,1.0,-0.3012304901355638,0.04931879217483682,-0.3715406994926256,-0.11867044929900904,0.10041829884619811,-0.005061247130899791,0.18305815514826973,0.3063908706794693,0.011991298841227113,0.2125901208712865,0.2947857714786962,0.12140063331326219,-0.08591214962738554,0.06004061979808686,0.08985070792888993,0.2750567900888281,0.13259234725224903,0.2394666645592039,0.19339869463010315,0.29916541954960574,0.27317509808295276,0.2743857988312558,0.3067055693443464,0.20005215045066863,0.21553502119980703,-0.0012974501664951568,0.08448151880582322,0.0699582498879849,0.04666376443350311,-0.20363100790735467,-0.07446675513465184,0.13986257158727414,-0.2569709438742188,0.24674599466052796,0.15737436110671765,0.33620891360961996,0.37879934655688197,0.271464577523101,0.07733719042694236,0.3302757888156816,-0.0690942996728924,0.29251618384900707,0.07170564132062765,0.3110431554468208,0.11609289183879368,0.23174410679797322,-0.21701131392943163,0.08865718806666563,-0.05444058990905079,0.6595931028948058,0.5613082889809582,0.2081727858642832,-0.3345412020585411,0.17259302814034888,0.04094651772159138,-0.05620417158129947,0.18972624477763397,0.08534895722333719,-0.008661557084582366,-0.1442577743407938,-0.28018697411773824,-0.034278168388682334,0.2862726034849539,0.15057379691067294,0.37528568541761737,0.0576384970455517,0.27053148631745283,0.38200454184336136,0.33402849101665005,0.2912750719674496,0.32660755967516103,0.07375626921708688,0.20174647487925573,0.13755292490557278,-0.1935783887720901,-0.035348729111182114,-0.07592416446481971,-0.1450428595787809,-0.15195765888812848,-0.07110380098617494,-0.35238363056850713,0.11488206061337361,0.17875832674163086,0.20174962839692315,-0.25015778007661166,-0.025661411695220914,-0.0014922909356187546,-0.21290318693865493,0.1536217580494898,-0.12262745257422925,0.04214697902953908,-0.19228883413534886,0.07109967820692269,-0.16169856866554552,-0.15206351325325715,-0.04084303973335239,-0.2603606804991329,-0.2351013689374377,0.2566757813697292,0.05008620911857873,-0.22731798717465004,-0.03896834611751702,0.06288136721058397,0.15294497277036834,-0.18538816331997277,-0.31612803597194855,-0.39309474965175517,-0.24482663890194983,-0.017993447296173717,-0.13170205929319953,-0.3936931339687592,-0.45366079123990316,-0.4152888179559802,-0.06273636788070798,-0.4101002411938393,0.027733763873650407,0.18586739985150996,-0.17361625396629674,-0.2275832981342648,-0.15324286222307767,-0.13466882497215385,-0.22917446133152108,-0.016679548903575293,-0.13006387317552068,-0.08963269188132503,-0.19648177435388864,-0.052848547530690244,-0.1341491199222907,-0.19517489775174537,0.13521205263639774,0.32386721192692447,0.2906801678768641,0.2601811215537518,0.29972518942174714,0.3211463151897503,0.2132548046714807,0.27729508062657054,0.33116496941027973,0.20735157170815705,0.19195724184896004,-0.11465882529465733,-0.09478265868977147,-0.14890337281428484,-0.013036904895097082,0.01708460502274754,-0.055126289902880196,-0.0502551020569658,-0.01733443565066466,0.0037360632605641366,-0.0700501969865699,-0.12614422696210872,-0.35841817653135316,-0.2451343889504146,-0.011469024514629205,-0.07906090278103121,-0.16926641099777703,-0.3736969508194449,-0.40539885480779503,-0.37306111523316127,-0.30797389047912593,-0.10708302628388322,-0.1844489994403216,-0.2256225636534332,-0.40034082970220486,-0.4425738218590188,-0.48597423557778263,-0.4625412944525222,-0.3741583994902054,-0.2145194650636529,-0.22449923480633222,-0.4752919833580556,-0.4284693398050414,-0.4796769477263844,0.038155617799574486,0.15959044659601057,-0.03690582120386106,-0.04905946869160968,0.014003569831986144,0.0651524555109568,0.014366442098901465,0.07477184398500501,0.06540065261659046,-0.018600308328714205,0.026882093610128596,0.022099836290980106,0.02586954900545706,0.05163726361098769,0.021853921242764796,0.1107995440890996,0.02814074495007411,0.1156444511464749,-0.03527479518209273,-0.030175382984327665,-0.005492246440922608,-0.07178671200670825,-0.00035363097124624376,-0.027843600114091836,0.08292125989887675,0.06916103613770508,0.09924235907718963,-0.03285715131326809,0.11620071068289614,0.11429538578426145,-0.06558513615936842,-0.011500770683343212,0.016798994151935486,0.05439634718173279,0.06370504515931626,-0.02419894814780831,0.09111480964852028,0.0873100821378022,-0.1088318925156228,-0.004964768096512655,0.054620930163788724,0.0211785626799685 +3-methyladipate/Pimelate,0.07101947331460808,-0.22501654790926437,-0.07434599242862254,0.30813187977961354,-0.36772977570000165,0.15202365935546072,0.5090275690506947,-0.24638680184063064,-0.006803515484192809,-0.3655086859105256,-0.3413302646426091,0.01745774599088768,0.01608503957943127,0.09259453160503833,0.27008100032999705,-0.17562043990920828,-0.07600580045911638,-0.25891758224450745,-0.08081930211756236,-0.08139475871164067,-0.14781325900422407,-0.33664696000399297,-0.3060237000181396,-0.13335645763026818,0.07269457047065352,-0.07129960223287507,0.2528572403343361,0.22683199090127606,0.09507696652276867,-0.36495681557846166,-0.060571241151740424,-0.24221053243756066,-0.3425959365686005,-0.23233833496484632,0.6134683659344642,-0.05284450141243,-0.14221077896763357,-0.27077889559682394,-0.15583787844584676,-0.127360642491829,0.08388673824142069,0.29813129766444696,-0.019851569792281216,-0.32618030869721626,-0.10205380212528796,-0.1330481768668687,-0.07105902902466014,-0.23296773114589878,0.16533236613409244,0.081728215933522,-0.11528984766372018,-0.3012304901355638,1.0,0.06417876317142959,0.49541009272141645,-0.0300307418210659,-0.029660046537072226,-0.007043619574772335,-0.15926716258011714,-0.366035966407385,0.10031161301280074,-0.19943693163242235,-0.2893106784194181,-0.013436651966911824,-0.03742806566777735,-0.0371605250822855,0.01608137237236523,-0.16871076216857817,-0.028082417519557718,-0.17000005986804903,-0.20319061075746375,-0.3123121010626578,-0.3075254940129814,-0.2918664759056144,-0.32621769883105933,-0.24902595428487703,-0.3259502825368563,-0.011556039183510754,0.07711108319783846,-0.15294258116565468,-0.13610761265962745,0.3762307115710979,0.09525797665034116,-0.060976815916963134,0.416957802527917,-0.1578721612936028,-0.10711229845385781,-0.3296363294461805,-0.3802653086040065,-0.2012859643184337,0.09153613545410962,-0.20507088114146887,-0.0872365884437116,-0.16320485259033482,-0.11540399966612495,-0.2956220489579764,-0.18487007953741963,-0.08761978959494142,0.24331323478280592,-0.02694572352025364,0.025839743204472642,-0.3114971203999547,-0.2824834507430135,0.038261457720851426,0.561446231494323,-0.003927584552206173,-0.08435256989538291,0.044206663519323806,-0.17040728683136852,0.006901249639349547,0.026845230907197027,0.14874585138343094,0.3363504275500675,-0.041078198215470596,-0.27194960540771457,-0.19097270265084768,-0.3617698731420286,-0.04719254412847842,-0.16975081162244035,-0.29355251305133356,-0.3484891932512532,-0.27691164953752356,-0.38171747328644234,-0.13242385068970852,-0.14499748507156252,-0.1509046472166067,0.21971402934030895,0.17524939457873126,0.11551921132639136,0.15344673401420697,0.202613768874228,0.09458431704002111,0.42560287423348514,-0.050899070542701014,-0.35175499603762655,0.03652742548123841,0.32327505710121296,0.001800958531826937,0.024212522555256962,0.3362014953084259,-0.1822159517441002,0.1832360636477575,-0.060514878585111016,0.27071721683990485,0.1436373221696504,0.08976280864211002,0.08320778349954046,-0.10363486621152078,0.25109543708286747,0.24236261022538114,-0.29383368331782234,-0.09003245969577574,0.1131810373932307,0.06870900433084012,-0.16176932996836718,-0.17414977256839098,0.2073852909309495,0.3699249672240493,0.4281041753601022,0.148663721089807,-0.010686079511160348,0.12010398515474362,0.41747384937800464,0.44111396881130555,0.4256698122637133,-0.1505953608893529,0.4123085504696933,-0.13979245864184855,-0.22376524181590476,0.07292346012209114,0.1773708326303602,0.09591820038643552,0.07881848618799336,0.17335332924278427,-0.05162691095793657,-0.1250655645008011,-0.05515638982760686,0.29715612989559803,-0.058860531370145644,0.004015639658075161,0.11792270704958523,-0.05867359591088765,-0.1678111697858376,-0.18546333053879396,-0.11148819049618142,-0.13231681952110708,-0.24780481521534525,-0.18142893501395074,-0.07997998847650024,-0.13532124179178104,-0.08715103686734652,-0.0933651231766344,0.0939776212476069,-0.005985701829270298,0.08514348991894229,-0.06809649381982516,-0.09733174492112322,-0.09422582789492773,-0.06733907062223511,-0.04521718246370565,-0.12426052060107115,-0.07843281690193434,-0.0032825500925774574,0.2488603370747946,0.13061189302324855,-0.046051038577382075,-0.061381493404038964,0.01818191235439936,0.3091757777066508,0.3538714572165965,0.23323025795831467,0.20449829272992298,0.0017025209375715596,0.005650753531419995,0.03199599732142428,0.36796419635128497,0.34108083034167497,0.39897295831098584,0.31407053223185477,0.22979523527387208,0.04724283059820623,0.011799152180134992,0.3855146631800993,0.33678608104446733,0.37708074913277256,-0.004282347503051743,-0.030885945595973782,0.05312811857086019,0.0608805122294128,-0.00745811869881557,-0.008254771309614679,-0.01563487390555632,-0.09622386388957854,-0.07548889250134624,0.0773114050847682,0.07032579719571669,0.08633949498301513,0.04392100136437326,-0.02441953370267041,-0.024336334991620016,-0.029458455478055968,0.0487238097113499,-0.011886659484740476,0.09172292024277594,0.018272101130955364,0.03714242568993457,0.06378246503365947,0.0033469800460988624,0.0077466780023630905,-0.028193992705324987,-0.04754967016419303,-0.09403509393117798,0.014405576588252563,-0.09888280352734866,-0.10778380213119966,0.009155951802617534,-0.06969017914928581,0.0039534305212419775,-0.003759213260503837,-0.020865054156697396,-0.004947171583790857,0.04322858946323452,-0.0236288169151172,0.04493989073872959,0.04049973844348926,-0.05416112151012921,-0.026561112329521314 +6-phosphogluconate,0.01811509349983706,0.21685111773328228,-0.1360939275461881,0.05787191046284377,0.08186508445844713,0.01924655112732238,0.02516404445945746,0.08232345901737383,-0.14050673808743316,0.0398567456929442,0.0652262131292762,-0.13408661366459462,-0.03945635277543953,-0.09100415711512025,0.0013747148933515824,0.20852790992933465,0.24654085016052818,0.20052422137482104,0.1285875178311535,0.09266096058466786,0.021979217697595088,0.05208564002025225,0.04269977809073896,-0.10436350310949834,0.10730552976265709,0.02585547244811824,-0.10063195802569289,0.009259320097549727,-0.043968719339592774,0.06356796046761537,0.07580840562364367,0.042830674054654495,0.0731822451169901,0.02522684158261957,0.08221049647861466,-0.043089768024017344,0.09940430162967277,0.2754817084333225,0.02685771343122108,-0.07752166791908284,0.03138387217423086,-0.024165626699534596,-0.14216144690696705,0.006881888766748052,-0.008583818007079191,0.015695666420105978,-0.14025439580634538,0.002596831444635213,0.16564080148864083,0.029395389677963676,0.17680821574450578,0.04931879217483682,0.06417876317142959,1.0,0.008100313678537873,0.028615135737589895,-0.03894249058591058,0.12983525078699054,-0.08356676957205152,-0.14682388210868472,0.08579601819677282,-0.05701969785701437,0.028953675322270764,0.041837955421851994,0.01726532688740379,0.004841136393437058,0.1497093558735664,-0.02085569213991704,0.10455200572997593,0.015192915215633025,0.004749275460439352,0.030155424102061335,0.031045399856601468,-0.023050189689851164,-0.02144887092592968,-0.027120891956040723,-0.06520226666476545,-0.038409689568070574,-0.03299013527027475,-0.011014082845885583,-0.06401765792997328,-0.033801283182538756,-0.03904021564214999,-0.08507919833294342,0.08948670642773832,-0.017449214558631816,0.11838420937271918,-0.04075722829986403,-0.023529944849208187,0.008393538235421343,0.14847049345883767,0.013534513700818969,-0.04173647976219667,-0.0064627370898677865,0.0824064385256036,0.06997022609212139,0.03396382091165496,-0.09531086926342357,-0.007005494650874362,-0.021301228891455064,0.02918397978819661,0.007226237366316645,0.025801020657430743,0.03239611165435343,0.053419126948164586,0.13152767525472625,0.08751136286959668,-0.0667733480738508,0.021681836537328372,0.061201568848813066,-0.009230810827484974,0.1002214847118415,0.15617755753612644,-0.1198962513450134,0.08715101162679395,0.12076138937578212,-0.11685328128740281,0.02354831426026846,0.07507030424125788,-0.04094209043576509,-0.11746421346249136,-0.05534125057133567,-0.10146417407125073,-0.08392129094008517,-0.02940831229941352,-0.05761439985623892,0.007730983468559335,0.0961671433902365,0.001195448620242792,-0.021522878440843964,-0.012591168275062375,-0.02404329240001689,0.06092911531225802,-0.07664656122122195,-0.016571482766929123,-0.015866193269059123,0.13900845388748295,0.00832996974756625,0.029463686781449464,0.12293107610047249,0.041883463357062264,-0.003696056406893038,0.0539601697215394,-0.01022349948555649,0.1199489589445343,0.03800376021729878,0.05885909396537526,0.029014148341639755,0.045319790448146546,-0.02311602718265193,-0.0390674065947043,-0.018084121417071095,-0.06397469531205381,-0.015339292621515531,0.03456485745161749,-0.0036172879947950483,0.0007639104657313083,0.03041945876143313,-0.04418104301261348,0.009250050235278277,0.06238574815250977,-0.022039696670761014,-0.04334856839089191,-0.03498293776752651,-0.02416912061087941,-0.018375165905839496,0.002375073439479639,-0.026189294433995258,0.04159260323888207,-0.058635437547722956,-0.020273585935463103,-0.06101073578807906,-0.13310560611029726,-0.037892892935320194,0.08076264211334834,-0.04279972928732853,-0.03726636761555934,-0.012870522355284898,0.0573195741735525,0.052054120181603616,0.029666593524038904,0.08086726732872686,0.10547496693196279,0.08466410033537848,0.1336379843882324,0.11729784698584374,0.05125936401153981,0.00960776305101415,0.10847109943256511,0.13204712244280636,0.08304228766547365,0.05629540656257251,-0.03626047135223161,-0.08900089171068477,-0.028504512832933968,-0.08528662277531578,-0.09302959882863242,-0.1019375439538092,-0.03418753922750735,-0.11371965523062358,-0.11380599097976417,-0.09165760881856734,-0.043357888395574744,-0.10199931585336654,-0.13338758576832213,-0.10754560294879512,-0.12380642224897846,-0.08847030306780677,-0.09738755422292662,-0.04405555530155112,-0.13654356858032474,-0.1285063533626982,-0.0965349701764955,-0.13413038752181383,-0.10949250531035601,0.03106820151684317,-0.06636398816906056,-0.07271892968128976,-0.1003031481734941,-0.1636326360216621,-0.12458552238588137,-0.14216603700734787,-0.1077415291986185,-0.09961115662164742,-0.12330408380105805,-0.022328258885346973,-0.008873336007487671,-0.02082805525602263,-0.04748367081248226,0.02344211669956127,-0.05385046100084115,-0.017281116217116033,0.0415025643127868,0.033009876722672755,0.0034900034534449064,-0.05481078439631784,-0.05202467007550884,-0.025795211622324937,0.02280213172371005,0.016116318916655718,-0.0192016356266706,-0.04961911075178977,-0.03303665360455251,0.09148300748177003,0.029803031975484756,-0.000346560950205117,-0.02437424461358576,0.015255806361628314,0.016184625106620942,0.006544749062787596,-0.04256797104177228,-0.013148227235335222,-0.023193990706514515,-0.0074162853717925905,0.011335811716690788,-0.03266596217553073,0.006894142136642512,-0.026678748771886435,-0.0021675708134856076,-0.013470573449388032,-0.012419063942862513,0.004294870236625753,-0.03049324718475084,-0.03345267628313639,-0.044919268602377715,-0.06652817750248123,-0.05434782674559863 +Alpha-hydroxybutyrate,0.08161374649502676,-0.23165136478197138,0.008575354714593933,0.2927711143773545,-0.43104250604929534,0.23418517006493011,0.3628666591446399,-0.2972629845352165,0.21134582470329535,-0.43564940209941183,-0.42059413746398083,0.19877898181589262,0.15471550160683203,0.235621171015949,0.4090031823716192,-0.20090447322872743,-0.09524887994031235,-0.3292650356913042,-0.29849275489699195,-0.07044729891530724,-0.211883397720396,-0.35760076141935687,-0.28579551449395846,0.07950909209738763,0.1628889411326528,-0.26753832741472844,0.3099758078788318,0.3134668918054854,0.1565691605243538,-0.41921457342573093,-0.24218865063616632,-0.24247920874990836,-0.26286343731104783,-0.21469498349687816,0.6481699651865762,-0.023552652747836102,-0.05694785554591571,-0.34121613700983044,-0.3236151124954051,-0.3221650067655384,-0.019751871802170737,0.173970412394431,0.19990194109381865,-0.3311604379860741,-0.2927876829214547,-0.2619065031890649,-0.03302353851584472,-0.41760877235710514,0.002379435945732588,-0.1074521352709939,-0.28618922315842366,-0.3715406994926256,0.49541009272141645,0.008100313678537873,1.0,-0.026148959391605796,-0.031564982679026,0.05844436286294983,-0.05975675087429424,-0.26849259497700595,-0.03684484277418384,-0.15763300261255922,-0.43142500368847075,-0.10237093753414685,-0.047236785851601334,-0.12296952088869717,-0.13243848331120675,-0.3048828510060301,-0.24995786203808149,-0.2879972573139865,-0.2303362901408797,-0.46873682508482367,-0.4337065377410681,-0.3524450935193354,-0.38988169007229184,-0.2687721933501227,-0.3032712957224562,-0.02083547095322559,-0.1484641297151314,-0.2670381308901084,-0.08969714739470522,0.382962437587,0.13573198258263974,0.031195924389656376,0.5062642201699947,-0.34182202047350185,-0.1091357835685118,-0.45195581779960114,-0.4654480214488544,-0.4060891195154162,-0.009694828547249582,-0.4226696477427928,0.017578997952268013,-0.33483100297355534,-0.06418573632462284,-0.40651377297125213,-0.25002842270298486,-0.15860032788221795,0.15081768645070595,-0.05143741381660378,0.07960615134410161,-0.3310737046488003,-0.4507495763567701,-0.17473323189695505,0.5371645477107803,-0.16510738414783563,-0.0733098949707973,-0.016214729463345536,-0.31532446835014877,-0.023745311665443948,0.033285700631106974,0.17992093784181548,0.40986996121889885,0.14354532793233432,-0.42164570036881377,-0.2887414921863106,-0.33338033469803197,0.014866643880733301,-0.32794376042499984,-0.3774093391408916,-0.35163982857048826,-0.256141353284434,-0.3636377497981286,-0.03298166086889276,-0.13047716782490365,-0.1874989810062051,0.21914724205609262,0.14834771183956022,0.16324058417681192,0.19615373326938043,0.17413783723789977,0.09985324559371274,0.4859133789664834,0.08536688041876966,-0.26529053132827335,-0.16670058323053116,0.3465000374644048,0.04418063791538024,-0.03099560841244541,0.340276996058719,-0.24581928102421388,0.11255326505405819,-0.10937535165409269,0.21964744562148425,-0.0026293624939493225,0.2007754927717147,0.19929183629731517,0.01638842582554021,0.4200667360310672,0.33076131192279445,-0.24696394005721362,0.03281565918239265,0.26556062388009233,0.14405910972775093,-0.03868392629053608,-0.07194789561264366,0.32092113256123234,0.4227910152042591,0.49978213745646904,0.24763795511755665,0.06706621794758086,0.2008273765394307,0.4281295286341585,0.4825653554468221,0.5193407478608796,-0.061176206654669774,0.459539666209178,-0.11443978013102186,-0.21941641423545763,0.15230644250073705,0.2873565412120354,0.17653592619264627,0.16819751673242347,0.246026471733723,0.048939989553798705,-0.06957049747123034,-0.034257154714734034,0.3351671124115522,0.09227767200449147,0.1448077561161345,0.2736570306829228,-0.016992893751854428,-0.3047600997733483,-0.30532853611262123,-0.22737441889573395,-0.2913833467513484,-0.3661844231606553,-0.18323730826114756,-0.24271034479076822,-0.3169094005238824,-0.1665900173677773,-0.20583137282916603,0.16870650296641426,0.13071574305562542,0.20903234172183607,0.02500027530272586,0.00919090254605964,0.04521955169669537,0.060035313337148725,0.049902020289601015,-0.004401384678912629,0.0615451346726003,0.12120990824541053,0.35259632290143295,0.23413414636630175,0.026095219403050107,0.06816137542917777,0.11264049726335386,0.34483388698660633,0.4240423316926241,0.3393789969206121,0.26085706459355906,0.07252331224580134,0.1213306415144974,0.16246147761348706,0.5098113510964735,0.4184974418983349,0.4595417040526752,0.37879005217206213,0.31341752766721226,0.1339747088070419,0.14141114157824766,0.41805650194125005,0.3730319478887318,0.40614055972674473,-0.05066293749000951,-0.11449678379488355,-0.00870109926304527,0.045283061727843764,-0.007682115080817268,-0.10473939267082852,-0.046897468326853105,-0.14252582892059304,-0.08578624968698732,0.11559436622816308,0.09029602664993,0.07577048607159065,0.03239952928758932,-0.02089407161503215,-0.055923320943472424,-0.03307962545276669,0.05388077651317288,-0.01840387248673083,0.09250233606693967,-0.002705292511989684,0.02763399734908848,0.051580808388299024,-0.0643989876821398,-0.037619700637261416,-0.05248399669382269,-0.07520837819871566,-0.19546005781467787,-0.0332939062492464,-0.12190413013853162,-0.0995242346778562,0.02211894888275522,-0.055809996670009236,0.06271835126636792,-0.006336778878487919,-0.049545626479679125,-0.03786248518151595,-0.018291894952342052,-0.09707979992293263,-0.007958687362546629,-0.007737617075901334,-0.0669308343302338,-0.08096067352494143 +2-hydroxyglutarate,0.04612307683043817,0.0757525264534589,0.2825092135414126,-0.037648131248761166,0.18286187905302032,0.03874265714003752,0.018341881337682817,0.33152989004068606,0.17234556329630957,0.15130218388476357,0.2320803820940414,0.1721870514270271,0.07672924132490454,0.09209499546522328,0.019891235602775996,0.10049999790734374,0.007406933634841616,0.02790674482492648,-0.12641622398280242,0.2157638182576541,0.03396718002220489,0.01511975826893201,0.07924916029319953,0.1637553687560967,-0.026432077427826734,-0.06482388914725448,-0.04788908261037176,-0.046085255364568624,-0.013362571189394249,0.13569926374914795,-0.04907537455819922,0.25298675925806896,0.18984731612781017,-0.0027043330405968702,0.023089668353757996,0.08897080631846534,0.07446579253730984,0.11603610684421677,0.021446241779684187,0.0868693969252097,-0.09538828834085736,-0.12326983320561846,0.14423090590093163,0.21454464985957006,-0.1311440463478942,0.03038830558613814,-0.025358409037414365,-0.0460264196620021,-0.030767213451633416,-0.04466929941443507,0.027830299594525015,-0.11867044929900904,-0.0300307418210659,0.028615135737589895,-0.026148959391605796,1.0,0.04883876118897676,0.16221283778060902,-0.030305708482970487,0.03509809595025773,-0.10484322671763804,-0.15266909543352739,-0.0784790977909378,-0.15408682776097118,0.2427232305629542,0.11777852096270253,-0.04188964402383424,-0.12502388765612785,-0.014810033864482732,-0.1495695909857095,-0.13751584334619246,-0.0800323142331425,-0.04516262073326087,-0.11064915413546758,-0.10841277030678015,-0.09397350106998616,0.18602568792207125,0.14882039124171145,-0.016962746754833533,-0.02037742872474621,0.16516179621086743,-0.024370934192946267,-0.01900556729508212,-0.0012363261479806699,-0.055418181849317405,-0.03733772557236922,0.010252013624273273,-0.02744559483734544,-0.06633261381009041,-0.03445005502964864,-0.07315269995408813,-0.07865533195904924,0.09701802851136228,-0.10187555871965336,0.06309791179026232,-0.07205623017797609,-0.07511654472184566,-0.06081961570210394,-0.03399973252185923,-0.040694930366232396,0.04495956013073596,0.025508411603681832,-0.06767717476325168,-0.10149690658774128,0.016552409921396387,-0.13864040940947395,-0.05365055694752471,-0.01760393383312658,-0.05540357542092408,-0.011071929567123948,0.044288945737408394,-0.07797098246652807,-0.03935699415088557,-0.011634954086344981,-0.03662990095409638,0.052497681939309905,0.0596399770994699,0.06545134745646009,-0.08489720713303853,-0.014249811769033794,-0.009596720455375869,-0.03695965300736361,-0.03036603115256119,0.12212032510934022,0.14292921914694529,0.016558686956295855,0.08611226492014411,-0.062043809193522856,-0.07776752978415459,-0.06516861793331133,-0.05216257458674395,-0.07120449228565326,0.01650623136247048,-0.01955247163357494,0.15628886726284594,-0.11553199065836744,0.015611212271700179,-0.10546430262778035,-0.13964505074164005,-0.09473302418319449,-0.14201092565621795,-0.11010794126435679,-0.10266457848761659,-0.06791481436524226,-0.11081058075429719,-0.03867699341428548,-0.01673313834649751,0.01056000994371255,-0.09159277598766459,-0.07379462818675381,0.11145195384231114,0.11504246836113097,0.07733569276671713,0.06481172407728131,0.06968884984822576,0.05740164786168772,0.0204597922114176,-0.05671752812614634,-0.012890312700187506,-0.0006001962207399675,0.01601854667976883,-0.014915951829185616,0.013802098062793703,-0.006831345229737272,-0.016958745437603943,0.06620201786421076,-0.012604339004754014,0.008791413199378774,0.06735954993572926,-0.01664781454264468,0.009896173820186458,0.09294211390911282,0.00047424369581467704,0.018398884407198685,0.01060438875769091,0.05253975228810334,0.053628729593878176,-0.0046334035422830495,0.09081176766079034,0.05548261594832015,0.05127777628015611,-0.11328070330347033,-0.0904688586923677,-0.08787074742912783,-0.10571073753573929,-0.09296428051521154,-0.0909575195533884,-0.08015992540775652,-0.11394666488766744,-0.0993908593859328,-0.11148864175648697,-0.0991706614534152,0.01300432047254604,0.030410926898031775,-0.02232918148886663,-0.02105854877835412,0.015621402682538716,0.040078727759150355,0.01630589898797586,-0.0039754004692582065,0.01757973440916145,0.019925411441096313,-0.005444598779881719,0.008213986885535809,-0.01688411921515721,-0.024839790078142847,0.004246528609130249,6.406729249819952e-05,-0.0211561426531886,-0.052927286945368614,-0.019562132952580972,-0.011367975381176742,-0.03574319102274121,-0.006038736786969797,-0.018069702149621968,0.016212899566470398,-0.03102631850396425,-0.015296674904273826,-0.01679025343035927,0.007625661603265322,-0.01918477118603974,-0.005619482305031181,-0.03548848487641066,-0.045748503417397356,-0.012987786667403571,0.026344731919924855,0.007126980545687915,0.08583998471069412,0.116546034511159,-0.10563115304609469,-0.07474923198309885,-0.039199967818174475,-0.06378365097577732,0.03900320103953643,0.04466953652495476,0.05500804627916845,0.10766925075629294,0.06539280876434904,0.08565268296354511,-0.07907686173712439,0.06962338695322302,0.043518994753067926,0.08873407601550551,-0.076927558747527,0.0160780852980847,0.052220735202451976,0.0766574033125822,0.006890057172502218,-0.04876300837960103,0.06829487887515621,0.0613277742785755,0.01161980505019727,-0.02820602870306222,0.008812549112331786,0.03761607365814546,-0.02041113295170689,-0.05014890124215673,0.0783129826605026,0.13122264321293892,0.11581280104840729,0.07888322854712512,-0.07135581100965392,-0.05117992687207962,0.05150019890879947,-0.00482693284372437,-0.01641248181507246,-0.025763006855996206 +Inositol,0.062094561640770714,0.10119877516539476,0.08988595530186243,-0.024478050197689522,0.15823131408704455,0.07779324781057287,-0.032777589299264595,0.11787764060581966,0.11171779115074748,0.17728819838832402,0.1915500855930275,0.0929023618565197,0.01401811186786351,0.03314372096383319,0.07065244332097177,-0.050479925102947895,0.12159986520086379,0.0756968296303286,-0.03799069359885105,0.104840887424703,0.08718639371599224,0.0937935027048174,0.10883466898363062,0.1391145689844195,0.022193611042979556,0.044255532563627346,-0.055062625210059675,-0.06815542934521639,0.07297971425729646,0.02288304468185194,-0.03709850378385371,0.11464139976364424,0.12370817717799855,0.10452252473633689,-0.03736244339136569,0.049207116836359005,0.05076007319130431,0.01962767174690501,0.0058646880940617626,0.027855936788268865,-0.03847481004403393,0.09071203748671147,0.10029986643194035,0.164776532198977,-0.024704655620889634,0.04262909958336415,0.0985847925551438,0.02835775963814235,-0.05646291762840664,0.02593816582402823,-0.036236028453250906,0.10041829884619811,-0.029660046537072226,-0.03894249058591058,-0.031564982679026,0.04883876118897676,1.0,0.011490186536822414,0.08268480979199254,0.19988091407638406,-0.1636022787305639,-0.08225545529978481,-0.09715358944241702,0.14421846861857937,0.15894874679200807,0.20261022621733438,-0.12530628715622724,-0.0548879355785072,0.015442468549388072,-0.13553990898368226,-0.1568769150204495,-0.1044441422394549,-0.0833406093043114,-0.1323555983376291,-0.09990780727828613,-0.13408816039992533,0.2072352526617818,0.2265687398525316,0.09557051605027445,0.021599131547425363,0.13183047336486306,-0.0010858598830475671,0.043454882066686795,0.13615703351633943,-0.012607925064451504,0.059853297971669765,0.046838496694382475,0.10864342461092832,0.100846756889559,0.004615524832383196,-0.06435956442228614,-0.004903956780332155,0.11529591673483183,0.0011894018031699577,0.1415218553560488,-0.04970897833649997,-0.15874471574991547,0.11646547672881657,-0.02841533390620146,-0.0041352414402897825,0.06682656686459888,0.1140126454779181,0.046929215576150554,-0.029883230250578343,-0.04967527051572749,-0.08438976483875847,-0.001769120893757876,0.030063123088260903,-0.04369449934357173,0.04323125685207864,-0.033080146409264044,0.060416916344679335,-0.06939605627510538,0.03062604632314152,-0.01979157678745904,-0.02759709935917403,0.22200642260569595,0.08909900130175831,-0.008791292270713957,0.12132290885325023,0.11945056344332418,0.027944204401467932,0.07570454888182686,0.05436979930126621,0.01878576090472189,-0.0391249841686252,-0.012225208101635718,-0.09185030371098835,-0.08311533632060294,-0.09851548118123282,-0.09996556310851082,-0.11431392838737509,0.011688343390210073,0.16409304221330043,0.17168655091487944,0.052208277867929406,-0.05684876283604942,-0.1565513492018078,-0.15986481594246488,-0.11627692038170277,-0.09708545621944063,-0.17336236354259515,-0.07737078578237724,-0.16318070090160652,-0.08932459293116331,-0.05663311362054897,-0.035533087035027035,0.03952441709339536,-0.03674843076747255,-0.08532825432510945,0.038280527261783895,0.045745145245862436,-0.013222854624912433,-0.03635256428798265,-0.055885431889735694,0.06694432834842415,0.017169899479168086,-0.05988679684301798,-0.06628313638459879,-0.03781832197584306,0.09379633180469196,0.08309682467874027,-0.07251562045099084,-0.08371314871675067,-0.006244811151221892,0.08858871687960418,-0.00928822062395341,0.02859728611807803,0.091676632751542,0.05044676893962029,-0.011772366164077815,-0.05240490022703546,0.011657871817060968,0.022645712555354636,0.07827641768453845,-0.03294706676627504,0.009960345700161011,-0.013745084190839762,-0.040546902538784346,-0.0623531667759069,-0.05713207082084999,-0.029315306091079192,-0.056452621334616315,-0.059840099414253604,-0.07184500961445481,-0.05585489848508525,-0.04698166815414138,-0.026080634918764167,-0.07802070377403664,-0.04354382480927281,-0.06467555153821775,-0.08403041240900364,-0.08040486287369848,-0.06705979876412038,-0.03789227410103659,-0.08695020901680088,-0.0582762824845655,-0.052254917887400346,-0.03477760729269308,-0.07450872282510314,-0.04780428879224963,-0.030765571378925282,0.004092117620040829,-0.10266766861551156,-0.10371024326491175,-0.042266312227939876,-0.03163854439999163,-0.006164646458770185,-0.07190789985475733,-0.09743073399656149,-0.11083249184417045,-0.05079470076289452,-0.01303018268586299,0.014834206230263942,0.023934176187946236,-0.05710959049402497,-0.08370317073779561,-0.10727494825260582,-0.07350612294639305,-0.022713005270327442,0.019894763736614033,0.00857087957201462,-0.0741057062611955,-0.0731866140602548,-0.06230132709626604,-0.05411178373477745,-0.0486519690548756,-0.06282927527277833,-0.02205506219982608,-0.04543497278718713,0.01635655786542366,0.10149960836350241,0.022037022685725785,-0.04859912142018392,-0.06724100417929828,-0.014075902305050108,0.0356443411730042,0.019466868671728536,-0.08045479147218686,0.023055577008876137,0.07149872679988188,-0.007932347514193815,0.020050963769121063,-0.02718318204403354,0.006954243223592277,0.014960703812926253,0.04665506444367588,0.0460360795044349,-0.0035610706332074556,0.03006417912031154,0.022921793215967,-0.037406655789173765,-0.004653379472380857,0.010701579151411482,-0.014793486723734341,-0.06407222985074826,-0.10731097023852307,0.002735713827177221,0.034353842424960666,0.053269050059119964,0.07006761387133326,-0.007904352998101263,-0.014671169110238302,0.013253935142202699,-0.0409629663151211,-0.041273464756529016,-0.024486763633569938 +Malondialdehyde,0.09559852921204759,0.18426124285709267,0.13622728708788337,0.09215910775388214,0.09175912661224456,-0.07258753973554997,0.09654126364883055,0.16490257433343694,-0.007874242679824688,0.05904295412073033,0.11451314588533382,0.00117663334471151,0.04134768318080483,-0.026333577623217398,0.022291213370207303,0.3000325847240294,0.10734733151495988,0.08815657735139588,-0.027004665940072302,0.15589941071195795,0.14319125442162053,0.10955673337087438,0.07473763011461251,0.015393137823729221,0.08147090203650148,0.11965656977285816,-0.0753566709643489,0.042845682758122484,0.05949828396005414,0.5563116112249014,0.01061172884270027,0.11578416188072814,0.16371303646219687,0.0603087954485552,-0.014754349181706337,-0.003355567669149971,0.15934294583505526,0.271897391113483,0.13114611878321158,0.05475062362780802,0.018871809193478924,0.012297942989341913,-0.0007736720674435731,0.11075566913202324,-0.005504242548722789,0.13479846864074407,-0.07496516354435184,0.054061645299202536,0.18459362386552078,0.10020685167604178,0.20680314089798352,-0.005061247130899791,-0.007043619574772335,0.12983525078699054,0.05844436286294983,0.16221283778060902,0.011490186536822414,1.0,-0.03824318056036194,0.04859041837487587,-0.13794232718233898,-0.012436683593849345,0.030002187135905262,-0.19898906974197836,0.02447401515284482,-0.051330770060705244,-0.08697133259544479,-0.052788036061755354,-0.014322226587940285,-0.00640360166718265,0.021786823559502563,0.05063960159452841,0.0626206941581647,0.0163763567154385,0.02991020745141284,-0.005103395913532243,0.1560505357663589,0.015296837526347034,0.005732898897331455,0.07687347132455943,0.043008056151074454,-0.09563455487604959,-0.01601301133184815,0.01206923589942087,0.12199358435453808,0.05372843872952501,0.13366692088560594,0.06635860690461307,0.09431755592779754,0.07663859684719501,0.11307228432647314,-0.014106788673523054,0.012400187412803066,0.012856815191227692,0.23411948177798617,0.07484091454012858,0.10609288230689956,-0.036380323628514157,-0.08283980166159303,-0.03319311097332978,-0.015305265874149572,0.014476832163404625,0.04494967552395398,0.039255849408438494,0.007785803785104948,0.0024003293117224028,0.11206770545118104,-0.03704006272348312,0.11796100323813424,0.015907836735280897,-0.0472484607169363,0.06295385794201888,0.0049210766898644355,-0.03541171583172166,0.10966462278081407,0.05716362541336346,-0.02786656995672211,0.08543183028136903,0.06754474181674636,-0.09547404443801484,-0.015957855003928226,0.007659414854171635,-0.019387867839664005,-0.039784921866068836,-0.08303073025391991,-0.05928997446868868,0.03051798362819063,-0.09090688431693111,-0.1333844260611806,-0.15148506787089716,-0.13432387535521856,-0.14449106157757732,-0.005954910257592093,0.07453291682043323,0.14238570209426224,0.029872597386283846,-0.01333096470164784,-0.06994176900417858,-0.15353660937595676,-0.04797664515664896,-0.10392775662701544,-0.1476536580681924,-0.061716432676603004,-0.15289151280703164,-0.055356555027168616,-0.012456354716958343,0.03612606411006112,0.04567791297128692,-0.028709283283150606,-0.08216147807420265,0.00449886371256303,-0.029104376033065805,-0.004617763264369815,-0.03238007291318131,0.02150406276796072,-0.003365545994809265,-0.06769553371807101,-0.030603185646918947,-0.09228991057025976,-0.030365015345303482,0.05424170930768551,-0.06506276593095538,-0.09663299148067331,-0.05649855112051911,-0.006020354761326304,0.013534480764697165,-0.04644874035028899,0.017090971674946567,0.06840292015850807,-0.08551491551271297,-0.008224587560656933,0.0037748407348098083,-0.04277039708820428,0.002684588512909338,0.05160252220918502,-0.003111778384500489,0.032666509832032044,-0.014746480023326649,0.10318849814589559,0.08779021205276816,0.044400416371308364,0.04633358158245774,-0.008309014238662753,-0.06464462878435627,-0.008416953508930144,-0.01929599579068118,-0.06536443594607977,-0.02426767512975556,-0.02983615195007906,-0.020203875343191638,-0.021078449079560316,-0.03656955808559992,-0.07687120506927307,-0.09080351475184094,-0.06287142142052023,-0.08751325765755068,-0.1173903476258937,-0.11977230429786481,-0.07674291123664717,-0.12638371631126058,-0.1336808069043551,-0.11855888668282247,-0.07181265086343928,-0.12085928463938915,-0.12692392904151514,-0.11485385501601279,-0.1408862785467605,-0.11877944810536017,-0.13078238304683557,-0.14847108397002104,-0.145091541146487,-0.12210209642106744,-0.13847789446469294,-0.14165355137069044,-0.09425461496710068,-0.062320132375769124,-0.1338332602473035,-0.1555975381925962,-0.12268801737027496,-0.11468554758599048,-0.10359983542841919,-0.11221792009784123,-0.14294877542867865,-0.16105333574415115,-0.12062900968034346,-0.0898191818628591,-0.06435164443083932,0.0075969521102448295,0.03444279995560454,0.014534274849514648,-0.1120330254751753,-0.0825306686041416,-0.04034950906988924,0.07109466773076296,0.05858585009042197,-0.012662034836583205,-0.025037198307431334,-0.033726412364396635,0.06542659373928544,-0.07314955332371918,0.025449762895540875,0.015442450595606252,0.03947758445529299,-0.028547918158118118,0.08360153367187792,0.0320461859521819,0.026795088532631944,0.021204964009740847,0.05306783840420272,0.021759372139043446,0.023042489609446735,-0.0009979762345758705,-0.01143350297817193,-0.04461225280044008,-0.02197860955932095,-0.011931702795847828,-0.03244439965202339,0.06532642709982033,0.10341850142981095,0.1294654347730645,0.08850232507596346,-0.044376529531429953,-0.09465884270191424,0.01425690560383402,0.035049727078194176,-0.08971413793221904,-0.046188559052497566 +Glycine,0.039890227782642625,0.030150741847532962,0.05308023991275825,-0.048643849181055215,0.12229189811731767,-0.03227213374438186,-0.11560542674736722,0.09667435865885243,0.08731755450556272,0.15103724252160408,0.10415652947747624,0.07744621703336625,0.06838690880930968,0.020891435171962725,-0.07369055024408688,-0.06724185734814869,0.09505718908299325,0.16419879748511654,0.12167068443443863,0.03261353726790357,-0.02102700194743707,0.07408229832511763,0.07918979505382638,0.12589284387572808,0.023767424763872613,0.02258289586737302,-0.015363962668363223,-0.041096047956974996,0.04347308260012376,0.05441386828479953,-0.004780486823880846,0.06672950155427074,0.15409067602188278,0.0011471507898783567,-0.1496134687797019,0.14070539603992907,0.05056742066910102,0.05934600567247644,0.05003098569104622,0.07846674653372715,-0.032468329998075675,0.08978799616799502,0.08457599187545252,0.14452860322371827,0.0989641860127527,0.06639424069307967,0.09642289000456793,0.11277560595977008,-0.0033882766127559367,0.0829697596294245,-0.056633820138079445,0.18305815514826973,-0.15926716258011714,-0.08356676957205152,-0.05975675087429424,-0.030305708482970487,0.08268480979199254,-0.03824318056036194,1.0,0.4627593602273149,0.30548194081499747,0.418596407909668,0.24814571516073378,0.1364377884857752,0.11660786610336657,0.09112255703909761,-0.015158985417237926,0.24728813341184588,-0.08985767930954149,0.2028815891625035,0.27434468998678146,0.2098180473530151,0.16254699695054414,0.31420772837434524,0.3059625073954181,0.19841747666938217,0.3076340872498477,0.010613935190082599,-0.02103387031063957,0.1656637171003856,0.08141629978612917,-0.07212373481597464,-0.07459269641091001,0.05720237620252525,-0.01826723261954591,0.11419033232915173,-0.03820872446889794,0.20967014409105525,0.20631162625065808,0.11344401461173442,-0.13358046671812945,0.09129938786750061,0.039846807254425215,0.10062051497839578,-0.06599283250803635,0.19178335120197068,0.25163344673466626,0.21005260789098865,0.010316262561672231,0.03487460856366596,0.08714147594889782,0.14513705749691072,0.13789728711440635,-0.00580732222912673,-0.1216422110765419,0.1235535458335946,-0.0025218739062276277,0.0757724815622759,0.11539256298916445,0.007650647226521548,0.04663333780428289,-0.044732341837268735,-0.08203438107197863,0.09782715763736051,0.11868959661325403,-0.06893383703598635,0.32506344454465635,0.08886251527387412,0.24343371062421668,0.20773985388282393,0.224447785315513,0.23297561548211632,0.15279893382145363,0.1515849756433468,0.10999577044350131,0.05836770754777465,-0.08586924843936378,-0.13467694225185425,-0.11379055226771033,-0.1454011281033511,-0.17930209030762798,-0.14029045859633021,-0.16023533318501698,0.2606095696740857,0.14254960975156675,0.06042172435925569,-0.13524061008494886,-0.023913634957439017,-0.04221489508553329,-0.1380940671233824,0.0073731838126288125,-0.08741655122871095,-0.03280184365198168,-0.1246460893505821,-0.05920803107636557,0.02226378602019509,0.03287090063068179,0.0189394344261642,-0.09366749263675254,-0.048841511381905116,0.07808098669694995,-0.035275609290374335,-0.08963539693122761,0.004968264971382653,0.018945842246043284,-0.01167086568691992,-0.15153251862605172,-0.07646730370256186,-0.12178386528474408,-0.11247496678786842,-0.04890158924997523,-0.08732949056856239,-0.11883638264942377,-0.10494327074595605,-0.09236525525667225,-0.03164314333355212,-0.12069899367142146,-0.03925989043619436,-0.0766630973660867,-0.10720081897377005,-0.07935846318397818,-0.10425330826232888,-0.06946618757321193,-0.10931588931087201,-0.04962654137810985,-0.07616838651186278,-0.07881536623401131,-0.08618888333634601,-0.12895759761816195,-0.13514476816473917,-0.17326868627130673,0.025365773434345144,0.029666760171854895,0.014738576962046477,-0.019369978625608276,0.021786702610634142,0.01789338674685542,-0.012512586515229048,-0.043320504690064654,0.0006973312985961263,-0.008630343317397215,-0.022621897409647356,-0.09305608186838982,-0.10989569579927785,-0.0778779439882044,-0.09120151902521899,-0.09535733393836608,-0.09823205705570705,-0.08657264647953149,-0.09449754466283751,-0.10892174470975818,-0.1121433310193025,-0.13396433608610941,-0.19249953100540182,-0.15110175492273617,-0.1166308149873531,-0.12582234019508523,-0.13895239400315004,-0.191436755703873,-0.17550018135639095,-0.1626134996736329,-0.16780141006803104,-0.12556513203891084,-0.1462827472525784,-0.15340885409688534,-0.13726933237270858,-0.17274345542286174,-0.16951096954879258,-0.1450717295986503,-0.1429963426615424,-0.1279807346567055,-0.13722607414733756,-0.14820874231052325,-0.14284295217173917,-0.14959542767107198,0.05722609122924785,0.006114313945127175,-0.03254443771931864,-0.014229026318554888,-0.036807402567827406,-0.011548287523382775,-6.496027835711824e-05,-0.024515904781772374,-0.02805402160755836,0.023867995885646975,0.07349729331228609,0.08135105501744476,0.05391008267926316,0.010988099483693095,0.018567128367057668,0.035981867833093914,0.06669166045498474,0.043763931086324974,-0.018729762773825858,-0.03823953371875793,-0.02709692989628597,-0.012343723400789746,-0.016981889750678186,-0.02646928185989211,0.01235800174111812,0.027651628728427757,-0.0031545459941590484,0.025947120385110878,0.03476160083685996,0.024849871818005534,-0.013293275978906867,-0.008227192684192714,-0.024142819783638803,-0.03231310506795227,-0.013744347987560242,-0.04461728953693307,-0.03204245063083339,-0.01683366629074262,-0.04668253993047541,-0.009514917984787053,-0.0033559858206922916,-0.01567607262032097 +Alanine,0.08424424299110451,0.2249059303232888,0.017057038544702644,-0.19189817814871382,0.3981374630990152,-0.12894637846729895,-0.3434650152977965,0.2605839338090668,0.0416209114504492,0.39809239859225726,0.3485001159219876,-0.0015029854835038811,0.09280076659202799,-0.09198191320375011,-0.2590541483744259,-0.02235347951126219,0.12613161176792834,0.258274755043494,0.03683035128324089,0.18566237246288,0.09809290240537334,0.19840503206235122,0.20599679936801873,0.11472950068513357,-0.10005365206256024,0.12148610211912447,-0.18973556850596937,-0.17572465325746825,0.04055867288992258,0.2760734700239755,0.064416948032821,0.2841407726810263,0.3134538539605157,0.19675883936108193,-0.46975432060447586,0.1101672030174707,0.15624288570403314,0.13298215861292523,0.16544917332165301,0.18466084673922284,-0.11006928077028279,-0.021164723509694647,0.009363561312496656,0.2518814841117336,0.17312044398202187,0.23107323871160831,0.11173831381689599,0.28627687469979984,-0.05110119783009695,0.08099565813724541,-0.09143773252896277,0.3063908706794693,-0.366035966407385,-0.14682388210868472,-0.26849259497700595,0.03509809595025773,0.19988091407638406,0.04859041837487587,0.4627593602273149,1.0,-0.02966000688402387,0.38390828859419474,0.30615548127877035,0.21654073652223496,0.0880465029825248,0.21409705883894659,-0.10010542478094298,0.33311102257753145,0.03924786649023966,0.19977632802558085,0.2518213562067732,0.3007915101243991,0.26215082880627016,0.34733263342632925,0.3926752142710543,0.2526517986005532,0.5361941744023577,0.09978638763606817,0.07976619855611136,0.24719651408303026,0.19470441985418271,-0.1337216935943248,-0.013849013581173015,0.145870370074383,-0.18379774314832956,0.2647541543778355,0.15871640592815672,0.45917156165691847,0.5046502225953263,0.27929527706248874,-0.06713068138159427,0.26929929334887315,0.12209280794987461,0.2211007536559068,0.11290865846497171,0.30154908631441407,0.1618656701734777,0.33276388079593616,-0.22023551335176417,0.0890025463056749,0.02757099076369383,0.2920882822555654,0.3333748206060586,0.11109857764463156,-0.3171260097112164,-0.04735681980370168,0.01849293510604794,0.1370873672561106,0.27309980661083283,0.12507294939130684,0.07912869879147129,-0.061929831683603845,-0.29453231165745153,0.08731599448611721,0.27152140163138544,0.036403326420987696,0.5558325861577587,0.11134804295659995,0.230445597758489,0.39695929375356737,0.44242528019539173,0.37524475657400264,0.40167117315953804,0.21390297990246074,0.20881814807260077,0.13768233460226637,-0.1667654471764388,-0.1658742236037297,-0.15234357355197084,-0.2044952600113616,-0.22608887565351843,-0.1626022818550719,-0.38105954831137934,0.5435325263955815,0.38451590429176935,0.1359846855772781,-0.35254035319857485,-0.15520536184550318,-0.17222168997241416,-0.4209277542592764,0.010345379590030132,-0.28810123157689144,-0.09871689009838441,-0.34763610112239035,-0.17808378986525106,-0.11849007628947819,-0.08094067943632649,0.04567966797948617,-0.2710963617646391,-0.3240804532482027,0.21427847690770707,0.029426083484776627,-0.1746193298361975,-0.12740133750524146,-0.03219141765991006,0.07082979002698711,-0.22267593064781988,-0.3598371713797031,-0.43298206657715355,-0.23559099372239836,-0.03238237691409717,-0.11003759452280187,-0.4124582487111688,-0.46686429737242613,-0.3887278187400801,0.07239414600287293,-0.39926792079822504,0.022250410128837387,0.0645945564002711,-0.14444274445357622,-0.15007600166177787,-0.19463663381508695,-0.14401068137266337,-0.2180981662827045,-0.0069580569161919225,-0.036576529919851566,-0.005338783593675973,-0.1863775435115134,-0.09908691615658803,-0.1449023963726044,-0.2231748497803146,-0.06575030302125269,0.04728307815720191,0.060977336962487756,-0.030255777260983427,0.04181747125320772,0.0763472287884717,0.019682379449765378,-0.04297996148476707,0.04658836630618571,-0.07412913398156144,-0.055791490094207884,-0.14401565972135935,-0.08990641165701542,-0.14191602729925523,-0.04261510673371794,-0.03805680687234124,-0.025993755510645592,-0.035275275782034196,-0.07400751815382252,-0.013089705268358735,-0.042225793810422914,-0.0870521583721845,-0.37323612262654526,-0.25123450237671874,-0.05813801486780816,-0.062243959626857776,-0.0970830182782212,-0.34842395027741113,-0.40069563820986115,-0.36043556767114954,-0.2802349238298637,-0.09132635663963723,-0.07995019636397938,-0.10381462189456928,-0.41030411857695703,-0.374460439301422,-0.44309589827016754,-0.3735540781488423,-0.2523065738678429,-0.09480614885952159,-0.07203605985126228,-0.37323430855219164,-0.3608966324632502,-0.39758906926866855,0.036410168041946384,0.02890710175013722,-0.02787592269327214,-0.06415314318594047,0.06180526342023171,0.05771303036554751,0.004084809979323544,0.023138489215984413,0.10040257755739192,0.013404868931187551,0.008371338104484443,-0.0018898186141740468,-0.01859630899135369,0.05388282270913126,0.013085499360328396,0.06968628948173992,0.05596065058726584,0.05944354749295695,-0.05931211588114684,-0.06325771601736882,-0.060622224223809695,-0.0637195695690339,-0.014609522502495961,-0.044494434544039854,0.010360130924218494,0.0277907662101582,0.07625743065201945,-0.005445933813462365,0.07202382897238674,0.04385050922240859,0.0015472286864546356,0.02612489802759373,-0.021095120791075686,0.009962172549833677,0.009701238306234948,-0.04703114340901938,-0.032634381090405035,-0.02183129981822713,0.004859577941378582,0.02994789562357272,0.024560435218929904,0.023516935806945027 +Serine,-0.10762487297097656,-0.12596198802216432,-0.2909796883038236,0.09557483431158065,-0.1279972068074016,-0.10497830082432232,0.155799505063869,-0.042609779713423064,-0.2712184682402362,-0.1204729307872367,-0.16956771437083526,-0.2626670288462532,-0.11904779436236905,-0.10831972729199152,-0.16722548677479784,-0.05637485281171796,-0.009482616471387213,0.030312812229056654,0.4429766130577944,-0.03644900125762308,0.028987432065792865,-0.10292034177608121,-0.16334504501782698,-0.30357464674030343,-0.08029718586169468,0.20252346866186466,0.06549015108627945,-0.030200019087734266,-0.06428493870937778,-0.08616042669650258,0.19929900596803535,-0.0610148965335442,-0.23761575871107113,-0.1580513608589813,0.0720883543425597,-0.060059453028337845,-0.15773779065696902,0.02466770402179587,0.1727556711134078,0.1869318959308016,0.14211802549930344,0.1749799682747589,-0.25490758771978833,-0.16361932787286185,0.26284239531461057,0.05492420341771999,-0.03515074199065018,0.24165955772900974,0.18387648475187773,0.29063479855484375,0.32352918178071427,0.011991298841227113,0.10031161301280074,0.08579601819677282,-0.03684484277418384,-0.10484322671763804,-0.1636022787305639,-0.13794232718233898,0.30548194081499747,-0.02966000688402387,1.0,0.2447733319326718,0.36389453374724035,0.2726432132163081,0.012003493935167359,0.07350113516360846,0.452846834188003,0.2525977292819685,0.29856583341007054,0.3483140113291967,0.3124588074351524,0.35383337856138786,0.3053518936167706,0.2871226190542661,0.25647049263379185,0.20890299601201293,-0.1985745922651504,-0.1293498108919749,0.20839027406467256,0.16415874530302502,-0.18318566280186213,0.00258471617619735,-0.0878819063745486,-0.09058196843090566,-0.018522642722452687,0.20386376263104583,-0.20141322800571773,0.10267765833878345,0.0550754850989384,0.2431482035156836,0.10431154292141263,0.23154329742954824,-0.2794601168493164,0.25620646937454655,-0.16552897457546378,0.2750634392872262,0.3668274781051356,0.08320547691780607,0.3183180211666391,-0.04583423323506603,0.07270002530289132,-0.017433725956005598,0.16637949890979503,0.2676721233628707,0.05563744995736423,0.48200808596441325,0.03179371692041145,0.1463722427406054,0.1625038648105456,-0.005818243653065309,0.09139997558960476,-0.10851941333094527,0.06802064183417733,-0.19240957444021517,0.3447703482499054,0.0597741566360181,-0.1858711877868479,0.0016002481248396571,0.3255502799073352,0.01756729640761274,-0.19024940094284612,-0.10476192391724057,-0.12007593601774973,-0.19644438973877537,-0.025631956039249726,0.0027168199887085535,0.022392396237208127,0.003443471041734456,-0.00620709342431341,0.05205452427294117,0.10656663883395298,0.08012876623842793,0.015928426945127177,-0.14034613350558478,-0.25074125582401807,0.25694532330511005,0.038798864437737564,0.10468548394497487,0.17984413528705362,0.15051294327701517,0.10033613292254592,0.2116093650009019,0.11665855208597746,0.2009298849902553,0.28660947245736795,-0.0605029132782128,-0.10094212567370134,-0.1906946609288674,0.00034239163917904226,0.10407705495173114,-0.1354770871663467,-0.17698336433800466,-0.16840470994548395,-0.055857979593636656,-0.10015538336951467,-0.23920043810919414,-0.16703009115160042,0.0239457318383043,0.03321139801640779,-0.14441062953315484,-0.28267300624661945,-0.19231562414936781,0.06371165939001494,0.0769705151175924,-0.014909743873285258,-0.27058373750721443,0.06496259841124889,-0.17232154299717103,-0.18674930307144813,-0.18675976995497748,-0.09903431196135817,-0.08228710008626332,-0.08559866867055378,-0.19436554744691634,-0.26272990646445893,-0.1747582501103224,-0.18022615034136916,-0.04364593328696327,-0.26416614780905356,-0.2014391951439751,-0.24977939465772822,-0.017189714983814067,0.19297210061344053,0.17433958170728037,0.25163384238442565,0.27173631889047906,0.12436658100451259,-0.012042325461149405,0.2497679219614758,0.2648829693111319,0.1780711423870154,0.1784011694853674,-0.10837698258794823,-0.20072067620132703,-0.1653729744162808,-0.08847099948478686,-0.1638373440481328,-0.22332815393543567,-0.19563113557732875,-0.11933129103401303,-0.23412734576679853,-0.2450959557846614,-0.22417879218937925,-0.059763667411748406,-0.08585912249675627,-0.19272654060608058,-0.26656182731736777,-0.251757756169617,-0.05099699710869047,-0.011435566566692156,-0.044770065408838995,-0.1025208404960336,-0.20537625119426173,-0.2819985210644385,-0.28357146012570766,-0.0029882586224375175,-0.03987221365300153,0.03269969507804951,-0.017511389351955956,-0.1154502913751002,-0.22768145446273746,-0.2898455301262999,-0.00102535981698094,0.008240677938584583,-0.021559171127575702,0.07139465841284642,0.09366586063537533,-0.0063991620539052595,0.011599356453339763,-0.010364982276530554,0.09270238055846484,0.11549704078183344,0.042911572731035394,-0.019013999519851253,-0.058685528890433686,-0.006157272242298346,0.02898806062408815,0.024530367061417594,-0.038708422730443635,0.11678280472817357,0.03501256156816511,-0.023221633225249772,0.011285952425852716,0.018825251670592878,-0.031420718096114165,0.0029645059358668446,-0.03061326027449046,-0.018305251947528807,-0.046421058580262096,0.01127086047348277,-0.019882298839882195,0.004078892516510625,-0.0035447621166557067,0.05209970761700044,0.059508951479243954,-0.015691405313905095,0.024660251325348454,-0.009977405200897838,-0.03787521945629163,-0.0386021822685009,-0.03532217529065439,0.08828234897377968,0.001381928177429397,-0.02038197617303858,-0.0008909178597971567,0.023139725730072478,0.041428391582143356 +Threonine,0.2355212588752347,-0.008218362452589677,-0.20059567829379665,-0.01120046565458587,0.10235501995953922,-0.20105052165126205,-0.06800963893852138,0.0874162820458276,-0.24001683689488074,0.13411345066874833,0.06185901196041065,-0.27115876237251607,0.09895908806578739,-0.09881807305138905,-0.23070112520570954,0.035853123474280615,0.10891002800275744,0.22256051701071658,0.40952562503863016,-0.11535578499400292,0.11726812559622306,0.08228715614898066,0.015917803909515804,-0.1708303668414077,0.014520740283532335,0.2943649480578225,-0.06945768260153483,0.03433105158560256,0.016923342275699936,0.18361264817878498,0.21325418891969586,-0.07553680914935006,0.003916957861307752,-0.009191041377973014,-0.25733138947291745,0.18685235117073892,-0.08866268519372761,0.12201052961768954,0.28632634609661994,0.2416343058683941,0.09873973238888659,-0.005642596522471965,-0.22968096979535607,0.01538327398629423,0.1898032401924124,0.24267641179581248,0.00032053419478790025,0.33730032163325074,-0.013799108159621633,0.2328032640552404,-0.10040035670802956,0.2125901208712865,-0.19943693163242235,-0.05701969785701437,-0.15763300261255922,-0.15266909543352739,-0.08225545529978481,-0.012436683593849345,0.418596407909668,0.38390828859419474,0.2447733319326718,1.0,0.6789360012335987,-0.021922174539240398,0.05751155526108326,-0.3827393780505017,0.27202781440817714,0.6346547353056797,-0.0157741928456685,0.7572791755764815,0.8998112491248405,0.6549415280952412,0.6087416327638799,0.8493203527254474,0.8402975896339041,0.7633808795079421,0.017376118093907607,-0.5439598230389112,-0.08704408341471692,0.26823901416310064,-0.06802015578231083,-0.011655419690088709,0.12917001804885944,-0.1196831010540831,-0.1643687725307496,0.27477526086973675,0.03399910275811507,0.32537881353720494,0.41197593410316147,0.32123888135134643,-0.08613940411093436,0.3205806758918648,-0.16983938840039584,0.3204726253692262,0.04408363735473176,0.6215858199633472,0.5755188318596356,0.208602972534694,0.02427410551855155,0.07717027183995831,0.05610836765280777,0.11408910164920173,0.3022489559372157,0.2069685602893835,-0.12466575319145333,0.43250255323965037,0.15490979241486227,0.17623284833596617,0.2881438094741679,-0.04735078287486713,0.0765966888154137,-0.1359274822648692,-0.17685188006948616,0.07018837492840209,0.43142970082207827,0.23103700331740462,0.20375329591975042,-0.054714305796345244,0.36624002916655274,0.20238938579062218,0.18485679518328643,0.32092570443216345,0.08009788511571128,0.045310151297908906,0.02333693807735913,-0.01814664877508258,-0.1363225532714231,-0.18757040510240333,-0.16458829128292013,-0.17148066551940686,-0.15105887807164647,-0.08066009102331809,-0.29562147276454726,0.10321174515840115,0.05355501998353259,0.24132994138052213,-0.1827332165013171,0.08209963202192787,0.05887672384950916,-0.09212212312627735,0.20820304214045585,0.007202985581274861,0.13839379690404696,-0.08299624957125616,0.21432531149525108,-0.126219820269341,-0.1214542789170073,-0.10941226033908391,-0.18141001498564419,-0.09766386505350011,-0.015732434210275727,-0.20297261112117598,-0.2386579792560423,-0.1466660076798238,-0.07175844093591231,-0.1747798758924691,-0.34467268498401155,-0.19825926485251055,-0.2567967434204803,-0.21810542485149553,-0.24410267565200716,-0.2495907364766867,-0.18280572656514926,-0.19541902705923891,-0.23539869560889803,-0.16283601351950563,-0.16724323348866643,-0.13650316549350955,-0.0950711082893924,-0.24883718979755862,-0.22560431614834817,-0.1343737445089551,-0.1157486052007176,-0.2229790019224761,-0.192361013591638,-0.12827721534454126,-0.12007259989403263,-0.18304290478628635,-0.2771083752626529,-0.246035369506748,-0.317967835858074,0.0028535358194752385,0.21262809238459052,0.1932911038112283,0.1823223544660553,0.24748789913222163,0.18962970717016764,0.01705545136225165,0.20621246022790937,0.2567240294900147,0.18511312904740646,0.16772556706377856,-0.280716372521072,-0.33383092495459143,-0.3066227089648736,-0.19942498613788998,-0.2657816344760341,-0.2997120003443579,-0.25250207507914824,-0.2384178256131924,-0.2787262170306058,-0.2999134297193235,-0.28659207133207926,-0.32813307379585377,-0.26209012989740077,-0.24297665418932318,-0.30241503117148233,-0.30594945692185926,-0.2878626075776384,-0.28769825604674854,-0.25904205025822435,-0.2767776253229771,-0.250768642393521,-0.30713344320654823,-0.3047553259239265,-0.25076389224823253,-0.2482071853748142,-0.2717200078668764,-0.2451458545515352,-0.2637622553691869,-0.2601966104120121,-0.297185042397929,-0.23020068700760682,-0.22147352495331693,-0.24364575317654133,0.09296864561028484,0.12376436940587983,-0.009183004556306884,-0.048569237045596396,0.06926875538924127,0.07068547226970257,0.0757942501850213,0.08400135940951295,0.10237661966314868,-0.006702082309084985,0.006517711969425014,0.017917780173415016,-0.0027692117351767877,0.08736329328005193,0.12178767759648505,0.00734938209117873,0.046177681636561885,0.03885223150210997,-0.09345145247532693,0.028414562494545825,0.06654823096959642,-0.031114234860043853,-0.001319354043496437,-0.0040722925449047905,0.1125758897317553,0.09537662026048023,0.08751531646527401,0.008594854664512906,0.11213343964775795,0.11490862740591369,-0.03545163143929181,0.011764288386803469,-0.037737597519784144,-0.019072516044942485,0.021703718968943252,-0.0748266552448115,0.059784960834402115,0.05510188793701615,-0.03015067734493647,0.007145344818413919,0.07916551157957105,0.0504584210151005 +Methionine,0.11470079435349959,0.09153199398852142,-0.29174289939566034,-0.14069579886625447,0.271353552393087,-0.31949480902626026,-0.07894199751250863,0.17311083625601492,-0.5066168618337045,0.23174543836822922,0.19245070795897148,-0.4891488175254436,-0.16357709490750694,-0.2618186439066894,-0.4519518141108887,0.15171311743441812,0.08555951874415754,0.23652604209994738,0.6881070441895567,-0.07934426487566204,0.200766813146099,0.1877010961057828,0.029312520750042984,-0.38557874565712325,-0.085185290610148,0.5396147064682184,-0.19269835649286693,-0.15263117219609437,-0.02025597647195019,0.3697414487446827,0.402431540271301,-0.003124722095681318,-0.00582073140450871,0.05836107273091109,-0.5018593431585072,-0.015478463134486982,-0.08169060568482052,0.26822282365981276,0.5720764516931712,0.4814096294248802,0.17277829065684594,-0.034480645681398296,-0.4895643598504983,0.06311806007129557,0.4886872449613289,0.42589425248751234,-0.05602968003374604,0.6416940851693798,0.1532619793200677,0.4489043529737844,0.23370865197213814,0.2947857714786962,-0.2893106784194181,0.028953675322270764,-0.43142500368847075,-0.0784790977909378,-0.09715358944241702,0.030002187135905262,0.24814571516073378,0.30615548127877035,0.36389453374724035,0.6789360012335987,1.0,0.17399795333228987,0.023148249748417473,-0.02683317568377177,0.4192985035335903,0.7739312890354416,0.47096343825884396,0.7947206790651888,0.7925742946937587,0.9439775674791188,0.8895427690976339,0.885937731915634,0.8844458318968855,0.7793340998008893,0.13940083072438206,-0.20172579681389036,0.2575786961583003,0.5480352957197155,-0.08994934087835406,-0.19770241777660263,-0.04959284813756985,-0.1777520250813439,-0.33997257252908836,0.6217478413225106,0.038286250647084824,0.6326487138691433,0.6288386290634267,0.6911584743616792,0.17145471930879813,0.6952008486251924,-0.33710139658358435,0.6300638704700393,0.14805262350975243,0.7394870483644874,0.6350847130239621,0.33299040184367606,0.0761310459516472,0.09374216949251124,-0.038884334007528804,0.24228296848153505,0.6430414747004707,0.5028917838548642,-0.3330008750405692,0.6169196795234944,0.0588377999112462,0.20682195463466602,0.4983668960073006,0.012679117790265357,0.03046505526363155,-0.22874437677477794,-0.30230552438180486,-0.07765716363482615,0.7164339009863311,0.38902806206778673,0.17866769330325577,-0.025027721886936624,0.7183724142294013,0.279919465958169,0.1602059615145457,0.27518563243719385,0.11924180556367686,-0.06139279797162502,0.10968125786891945,0.006944368548831616,-0.17380386487577773,-0.23239274356776782,-0.2605028951134449,-0.267066703681695,-0.2103753392070958,-0.14450159939319818,-0.4612087708677588,0.02303295392906389,0.07502942752481416,0.5138984862601889,-0.29261808014925994,0.015632956469802384,0.10806887978881914,-0.1295080491099109,0.32057893644571417,0.04267264175403865,0.23437970913061684,-0.07457563469691061,0.33577501286151196,-0.2779855600886693,-0.266206220086351,-0.17825566832016793,-0.31130003102835674,-0.18458032417414824,-0.04860710940678984,-0.31955826416485317,-0.39928252324296154,-0.27703944483601045,-0.11436337963488755,-0.2404260223208059,-0.49919342081102513,-0.34790607002674784,-0.435345556761639,-0.33519062817623146,-0.3041431385841074,-0.3723488688434424,-0.35922693028355696,-0.33709803357346907,-0.4176484716916219,-0.19728512514279162,-0.3466251645747573,-0.07327538065060243,-0.0024032198901201072,-0.3294100297520982,-0.36706874376508775,-0.24657919809957782,-0.224884468411138,-0.3806187400314534,-0.2461616959227171,-0.11668434270749599,-0.11865919083068605,-0.2963835076668421,-0.32635815233292564,-0.29619402538573253,-0.4439199223816848,0.04010662441441891,0.4365587484344654,0.4251077805573867,0.42137039122803477,0.505040146880044,0.40761947507474755,0.12737170567517503,0.4690493768770373,0.5383963981359445,0.34472170304925903,0.32804325838164605,-0.3678714001117096,-0.43846361829443037,-0.44741001681255,-0.2497864980503625,-0.3282679954238383,-0.3981962053256168,-0.36082142974514125,-0.31014282412491023,-0.3630524096496689,-0.40659481286391785,-0.3974188222892762,-0.46471110781019326,-0.39666706688677916,-0.31840261910773077,-0.41024459112244,-0.4184881689684228,-0.4378072326737342,-0.4330580274816859,-0.41487001044034205,-0.406554724025412,-0.32190466458221123,-0.4250962078820923,-0.425566796028278,-0.4186062953409319,-0.4173560082166811,-0.41983670384333244,-0.40931517414262847,-0.4306194286310664,-0.3612701607098102,-0.42213282510009076,-0.40124490975352434,-0.36731582945820124,-0.3932790779250505,0.06254066969337137,0.1359626563732013,-0.008100409685666844,-0.0729140359807959,0.061131831895144914,0.12497100531644628,0.08445382170829965,0.18606665108079468,0.07549725011507542,-0.12619467619916364,-0.12756216748360183,-0.10236006331700084,-0.07160443306011376,0.011094234925948106,0.12910277416564414,0.01725251235201391,-0.10710500042506435,-0.007796807198664895,-0.054347867470266806,0.04880636819793706,0.05441082633918783,-0.05681078268508206,0.03395704319185524,0.024210942506558326,0.09625177865681585,0.08006396521309057,0.15637232474238213,-0.013624325144115317,0.09990413506929065,0.12388765352065487,-0.07539188670843322,0.015917683962901157,-0.05313725289239682,0.0021130445764726566,0.05478600515886866,-0.01646071226990711,0.09802915322362052,0.023488461600790524,-0.012764842189129554,-0.009069344087846164,0.053397954659692416,0.06518921642795214 +Aspartate,0.013483794461173575,0.05615894352253302,-0.10444556650950984,-0.17797274236649352,0.18863468991792534,0.03965924145649109,-0.08221151876498896,0.07516272539459272,0.008915055750594331,0.19539055726696497,0.14501531672461598,-0.007142539432328687,-0.016390012473904786,-0.003261699524109786,-0.04230480001834312,-0.16679184886551154,0.131790453597548,0.14041343859346767,0.11809625134824696,0.3370187685275695,0.01129543973367788,0.140930886388343,0.1489266612300315,-0.023223772066637005,-0.051451078495363005,0.056740108566741075,-0.09833050692356274,-0.11018591938931255,-0.0017420048872086027,-0.13221892472042276,0.02909821986891353,0.33614120574778833,0.1390736204702377,0.08186846028854186,-0.10140156987984103,-0.02975156072950935,0.012271231722082802,-0.011235492707248981,0.05707858405913913,0.08129788664115585,-0.025406763055335336,-0.010902335214509947,-0.007055748843200837,0.20400376535559167,0.16956330050980764,0.02178349019602404,0.08440321169590968,0.11951543335155185,-0.0009082039032312683,0.04235241740475013,0.11747101687101147,0.12140063331326219,-0.013436651966911824,0.041837955421851994,-0.10237093753414685,-0.15408682776097118,0.14421846861857937,-0.19898906974197836,0.1364377884857752,0.21654073652223496,0.2726432132163081,-0.021922174539240398,0.17399795333228987,1.0,0.3725896836712182,0.4261230918472606,0.2626185026366845,0.1517033165833388,0.2723638830256142,0.02442970214924743,-0.012062380296358617,0.17687188523985695,0.15227575609508265,0.048149488178675745,0.07424225287979085,0.045768288223760514,0.17593291114361506,0.2524334238889291,0.23031654586509082,0.17526578299760742,0.11964585794211116,-0.034574999073515834,-0.05180074693975438,0.07380205977748183,-0.020557300659705947,0.19202600293353653,0.061205327481588495,0.1911792751207856,0.14131441478301726,0.17121867870530436,0.12827596904877567,0.17566102153097496,0.09153650966482148,0.18193658696125303,0.01430692619151264,0.09840756144982306,0.04760667025306128,0.1906019418147811,0.040489819533669445,-0.009545629747681873,0.032487364934073296,0.1498328731822152,0.1842805522047553,0.10230568883375832,-0.11357483814447508,0.07336650799128538,-0.028642835787080507,0.07966200619055275,0.04766167546921013,0.12251779836823785,0.15637362481919567,0.08062576101104978,-0.05261760748095896,-0.0464626858979741,0.22768962498589165,-0.012511816861144049,0.17204174789143223,0.1469774804119658,0.19096429268875628,0.19455415099520149,0.054505694899688595,0.09698558378690675,0.1298261662985523,0.012843911773703426,0.07151739504043388,0.007936406484061164,-0.06320514942387392,0.013658404730888914,-0.04849797678524318,-0.060769855716837885,-0.06875836748585622,-0.08372826094799142,-0.07687398790291243,0.06645424055266493,0.08548997060538419,0.20488265030019276,-0.04147288939158789,-0.023417620167888505,-0.02180857786134237,-0.09074270182301113,-0.005274621354400775,-0.08095921964239097,-0.004482764121360931,-0.07630771054632321,0.042871655595069294,0.014853612594277947,0.025990153253008873,0.004390699250154475,-0.031770745747284806,-0.023983334080274282,0.02731215173508491,0.01934883952924728,-0.09262732941707327,-0.042841362964119,-0.01238857393508099,0.02224075810769446,-0.029042170401498913,-0.09334182261524265,-0.08745712064112339,-0.08533219646208408,0.022894125608934158,-0.07335941534674208,-0.1226130883387278,-0.11892594710611083,-0.09378350630011029,0.015203384158983113,-0.11540401771758821,-0.04880943090033023,-0.07128849553788369,-0.12813440969477446,-0.008992826887670061,-0.10481664849366461,-0.06596424275374936,-0.09621572357051626,0.014412126454480922,-0.03217173579054838,-0.06754735893927609,0.013409847917104142,-0.037070866953844955,-0.061252104324848275,-0.11917557664085186,-0.005471976613685315,0.0970821905742414,0.07174767803458373,0.10525187571688042,0.11955986034259461,0.06559390905036891,-0.02208602426215512,0.0683186258286105,0.12659694032978702,0.032588575559870006,0.013266489683649707,-0.13697935494335656,-0.15018841514185732,-0.09342102006442643,-0.15144818720387465,-0.13649811683337718,-0.11134445096397677,-0.08980258361749002,-0.15273590828238215,-0.1433884464403784,-0.1297143633454605,-0.09927002345273407,-0.25240007740770215,-0.23531694783243542,-0.15325974796861944,-0.16698987670115645,-0.16098537703356405,-0.2416368764804745,-0.23598964527600683,-0.23207846369371335,-0.24992401454194785,-0.1576184075781694,-0.1884558644851172,-0.17380793170522466,-0.09530163382195722,-0.21933829422816772,-0.20505849909208296,-0.21995510769934337,-0.23618421485227858,-0.15531238971016958,-0.19953580975099966,-0.20748788141505659,-0.19526120908111314,-0.2341362920161817,0.0005380079751522693,0.025762626549190426,-0.024285936008433446,-0.05394573674879376,-0.012304152246966337,0.0646929765806391,0.061980192855717674,0.057337445165558505,-0.05513327047687151,-0.10611720938234731,-0.07254694684228499,-0.03767321098240216,-0.00591619416159708,-0.09612851921704385,0.06212382766418203,0.01608012448395739,-0.09046708752572426,-0.03180214802118373,0.11142445754726663,-0.04643480648654764,-0.04834997974423104,-0.04576894079279958,-0.0004096625402786082,-0.03122362684431831,-0.05150677034584919,-0.02643923409426,0.010160324533382644,-0.014110237046300026,-0.012306197790159307,-0.006372870869578206,0.020267707515749144,0.019647259623347665,-0.06136494040090959,-0.052616130008520307,-0.04984915705530684,-0.02267557640093766,-0.017788202544473775,-0.021355995843962892,-0.057881610181536605,-0.041781354166206645,-0.021055043021773894,-0.00543060417737911 +Glutamate,0.11201292273123692,0.035846058137178956,0.24229710897358034,-0.03885082048400346,0.22633258370977763,0.15311883857577713,-0.07185792338013207,0.35784275136613236,0.2332036300501835,0.22961706102182902,0.26208745145958673,0.18510272404786304,0.11368701806312703,0.12929272207438372,0.062406905547243756,0.07228884937271422,0.10156544336475958,0.08252582599997758,-0.09609235505654032,0.41775349265037914,0.03265408609209576,0.17899501148590607,0.25168906224284043,0.1842414120785347,0.09697185503596892,-0.09813656898689702,-0.08046722442732525,0.011227949828030246,-0.03381270754496295,0.050805600360717094,-0.02994172570603573,0.3787430757825282,0.3272482536960595,0.05491846247139197,0.04296269572574784,0.17065190735914115,-0.019406504934282413,0.12056399883184281,-0.05350284527861845,-0.04474820867363952,-0.022848792334132444,-0.07865671834065383,0.20608495636532922,0.39556289943560496,-0.16550952489019288,-0.0736474284457043,0.033553354273907265,-0.12787562145385006,-0.04529218339771265,-0.128122656672163,0.02195768185229036,-0.08591214962738554,-0.03742806566777735,0.01726532688740379,-0.047236785851601334,0.2427232305629542,0.15894874679200807,0.02447401515284482,0.11660786610336657,0.0880465029825248,0.012003493935167359,0.05751155526108326,0.023148249748417473,0.3725896836712182,1.0,0.09998228264213067,0.28246563493148874,-0.06599028366354197,-0.054437093351068916,-0.03495553626763686,0.04140994514051461,0.04454254189985277,0.03288206121470472,0.014906510038289609,-0.010290604506191412,0.018787691311149206,0.28404313141754634,0.10630390786838584,-0.06806085424417922,0.05303127872822693,0.19330166421231929,-0.0434547486719271,-0.011876517634013317,0.04687120332578406,-0.02569286624341755,0.002482706980335439,0.04072122743285711,-0.027629072421879064,-0.046400495182979916,-0.013776929695771692,-0.07963691057090178,-0.09702892689625846,0.26185916611253385,-0.09778032454817918,0.16546563576681184,0.049067215349914144,0.05609731381313734,-0.042532339881299945,0.10240941849014686,-0.09427639394808221,0.05610099925465471,0.07203686452172783,-0.050993655867940337,-0.1342968054021276,-0.024163508891961987,-0.050558557448618514,0.07842417081906027,-0.024318071867500856,-0.07407987676165677,0.011902907040356566,0.1735200563073791,0.054627543704364845,0.050958771788556304,-0.00759445897605092,0.11305165374267233,0.10774358924007782,0.14568014317935285,0.14588557034819388,-0.030298063078072257,0.09139629569676387,0.033957297754060915,0.04615569423715348,0.01121710156549665,0.06327518898448549,-0.00474431100576203,-0.13701275696262394,-0.054589350243258936,-0.1783799963516536,-0.1935195761090319,-0.15549994057771768,-0.15932988413075844,-0.20602282546013348,0.007276206093795125,-0.062034936668633224,0.18600234830074464,-0.08467363583901796,-0.022217872270385956,-0.16227512777049785,-0.1900476462037521,-0.10822670021170226,-0.16923835886796026,-0.16611354629328323,-0.17265247018636498,-0.13110387111865981,-0.09867716238816197,0.022045912065053817,0.02251832824784407,0.006324492904791426,-0.041029047886732894,0.016792984378824594,0.010037885127366895,0.03580803400249455,0.06408650933967715,0.006780562550522471,0.04294086406419194,0.04787942018333399,0.02732473635259402,0.04174764107993918,0.015320757375872202,0.031154706052435477,0.12328627538335449,0.006975918122558121,0.06482946648027849,0.06080491140849065,0.04410759514141818,0.08650108458496697,0.006273920910398889,-0.04334461944534043,-0.01262880366152543,-0.021549577320110626,0.026261035453444166,0.0392579821224616,-0.004167794786138733,0.08931686729143538,0.10019072203218522,0.05751647412553645,0.035705403053603875,-0.004432741559558157,0.018727374139359026,-0.033663146088818964,-0.03319261049308253,-0.039376480873277206,-0.09072229933425555,-0.13898716449166987,-0.06018102228752975,-0.08385762944938814,-0.10382287379407101,-0.07978452236079335,-0.08052730722931073,-0.07881686637033147,-0.06773113801815643,-0.04350262973723328,-0.2510961556386611,-0.21109825154412787,-0.10638673691695744,-0.27814541240312096,-0.24148178626638273,-0.15049337723734318,-0.07592404394146651,-0.24296040176655614,-0.2142950109937902,-0.12257984880974929,-0.05182869021084082,-0.17041459862901692,-0.19938692798447388,-0.21179374156468017,-0.1619393646606833,-0.08999798564183464,-0.14006337923107703,-0.14358562403881867,-0.15153250058600856,-0.15015391550931104,-0.15452946468969372,-0.1257009943923724,-0.08225644570489007,0.01626898432245736,-0.09589900709898218,-0.07807457906615939,-0.07010777973610711,-0.10512257619297853,-0.09695395813343165,-0.09994054696851648,-0.06496273458109744,-0.05661579008646159,-0.05534011933925637,0.024489994679913325,-0.048901593110630595,0.03563257261181327,0.045515042054161764,0.014371849946329026,-0.014662579923492534,0.06108102857723226,-0.006645990916772088,0.012912142725441611,-0.011993432270641575,-0.0020370708172453545,0.0176892650947714,-0.016618524837256805,-0.004936158455461152,0.017409507818504425,-0.02063422572880081,0.026148504922514398,-0.0052325655823657015,0.005169219287527186,0.06558251921316177,0.10179768833257434,0.09966700502363171,0.09982228127061368,0.04684993442104431,0.06325562606484418,0.06838652404822125,0.02658962474707671,0.008236141144302971,-0.029108823731114494,-0.010681118730648616,-0.023191116098144098,-0.07845372790248678,0.03450299913920102,0.03472697363000757,0.0602619619673522,0.05371156939861109,-0.12940696109028693,-0.011182006276568781,-0.0026516918784456572,-0.004130760896791143,-0.006516181815279857,-0.009092983101062045 +Asparagine,-0.1550470289771199,0.08490571953844021,0.10595534004796477,-0.13425765057747752,0.224753251456227,0.03783277567036578,-0.07862273567654877,0.05173065293700926,0.1071585674437401,0.186703931536812,0.22879387279385224,0.12487272088959854,-0.12655820764842823,0.034159214406530795,-0.009040591049702082,-0.09071257705137101,-0.009074312532156546,-0.0014616421388394562,-0.15739138677983674,0.1957116443285008,0.012182836586462223,0.06307752331120327,0.11603388165306555,0.11268520064244437,-0.1909193079544661,-0.022362038834678535,-0.15927146055244187,-0.3027682633885656,-0.07490791132186145,0.05330740827701694,-0.07949343798731207,0.21108894349107774,0.1412798707221207,0.07735152376810246,-0.08704504700467611,-0.1647142998706079,0.05573842112647152,-0.020180568881495393,0.01749701300912088,0.04538999196885343,-0.19091245983627328,-0.041802880636105856,0.08115912992703689,0.18448053177919554,0.04506552070904833,0.05237105416657269,0.07624997975032237,0.029019085276330008,0.015739222563477658,-0.001757719441825235,0.15821855584051356,0.06004061979808686,-0.0371605250822855,0.004841136393437058,-0.12296952088869717,0.11777852096270253,0.20261022621733438,-0.051330770060705244,0.09112255703909761,0.21409705883894659,0.07350113516360846,-0.3827393780505017,-0.02683317568377177,0.4261230918472606,0.09998228264213067,1.0,-0.07363937459970642,-0.04120354467415493,0.45143633160566243,-0.3889256940517542,-0.42859813035811223,-0.02684709456978797,0.02416960345296397,-0.2725596680824583,-0.17293028786180456,-0.2488903449093166,0.45163883864974896,0.7654832725212896,0.341616438219316,0.17834096599673127,0.15651149509888684,-0.08086351341704995,-0.14765277068764154,0.11840501048647976,-0.03145001242571125,0.13401320146295198,0.026835270701553213,0.22692208493348087,0.06881342501464535,0.12012003111958527,0.2196722130622455,0.08648100215525013,0.14598216507208076,0.054886631242202624,0.0498010903211606,-0.22965094292584973,-0.2749382432595052,0.08800296288652605,-0.13656607664277656,0.00885343071554036,0.023810581106371256,0.1604699155428457,0.13227493101933757,0.03580828239809195,-0.11551111139044867,-0.26094943783845814,-0.13931160881299373,-0.06127370947791618,0.00045326139751792455,0.08355292123718738,0.03524208109795984,0.03492163538834692,-0.04572817609753305,-0.06546735533162304,0.0011115498890371905,-0.12971619965175185,0.13359154216201352,0.1819053830912534,0.08863088443825706,0.062427328490364094,0.10813610448421392,0.02094150755068677,0.12953074362407055,0.07114672225979708,0.17751676588196125,0.08015542536469002,0.041950745548680765,0.060227408407121895,0.020096773213517275,-0.006520913166359766,-0.015426021736764235,-0.027430775891699285,-0.03285875815151815,0.19376873308400513,0.14011668341138567,0.08928648820827885,-0.07816415697781386,-0.11879539544823318,-0.0684331967049844,-0.13909702379592703,-0.06786151256893713,-0.073320844888769,-0.07958209394513983,-0.07595940582579341,-0.1281180743172752,-0.019089612168994987,0.006420728229791827,0.06343394463780179,-0.03217774841730098,-0.08549189566345668,0.07993321112111472,0.08492046314024508,-0.030183124110081956,-0.026928323687320968,0.01152903163739726,0.11004567842613174,0.043507745198368065,-0.06398407737037216,-0.08463606696390741,-0.019269718661068382,0.12675922353577682,0.05569198830256624,-0.11368298056583062,-0.08803105933574205,-0.04984116043222942,0.10128075860173104,-0.06138090265273949,0.04219992683524911,0.09777603109900722,-0.0107335599541169,0.004577099851888111,-0.05780926348976285,-0.05756896944950486,0.02240146533180106,0.11284685813830035,0.0022659067949539493,-0.010838688137836247,-0.0025884657811407075,0.035990607414270785,0.02257977073733176,-0.01758568584880994,-0.030789305087585702,-0.036690483159942854,-0.03920707698702721,-0.03159015225403905,-0.036248762680699126,-0.030653161109276673,-0.017911224097107405,-0.05051673498094911,-0.034422067558095494,-0.07634874090489645,-0.07178987748023187,0.023829378150351577,0.051001442335702904,0.014617972665525641,-0.005174374780388509,0.05180916924593702,0.036443439896797984,0.0010308616114727202,0.011621357234012135,0.03820904573970838,0.01142841409131984,-0.005777875617859741,-0.06585727211847041,-0.07148426494437916,0.02230165428103718,0.016935988130154934,0.0017730159029138695,-0.07623666972457209,-0.08748036192087023,-0.09938922594114444,-0.0521519446249576,0.033420262020358714,0.026127509988624415,0.01310857092861231,-0.07915542807935107,-0.09494776456715429,-0.11102983160345703,-0.09255065058669693,-0.061353081839961854,0.019916153938772434,0.016255055069440187,-0.09319041906827065,-0.08779526188383177,-0.08554926128069604,-0.018891632700551126,-0.06871937540914032,-0.0440354769230633,-0.01684693943535529,-0.05223081763516846,-0.01999523744027469,-0.051623039160228014,-0.032087787608241006,-0.10464366492294135,-0.023180554887903982,-0.025315595417659438,-0.024103214175012513,-0.011885233878674477,-0.10580122990313809,-0.0730817077013693,0.02621109430395098,-0.07245528802881852,-0.012440562165825028,0.07893530627120748,-0.010561130214526007,-0.049679723583702255,-0.007885429412769996,0.01669134528882073,0.0002336380929064617,-0.05176513062827678,-0.060857975655246414,-0.02117125290371545,-0.014708471992417824,-0.025714808436107024,-0.03244587921016904,-0.04517863983361265,-0.02685759570949841,-0.009140910771139049,0.007269088605538125,-0.0022022186543362234,0.037666303402352906,-0.05722182330376752,-0.07114056181051093,0.0350179449206665,0.0006485167931942435,-0.10048006300079215,-0.04667221338888567 +Glutamine,0.051280309558609405,-0.06915630860297076,-0.24754251511753814,0.015034637863105896,0.04082975246884736,-0.08892910583421913,0.09684165790368421,0.11115603950828706,-0.2904705185609863,0.03864913089376496,0.017462000231744955,-0.3033013190305105,-0.03948453684249151,-0.16748750437867263,-0.14473037980685832,0.033554420578550334,0.04679760394824534,0.07320552923301504,0.4632517049834979,0.13009013226369712,0.06693719800605298,0.016495882906194845,-0.08645763832531088,-0.3027319805676723,-0.07581270317123628,0.2837854404637198,0.011144546655029338,-0.0676343141420793,-0.11895242596510291,0.051679074149386134,0.20011748224803533,0.10035262674178917,-0.1748395953034113,-0.08900971688291301,-0.026860744394299425,0.04856433400032417,-0.20123949090041107,0.09900653412060359,0.23339694940810501,0.26746944214537266,0.13814619254282504,0.01345320027634436,-0.31395752062201293,-0.12088405432807642,0.1981227858502619,0.12698612968369327,-0.1576459218962641,0.2577018614730795,0.10493909889041765,0.2168736888632623,0.22909955710041327,0.08985070792888993,0.01608137237236523,0.1497093558735664,-0.13243848331120675,-0.04188964402383424,-0.12530628715622724,-0.08697133259544479,-0.015158985417237926,-0.10010542478094298,0.452846834188003,0.27202781440817714,0.4192985035335903,0.2626185026366845,0.28246563493148874,-0.07363937459970642,1.0,0.3001161096769257,0.30190003410649346,0.45288060519464457,0.42130383570014907,0.4298660423510733,0.36975332746739953,0.3749024555225886,0.3138771275305163,0.34756628232788817,-0.10671617517348182,-0.28596245743109183,0.14083397989700225,0.1438207352284979,-0.15489844062187053,0.008279124114571726,-0.015809564852637074,-0.10519113996163375,-0.06534151665788612,0.2636213105701194,-0.10677551940525092,0.11777658051231751,0.10365238450031604,0.3217724825870674,0.06773924760234126,0.2838704820332296,-0.24085812436002876,0.3154302569254843,-0.010464597295886092,0.4308379331398636,0.404014575211241,0.06519818712050258,0.2960423279825848,-0.09751859198644458,0.04388656151312872,0.0535321800733743,0.27608395519505313,0.27211043540604263,-0.01642870673109144,0.47414181802088307,0.051324990769214686,0.10346025411048065,0.12574952306361414,0.06409028912731789,0.13087172297539176,-0.08295561207427567,0.018095039206482776,-0.15616614368518025,0.5692409969580525,0.16337711410474698,-0.14496418388140583,0.002544746843972554,0.2389787666129482,0.07372715248115155,-0.17596610404217747,-0.07297994663273666,-0.10389368612404733,-0.14481298393795583,-0.09617088231341188,-0.056214898591597236,-0.050751057729580724,-0.07488154872942711,-0.08583513932254941,-0.04819092866474789,-0.01809172004222513,-0.029627087406961617,-0.08229245022990252,-0.2389174232003692,-0.21396229926555332,0.2795260249841804,-0.012582841897023224,0.0845758811373926,0.12494336990238575,0.12668953173788866,0.11814914284967093,0.13201499773469194,0.09685840457465451,0.10743078410442991,0.3176265790122192,-0.07027871528885808,-0.11289553039506521,-0.1728372241386189,-0.061906695976988495,0.054983585141057986,-0.10825340086708944,-0.1877719821210535,-0.2121457315836588,-0.08944617515347461,-0.05680660026737443,-0.21160303932783256,-0.2164241310063681,-0.04480825456014475,-0.05948501383121158,-0.1755060078000273,-0.23285680100692005,-0.2228974550722566,-0.00997205946477864,-0.01051483655974525,-0.08556710696357685,-0.249320025621322,-0.015929791356509217,-0.18351492664195876,-0.15475655332720553,-0.2071580629411182,-0.11205746960471837,-0.06241651065637318,-0.07600937268366892,-0.19697221023084444,-0.22647595883160107,-0.19121999060803704,-0.17342430584296722,-0.07672487074603372,-0.21820258033562553,-0.2095863056290227,-0.23195196079458075,-0.003693238892935107,0.20187876984256173,0.17541332066511867,0.25179023247390736,0.2769534552289938,0.1443105063384229,-0.020084285203906427,0.26847660751017277,0.29045454124562725,0.19255816156189443,0.17152566119270163,-0.1847671608431515,-0.2697552744994335,-0.23370877732137904,-0.15918196392319336,-0.22349760603650048,-0.2648869719840033,-0.19376399459400423,-0.18914226588507835,-0.2746014548872186,-0.2659173858272891,-0.20305256412382733,-0.14221211294830383,-0.14973451662936274,-0.22975060911953388,-0.30094657464879804,-0.25886434348172976,-0.123833771265505,-0.10094101939607515,-0.11112918133801783,-0.1655822446378952,-0.24291773988119755,-0.292611722739522,-0.2710502661518755,-0.040118107768433046,-0.10522555333393384,-0.05197438803672364,-0.09764215038978859,-0.17965197176223402,-0.25105508028827445,-0.30683772663505365,-0.07663216806815994,-0.08036106917915566,-0.08736729216894878,0.08058104898038443,0.110969882521435,-0.0012060513317790071,-0.030906319469829698,0.022139236983025716,0.09033618184548868,0.14248706346101558,0.09869429416870422,0.045082251117373136,-0.06801183176142721,-0.026315859559555153,0.0023299311428566344,-0.03128176115177399,-0.010325202123644623,0.11087172511488022,0.017377761977240346,-0.0058927441793110045,0.022805804845045873,0.0535029720904168,0.04532513240207953,0.10188901068130535,-0.012499036277695361,0.0185826983154325,0.026628154466859153,0.13313296739488226,0.08307086724357239,0.06551946029731791,-0.025336952163054215,0.049666279005887486,0.06944479574531842,-0.06834176724204609,-0.05604840081059813,0.009311511081640226,0.022477400737468282,0.030379137335895152,-0.04325718641175837,0.11105278654244795,0.015787692758372242,-0.04654994834408137,-0.002531461320720237,0.03553374331801713,-0.0007195784526106318 +Histidine,0.22312412564222178,0.05345490572334003,-0.29375045710765635,-0.15094788586328498,0.2737854618146278,-0.2980729661293909,0.02065770814731326,0.13165494863621166,-0.550228686273752,0.2060075656931249,0.18419877298169202,-0.5218934687003236,-0.11704966923836731,-0.2510347031162286,-0.40807304151767837,0.054532437086181475,0.033785974713011854,0.16682376407228705,0.6525849931109842,-0.16576638102433214,0.14970084093874228,0.12746536897401614,-0.006984734605611109,-0.43140770048199684,-0.07252345780407067,0.5978506008567256,-0.07242109612249545,-0.09664599103129365,0.033036536981293135,0.2262096710886921,0.40000852047397784,-0.09798957746749594,-0.10159872842948402,0.048737551336245286,-0.43685623813355445,-0.026877998532376112,-0.08932661043751472,0.12889814952374118,0.6218891231627726,0.5018962837202238,0.17345482625469455,0.05737025575249141,-0.5581525775854038,-0.007340743955414787,0.5095429088966822,0.5038266521604229,-0.06807985922655507,0.6625577742696461,0.05088698969931057,0.4838959455027657,-0.059977034523931806,0.2750567900888281,-0.16871076216857817,-0.02085569213991704,-0.3048828510060301,-0.12502388765612785,-0.0548879355785072,-0.052788036061755354,0.24728813341184588,0.33311102257753145,0.2525977292819685,0.6346547353056797,0.7739312890354416,0.1517033165833388,-0.06599028366354197,-0.04120354467415493,0.3001161096769257,1.0,0.530546582763889,0.8041692441285695,0.6959491241341621,0.7853479490312538,0.6489690800178963,0.7966712428748636,0.7963466774506035,0.7194383903363069,0.1336538675612735,-0.2495645790474688,0.4506224349086852,0.5677033341001333,-0.04128336920476562,-0.03310941645541958,0.08089052902997725,-0.3053759783334609,-0.2562730309537472,0.636717435493513,0.06979546063772962,0.7238905341987367,0.7222064073675274,0.6924197370710987,0.18370522338281053,0.7473224558631333,-0.33954118940140665,0.692279114090678,0.13822569419884317,0.5983021734935493,0.4399783262211392,0.4182118596871233,0.09585531304102202,0.2100606085782849,-0.07256128917016696,0.20919021399280657,0.6595904454885921,0.5618229868186467,-0.19702480817405682,0.5248140333672999,-0.05219382828662363,0.2447951694812322,0.44090280863847625,-0.004963991739888788,0.024538027960953557,-0.23203350689956995,-0.3171148873081425,0.042283854579002085,0.6121216167422477,0.32407353849520565,0.2382433955772158,-0.2322205113140114,0.6252714357604598,0.34908994223749457,0.23100185700915662,0.2939519689228248,0.15182402916640897,-0.012190887190573554,0.09556150865148959,-0.011881365705309845,-0.15639708182956935,-0.1926432241408089,-0.21156247711826023,-0.2090656352509978,-0.1369317010544154,-0.09189335864507038,-0.3901470275327921,0.11285734891556241,0.05041182506508339,0.5860121378044849,-0.23916593416780235,0.0239340485997092,0.15346511754971745,-0.07613338540459116,0.3255133617079275,0.09061555499512394,0.28144259678940037,-0.03815021134008909,0.4119911822325998,-0.24284953248998456,-0.255012738201809,-0.19199609648173196,-0.22110483609528064,-0.1258948080050169,-0.1413235661052225,-0.3676907684904832,-0.37429141727561543,-0.2833794692448197,-0.17770897870497113,-0.2878483105681021,-0.4670836164715514,-0.2940010319838944,-0.3343614432659314,-0.2730209405992359,-0.31894897693786656,-0.35423069945753555,-0.24861698349650632,-0.25601324771218725,-0.35100869658438794,-0.2297270949720226,-0.2946315341532975,-0.13319909858189857,-0.04613349698714029,-0.3395462682584609,-0.2929149594495776,-0.26557909938750585,-0.22047489551146893,-0.35325272516105083,-0.2949562136956594,-0.1388156008425961,-0.14113820212198533,-0.3069265424656955,-0.35255781567760835,-0.31524358615213854,-0.4596187605972728,0.10267403053393043,0.4514782276557381,0.46882384163585,0.4234692471828192,0.5148117393304311,0.4340063214843137,0.17557027362767103,0.4889458013029185,0.5461117774651838,0.3819768587469666,0.391132100736592,-0.3844074029622205,-0.4590826643179616,-0.42515568770676154,-0.2712125362710889,-0.3700174587572923,-0.4134703425807797,-0.36157793725875786,-0.3360464946735184,-0.38383882696940524,-0.3967325262084598,-0.37538303091730923,-0.44070879476136054,-0.3789799560595101,-0.32384751695202046,-0.3973894118283881,-0.39865929293589564,-0.3651454070076791,-0.3630434684591417,-0.35275967129574476,-0.3690627062524049,-0.30416395627090737,-0.4077515892809224,-0.3987630243178729,-0.3624117865881418,-0.3352915530451056,-0.3398931605468146,-0.3587510450648964,-0.3865591454258183,-0.3467546084510468,-0.41834253273111244,-0.29866710543080904,-0.2892058751581005,-0.3118165537057,0.07245702717631133,0.11226545591507468,-0.03219137310639061,-0.061187627701431595,0.06230774575407831,0.13750807083863295,0.07856490951538901,0.18960844180593242,0.05168461833659106,-0.13039011158572447,-0.13932717673697162,-0.1066050416066505,-0.07574740767086072,-0.0311996037812002,0.17665935681221603,0.015645788614010142,-0.11501055777927936,-0.050852075520237495,-0.009333591193329303,0.02428521807997725,0.057129981491834105,-0.03398269580228614,0.016422421049310635,0.009892964702069476,0.12014578537756707,0.1112128552132872,0.10997747983651908,-0.028427145468504927,0.09539729813700311,0.13768634564953108,-0.08995216432685338,0.009680349452912311,-0.08380955542474931,-0.027410192080640276,0.024155440413406788,-0.06157360949434796,0.12370984697317855,0.05538071766234826,0.03253798391716702,-0.009582004780245795,0.07967649769940352,0.09128662165703501 +Arginine,-0.019829188590614846,0.02519366526301564,-0.2485484849121277,-0.04732456008406271,0.1918286110286375,-0.20321840403631233,0.18773519729575627,0.053357125275806515,-0.4768552641751009,0.08797436585428106,0.12785980936727032,-0.4305349658267052,-0.3023664505380517,-0.22103752689595718,-0.29454527621090487,0.04403761062665349,-0.02288165876531332,0.010147082131696777,0.5183211742697456,-0.047941054393846,0.11531548276682851,0.07443836044276253,-0.05479974001315491,-0.40486631683776686,-0.17475865372835478,0.5013520088182092,-0.13290384526407847,-0.2721394107621577,-0.06248942847287653,0.21268352947760402,0.2934500414007771,-0.048823881551907075,-0.1482640934083998,0.05440280068244183,-0.23154504926989122,-0.15493849494598327,-0.12021380183651394,0.07281039969295595,0.5228896188063328,0.4198790933970842,0.08430685253527606,0.08116088049994011,-0.48187724908557383,-0.04005830819918231,0.4329340218531574,0.37529694105873135,-0.08555763923574204,0.491586150653171,0.0956748571266394,0.38619420593752524,0.2968483088921455,0.13259234725224903,-0.028082417519557718,0.10455200572997593,-0.24995786203808149,-0.014810033864482732,0.015442468549388072,-0.014322226587940285,-0.08985767930954149,0.03924786649023966,0.29856583341007054,-0.0157741928456685,0.47096343825884396,0.2723638830256142,-0.054437093351068916,0.45143633160566243,0.30190003410649346,0.530546582763889,1.0,0.3249030076863955,0.13014003885234243,0.5210346997114986,0.45110648631096656,0.26169028449864173,0.3106838585128672,0.2691972254448177,0.1704885896408745,0.27745558589164254,0.6794471325399504,0.5059821087101781,0.00243569209003331,-0.08854020493475824,-0.07007326759562277,-0.15287735746154973,-0.14593462823423226,0.5724732703288942,0.03735881765397567,0.5688223271324716,0.4456105253462017,0.6140319581316863,0.3671063884867777,0.609151351230672,-0.3175903312279076,0.5495210208285658,0.11557622297534514,0.3379552329630731,0.15560539449689212,0.29279437017319143,0.13547447048601818,0.12005707277411377,-0.0019565318655348574,0.20927998539949785,0.5569619207558077,0.5155432449775263,-0.1791425326806957,0.37564113420445555,-0.10320918528467404,0.1229331435753271,0.30348153966943564,0.06014971702580802,-0.02054319337108307,-0.1575971513038898,-0.05754942858106579,-0.1903545828029512,0.4778924222471022,0.21179771496290753,0.011074562043534731,0.03586423723647702,0.4382876516003173,0.17371246569439103,0.03701659116431307,0.05467557657205483,0.02933231376127009,-0.16009034362707375,0.10562829916411569,0.0016824030303994597,-0.04947208406494348,-0.06702138712248018,-0.12683316681090048,-0.11159432254453487,-0.03245445355712658,-0.059320966097125824,-0.16974555820898327,-0.010769296877568465,-0.009195377520156301,0.4998898608173738,-0.10241064598763298,-0.04956236262104884,0.1348340166287465,0.04728372144804296,0.19802984477446084,0.1285957384506612,0.18574211565489052,0.06339738823479511,0.38703436940245856,-0.1922543632837381,-0.22583661858764031,-0.15848823659819974,-0.08525086179024507,-0.01864220053405434,-0.1657199723247275,-0.24668422870112267,-0.26310211570994935,-0.2729047586801593,-0.19505279785785612,-0.20984607481247713,-0.23438433260486635,-0.14106668370569111,-0.20138525284879272,-0.20869467949172404,-0.1734995634843548,-0.22416495673393114,-0.15528859468083803,-0.12788407993076417,-0.21180729187966726,-0.20756825070350304,-0.1623622196381207,-0.039009523741018806,0.03625831213813471,-0.19415497583238597,-0.1992535512065445,-0.21971521997346094,-0.17982706755232059,-0.24508363297648053,-0.205100839532296,-0.12453265283722598,-0.11507964880441207,-0.1801656358752583,-0.22314945179332513,-0.18475451328069997,-0.2996017074693659,0.07910632914136695,0.3340100217969529,0.36416161199712854,0.3749129592862667,0.4240931816414572,0.32394983749251466,0.12343745193827306,0.4356196758643697,0.4672858884536203,0.2968959297411703,0.3265382762711659,-0.2505999444951276,-0.3039954913280155,-0.2751418005266504,-0.20375058832832807,-0.2536297891854031,-0.3071239079685074,-0.2889308116639176,-0.24522806142386658,-0.28918869366522115,-0.30909499266767415,-0.27943722491178496,-0.26670188033942605,-0.28748205781079283,-0.23786826650929416,-0.2950791694154914,-0.28742239359738064,-0.22116993205478683,-0.20594731497489163,-0.2698516460635562,-0.24624144838943193,-0.1948869155565954,-0.2853248158364593,-0.28570785813339244,-0.17377911228502568,-0.21529450823854715,-0.18586915248537747,-0.22980212881579445,-0.25679283807811437,-0.22370128468894634,-0.2904312869712127,-0.1788279949917005,-0.16007786061318793,-0.17888289885060926,0.013251392368402233,0.010775313123017832,-0.04340711880826819,-0.008150168244976701,0.025622615735849483,0.08594507157059939,0.024150857146577463,0.1114420482125712,-0.03127648060656184,-0.10323534368653603,-0.1378942225275714,-0.12715122636621556,-0.11676529787041749,-0.08153821979942223,0.0790762362674972,0.017082296803173358,-0.170568631532386,-0.05805385899415143,0.03377817676326575,0.05569162033820278,0.012855404900746386,-0.0432965160075989,0.0029194287960723226,0.06801723831692105,0.022996688325369878,-0.006435227875939982,0.052155499953548234,-0.011747335032002437,0.020943919451198934,0.035624025554142756,-0.06280985879264732,-0.003210501415189815,-0.021749310745506633,0.0009047540969729656,0.02854990890218325,0.01101917093722728,0.1326403239339027,-0.008289142661910354,-0.0018936782351074881,-0.02329186966433116,-0.0036475199796783208,0.05354818361782863 +Lysine,0.19985258386916155,0.02827230555680529,-0.3628576230480008,-0.037176262146012405,0.14453527460335658,-0.3198641779062095,0.04908224916891803,0.12803834103612652,-0.593499211008137,0.10551092885076124,0.059535139164512446,-0.5786938005038847,-0.08027106650986215,-0.2736324730657452,-0.4252291291417032,0.131087463991681,0.06217343314249995,0.185844824108279,0.7875930742313094,-0.2275837581725304,0.20666399764917376,0.0882353686552504,-0.08889321572277017,-0.47146809597772144,-0.027345594199206798,0.5946510736892363,-0.05167827283636011,-0.005032271093643039,0.0033088167474187363,0.27331727383298987,0.444757045679763,-0.17113229854969747,-0.16147587608479205,0.010338236729048393,-0.3878265445166751,0.029643315976137553,-0.13950069778159335,0.19851234142651578,0.5748137684668483,0.4883179033984469,0.26078993921644356,0.08013528675853444,-0.5724369045038543,-0.08579184291824868,0.48630657046578735,0.4248501496788453,-0.10365699985071469,0.6620308547336954,0.11149626622310015,0.5138063689632478,0.09572896749293264,0.2394666645592039,-0.17000005986804903,0.015192915215633025,-0.2879972573139865,-0.1495695909857095,-0.13553990898368226,-0.00640360166718265,0.2028815891625035,0.19977632802558085,0.3483140113291967,0.7572791755764815,0.7947206790651888,0.02442970214924743,-0.03495553626763686,-0.3889256940517542,0.45288060519464457,0.8041692441285695,0.3249030076863955,1.0,0.9048238352094811,0.8128012506549809,0.6559890691350899,0.8900985650597433,0.8123206343385708,0.788009449163942,-0.028318020135144825,-0.5426911062367493,0.25948158852574643,0.4715678413592087,-0.15668204699190383,-0.04733228438050985,0.08404654696073781,-0.2628082751148272,-0.24793664372664084,0.590917164112933,0.003701310609565568,0.5696018226890401,0.6361635997380113,0.6515742504001778,0.14847069955691083,0.6830658366902661,-0.4625023113905581,0.6529744128917186,0.10569454887209752,0.7657310764348572,0.6414336665870414,0.3203490873211802,0.21456055895606513,0.09916119796419039,-0.00573471559709398,0.1297344522134598,0.5926816199033234,0.5460392635997376,-0.2085080341839014,0.754689045792865,0.0965102101826763,0.27062147201673303,0.509531683754069,-0.00980585116469642,0.02360248603257966,-0.2675080907002618,-0.24529438407941248,-0.049692996111437966,0.7119157549456273,0.3930045541796846,0.0937965548616481,-0.16475169271314213,0.588000049737631,0.24702591734508347,0.08459915076627857,0.19767555126572145,0.01924344722533067,-0.1016826468221931,-0.022644174386546624,-0.031178755089989327,-0.18761783126951298,-0.23517992175659685,-0.2354676264601841,-0.21784625521922144,-0.1460248708311142,-0.09782821989190789,-0.386250137750529,-0.05520200031353636,-0.03362950196674995,0.5435527758584896,-0.21624463200393534,0.07428346510098274,0.16779729138378927,-0.02945579810200322,0.31539446982182406,0.11958748590849891,0.2475769977118117,0.006604314016388253,0.45520627617057013,-0.2423488448315405,-0.2726381842813152,-0.25360366165336984,-0.2599761583170519,-0.10165492530559792,-0.14446211580244803,-0.3949371561216867,-0.3759838196031553,-0.2636079326970705,-0.17409660785604467,-0.3587644036402509,-0.5212649842654801,-0.2724403663109775,-0.31124650608648946,-0.3213602784589376,-0.43087336285565236,-0.40122726959934085,-0.21191363910873673,-0.2266942713420266,-0.3385913669432697,-0.3005882264691992,-0.2464085817140815,-0.15788526127550523,-0.10040993949208371,-0.34619579008735823,-0.32306040413362164,-0.2334686249343894,-0.18261575965818755,-0.37716013954580124,-0.3815910233085435,-0.16601180389569845,-0.14000316608796948,-0.2758820307290713,-0.3610312953285789,-0.3313971374537474,-0.4344591376525135,0.08575334246209271,0.4568999586190802,0.46477268843810565,0.44344657993512315,0.538555307927273,0.4311843905988499,0.17011740461149846,0.4990403466496673,0.5634731629353049,0.4130226473840107,0.38962051316944396,-0.36399155188250604,-0.4571756656112848,-0.43046326457507605,-0.23491147261457948,-0.36088236634050747,-0.40867830758623713,-0.34392118490617163,-0.3078271377236451,-0.3833460040038908,-0.3970675582347903,-0.371805545089938,-0.38590203572460646,-0.32256759406482416,-0.32979199391984443,-0.411279523245674,-0.4074095591758664,-0.3397736631696777,-0.32912559767297517,-0.3090194567910245,-0.331199324204823,-0.3305909411040924,-0.4239268020508824,-0.41469570877611445,-0.3070518289646412,-0.3069659805316838,-0.2953260032585357,-0.2974619855628966,-0.350072933524312,-0.35832672227300083,-0.41920551705899517,-0.2711250865981424,-0.25244623838450436,-0.27727388969484157,0.062261511395076054,0.1569996175094865,-0.016017450988098435,-0.07947195969305278,0.05421960937726545,0.116081331981685,0.11519223684926336,0.19816734030460775,0.09410100312585556,-0.13607359579563727,-0.12665361049548662,-0.09153450906607463,-0.06477860906886802,0.02383094182940502,0.17446001376550074,-0.00857685191233686,-0.09273624003531825,-0.022273715382154093,-0.05794820444731943,0.03314621884484938,0.07720498893383149,-0.05628387796842231,0.014424165444517023,0.012337752769072775,0.13351895737457353,0.1183266869427631,0.13176357724017337,-0.029261371893335178,0.09825783615576265,0.1399202280478369,-0.08602177313880256,-0.0051358870912097026,-0.06310539414179389,-0.011358714228501099,0.039842469067993665,-0.06142880056382953,0.1452233180244112,0.07253956918644613,-0.016549594754947352,-0.02154197734242432,0.11849947892267917,0.09569251291645407 +Valine,0.21452415234309935,4.700618014937269e-05,-0.29185783828376877,0.011778391281984981,0.11217081421484527,-0.26056920614400614,-0.01944213561383493,0.10659323523878882,-0.414909290798864,0.11640944572924841,0.056889987626029495,-0.42920877571700133,-0.02070059563863324,-0.19337516294065263,-0.33747275485095446,0.11762142518721529,0.07791682278060327,0.20255864451782343,0.6066088518523884,-0.16285770565626692,0.19321498780950327,0.08520747696840256,-0.032684432981411604,-0.31313016149814354,-0.021590655990817702,0.4453455436890689,-0.06250183265367217,0.011605956342328198,0.013740459010841357,0.2740538508285688,0.3478431640048219,-0.11732064096249521,-0.060475836149803085,-0.020863662973688444,-0.31189990665591943,0.12829467210212148,-0.13360946997482165,0.1872119018299724,0.4275432448330901,0.36285852120492523,0.19155882349433448,0.0135208917913352,-0.395449731546467,-0.0362981046552443,0.33980922137350394,0.33264411026268437,-0.054465810935973046,0.5063945564588898,0.057929777221617886,0.3898730999755918,0.04532647889947565,0.19339869463010315,-0.20319061075746375,0.004749275460439352,-0.2303362901408797,-0.13751584334619246,-0.1568769150204495,0.021786823559502563,0.27434468998678146,0.2518213562067732,0.3124588074351524,0.8998112491248405,0.7925742946937587,-0.012062380296358617,0.04140994514051461,-0.42859813035811223,0.42130383570014907,0.6959491241341621,0.13014003885234243,0.9048238352094811,1.0,0.7969594647998148,0.698997275164488,0.9320098441234538,0.8711413704545716,0.8394857960216927,-0.02310095505445648,-0.5935872391898903,0.030321373742132868,0.3715265266948221,-0.126099611258734,-0.03635846178040646,0.11127277004907692,-0.17909085736538954,-0.22874682319162623,0.4332107931494546,0.011009182079988822,0.41354904572400186,0.4926173551999026,0.500173197141393,0.03534761618175497,0.4777839295379637,-0.34184166067122534,0.4755207541268163,0.09163376676871542,0.71408956998537,0.665700579765648,0.22122807618960882,0.14449597436720038,0.07382943291645248,0.03365748310885592,0.10192986006432567,0.43514288335490336,0.364496888673527,-0.16149800942258302,0.6454100263803815,0.18029102805961889,0.21034328305716768,0.44059361318565854,-0.02866944695400255,0.04255393697530611,-0.2152370540375234,-0.1698760947473495,-0.006618365353388704,0.6023693996595493,0.3362215856014831,0.0993657861121193,-0.0996466005714227,0.4802467780208966,0.19185317282267106,0.09854742787492123,0.2334584336363911,0.025044730470406205,-0.020720106463191695,-0.023447784970227578,-0.02141712982838338,-0.14921927779692845,-0.22733669752971142,-0.21208823985777295,-0.20125255623046095,-0.15052603787414334,-0.10161779571847829,-0.3411476156725873,-0.016337521915767414,0.014635595212401275,0.37448733804458756,-0.18786921663767236,0.07645531357177819,0.11455732218314109,-0.06213067175954385,0.2665560458427592,0.07485164215542754,0.19277295802987138,-0.025722259287195088,0.33741871115907407,-0.18882100484637185,-0.21254469047036473,-0.18715442014730996,-0.22813775288631583,-0.10575634204348884,-0.09370723610364197,-0.32373549864450757,-0.3072555186750112,-0.2115942751614562,-0.11354260786333407,-0.28943221396798136,-0.4602120148843859,-0.22142092979897607,-0.29467962472404874,-0.27496919514952434,-0.36153752823589846,-0.3475907208387601,-0.1970932153021075,-0.20385989446655922,-0.30275255861311745,-0.2503085983583468,-0.2178207002017868,-0.13032509324894678,-0.10206845609977917,-0.29097043047311777,-0.28558475050075804,-0.1760390319472715,-0.14966700085431495,-0.31104885883815964,-0.2885361915592839,-0.1486450160320729,-0.1147049134682759,-0.22758597684264428,-0.3309980074813526,-0.2923721060006856,-0.38236456570182936,0.027625143621149446,0.3325901184316381,0.3355559761520029,0.3225495087270589,0.39919696010543537,0.30314581351700975,0.08440977163182979,0.3682917570348501,0.42137029082475064,0.3042371140265996,0.2770580894115732,-0.34669681884056597,-0.41374303597714474,-0.39276957710082816,-0.23928976024631893,-0.33805685831791915,-0.3737653900622284,-0.30795077336178484,-0.30083326071944483,-0.36018506383134374,-0.36847293310202817,-0.3407845443111979,-0.35679709177795094,-0.30874596262772047,-0.31935167352425425,-0.3858280706385716,-0.37477300388430984,-0.308971421496103,-0.3100540796289953,-0.293314720001428,-0.3189924589592361,-0.3197872851111127,-0.38541195851058707,-0.3704538391487792,-0.26608062967206336,-0.27643468279376315,-0.2791817143237701,-0.2698994235942956,-0.32819409551245265,-0.33428353728102306,-0.375174367380314,-0.24819676855608303,-0.2371037597944225,-0.25615715574439524,0.08571037628732829,0.14452783210680092,-0.00016818070364669506,-0.06738136317376683,0.087293082886705,0.11249748183570206,0.10015235294846574,0.1537778844186295,0.11422535497427817,-0.06514355542397506,-0.06279917331744334,-0.051596357878223455,-0.05455817985837089,0.06517282946741733,0.15797994997303433,-0.003916826653120465,-0.03100116170796196,0.0016273849182568696,-0.07878469961057837,0.04047771691213734,0.07257871517250028,-0.05582174449630718,0.014583854253434565,0.011845868323416345,0.13005735838457258,0.09948923769101037,0.13028762943496244,-0.000432552473274672,0.12912436815695655,0.1358494500950244,-0.047712316616870566,0.025511056940045834,-0.05588527539330132,-0.02469709527570667,0.02442686974083111,-0.05819885595228102,0.08747055268806138,0.07215166192456861,-0.031366949191393524,0.0018589323958042479,0.09160837210307213,0.06466516076166212 +Leucine,0.1099503872555694,0.08755158811585179,-0.28639468851011296,-0.1692852601023549,0.30466361413547727,-0.30959366104050484,-0.0877671012552394,0.17886501548837433,-0.5217774600474334,0.2560884538442523,0.22286975803824077,-0.49394889422382027,-0.17117542513378567,-0.24892950273344205,-0.4580340231749852,0.15157773900323987,0.06360304598790403,0.23291473463950418,0.7121870852529744,-0.08716451263799754,0.21969280748657496,0.2047676076318249,0.04700086427590485,-0.39696428795003985,-0.11189078058066983,0.559707985203539,-0.2175610197567815,-0.19931255843121792,-0.0295640070723154,0.4281910545817654,0.4253278675889883,-0.0036140777749065103,0.0014859630114066305,0.07809375942054372,-0.555073042551778,-0.025402019089632553,-0.12481043459531005,0.28557013141557624,0.6124414735946819,0.5229862092164129,0.15275301087682608,-0.04892228188900663,-0.504609523203252,0.09901788891251954,0.5234542815513961,0.4635622211241425,-0.021352338128714364,0.68092063207758,0.1502332813684639,0.4513554249105312,0.28402579598652306,0.29916541954960574,-0.3123121010626578,0.030155424102061335,-0.46873682508482367,-0.0800323142331425,-0.1044441422394549,0.05063960159452841,0.2098180473530151,0.3007915101243991,0.35383337856138786,0.6549415280952412,0.9439775674791188,0.17687188523985695,0.04454254189985277,-0.02684709456978797,0.4298660423510733,0.7853479490312538,0.5210346997114986,0.8128012506549809,0.7969594647998148,1.0,0.9289061765900684,0.8875976343993891,0.9019490590015352,0.7904098487078932,0.1669325935980712,-0.2064132140855603,0.30811408296638554,0.5940878057686997,-0.05821104762350815,-0.21599070793740494,-0.0556481649590575,-0.20405160467978747,-0.3741603960988276,0.6634031792503249,0.06239108805159404,0.6877722826091334,0.6809269739260744,0.7464746370564336,0.20585137517168545,0.7397993841132202,-0.32702601913635354,0.6696188359939803,0.16407131032248698,0.7668431944763529,0.6778762505782311,0.32876181052821657,0.07498476927825604,0.09237166759398815,-0.03357947048865606,0.2769001768881132,0.6930486228664636,0.5334355552910351,-0.37008220279113674,0.6123235707837102,0.054575939519757345,0.1888548134719758,0.5303275109677963,-0.01829147965398812,0.03059404915709093,-0.260151356557674,-0.3344933122751897,-0.1298250546630209,0.7740243716072052,0.4241074858603996,0.1837050366594275,-0.04523047033103129,0.7093791915639771,0.3074842371170762,0.19069028411214034,0.290740988144057,0.14966266048461743,-0.08787846807783796,0.08810111258202777,0.02999133497258553,-0.1925464641232589,-0.25205810404606893,-0.27149827859141307,-0.2593916353110025,-0.20048037530291893,-0.14276803188862244,-0.4886659219894223,-0.004428660936446796,0.10770673251311862,0.5355163728359935,-0.3004267222778079,0.025457346693580737,0.140361596412174,-0.14521431105992016,0.3563347623614262,0.0680598069319435,0.26157327109732736,-0.06828393991287203,0.3543770927636122,-0.28480617818160764,-0.295894180111525,-0.15897611374172385,-0.2935281944242553,-0.17426846571064833,-0.053710770337237104,-0.34733111792638754,-0.4111150749205956,-0.3029199253578289,-0.1321298849802372,-0.2574634362562973,-0.538215418293465,-0.3701214767268215,-0.4590711493172055,-0.3584896372585204,-0.32730585297937353,-0.4018933621914658,-0.36839637226170424,-0.35264095674356455,-0.4443664247561706,-0.22705855812166958,-0.37545435828817925,-0.0832736142787913,0.014333470860115868,-0.3493772528653495,-0.37903566593085103,-0.2645955373175425,-0.2317265875145714,-0.3928103757859988,-0.27628248590400545,-0.12819775183119062,-0.11208913721847644,-0.3169841894318642,-0.3180745047283601,-0.30346884127293633,-0.45032466305290836,0.06427787003390899,0.4584511837401262,0.4617316217023197,0.43652403599477946,0.5274829709241529,0.44329099008466855,0.16954712872556488,0.487198036307711,0.5635875797871064,0.358415245205029,0.3543097567311089,-0.4066189297685715,-0.4575308248799619,-0.46316177075728215,-0.27096627989844757,-0.3520987769939651,-0.40708198054412265,-0.36415914671985017,-0.3333648134740856,-0.3782876015197377,-0.40987168721560713,-0.40285782686733185,-0.4876599940300214,-0.4239688949781321,-0.33427202383560756,-0.41963051102034776,-0.4198847451168602,-0.4485375925538846,-0.4563841865346265,-0.440719197183022,-0.42589935909308635,-0.3363649740607623,-0.4344917892624646,-0.4275821624584725,-0.4378195800613615,-0.4370696569714141,-0.44034081117525387,-0.42170604993475636,-0.4476741450370091,-0.3782045181145053,-0.4341837327691704,-0.4070474158516084,-0.37802754638023534,-0.4002703831689327,0.06735352173003571,0.13991543390138125,0.0006812594752931175,-0.07316423238897483,0.06750491505082164,0.12618027382508543,0.08948621834564936,0.19364842807923902,0.07560594422304057,-0.12059150888035793,-0.12105867694750873,-0.10429243179650319,-0.07144029188741681,0.01566771144318232,0.13740212651447278,0.020671595436559203,-0.11249324784291397,-0.002033296447909693,-0.061503253010318996,0.037956702129306484,0.038499754471523,-0.07759431861490121,0.022581676754400135,0.026803892657825647,0.0898933555971528,0.09045055422194466,0.17844828639036997,-0.004764403706148096,0.1154676062248766,0.13870039288114344,-0.05779871608460569,0.04117683043381555,-0.0614584099394152,-0.009293868004570693,0.05020199181138272,-0.02211849635547082,0.07214069125173417,0.040847996481660084,-0.023560041663722997,-0.010290652498865412,0.05719828579409557,0.06965839208325056 +Isoleucine,0.08082812023323391,0.09861749613499839,-0.23024047165782868,-0.17857938938366835,0.27344889618324986,-0.2663084773901561,-0.1107955579539476,0.1587747562313469,-0.41734272478057627,0.24342846320784564,0.20681912603227,-0.3845403700889964,-0.13438472348517297,-0.19864117435263579,-0.36888374862047957,0.1325720629958692,0.08743025688179434,0.21662950845809015,0.5673490253562119,-0.053888357478466126,0.1739494993127402,0.20101296847928063,0.05763736275235347,-0.3026317802450748,-0.09164287332797841,0.45238835101759095,-0.28893341269387895,-0.23805846795667318,-0.03196188513754681,0.38860596561157323,0.3260188891770103,0.0193785444711275,0.03874987605929191,0.08461418845625111,-0.5119861398305378,-0.024897120998982874,-0.07804756638552061,0.2661327634702948,0.5038786711925373,0.425274204958343,0.09066243553081511,-0.11951266137312146,-0.39739672819648925,0.12109135924926508,0.431132233036639,0.3677766084825034,-0.0013959402027709027,0.5468954995219436,0.15620888016021295,0.3544347328241062,0.3247454548645135,0.27317509808295276,-0.3075254940129814,0.031045399856601468,-0.4337065377410681,-0.04516262073326087,-0.0833406093043114,0.0626206941581647,0.16254699695054414,0.26215082880627016,0.3053518936167706,0.6087416327638799,0.8895427690976339,0.15227575609508265,0.03288206121470472,0.02416960345296397,0.36975332746739953,0.6489690800178963,0.45110648631096656,0.6559890691350899,0.698997275164488,0.9289061765900684,1.0,0.7934891536503168,0.8671155594870469,0.7080712076220751,0.12134950583237017,-0.13562940286969455,0.18124032942863982,0.48312031189628385,-0.04154324676944893,-0.23273970568640925,-0.09958685244088519,-0.1810667855486276,-0.3381391725255316,0.5415271359062762,0.10319984056287018,0.5827204985044532,0.575684339011825,0.6235674355938189,0.14545013567383236,0.608693709017238,-0.2370864309900158,0.5437025117759212,0.15203716514011073,0.6808263425712149,0.6589626173702502,0.23721906609941193,-0.05050078142800256,0.06678687342676014,-0.039945598177149044,0.27051121298260994,0.59128487463281,0.4254217186862271,-0.37390029029851973,0.4765350722918025,0.051092702299628374,0.12093936568765827,0.4222759394394644,-0.018204962651705698,0.020445996607163723,-0.19741944095771352,-0.2951994951159586,-0.11880077033517475,0.6857448153898819,0.3734415961547879,0.1411729137176298,-0.01343152528470546,0.6301474742733771,0.23627111023313796,0.16198291336083603,0.30248649619163126,0.13876046975132306,-0.11459388243977119,0.10382350646694712,0.025428339891502436,-0.16844671755518623,-0.20529742902049905,-0.2300215969445975,-0.23994960503012336,-0.1961748583874123,-0.12087180879039708,-0.42911062692992274,0.012903988877349516,0.11366543615986015,0.4247327602047527,-0.2634572873679728,0.04309928611468868,0.10057504485929179,-0.14767239949163077,0.3155023838748223,0.034055019810828126,0.22646324662773376,-0.08297597188046599,0.25858581900187644,-0.23827212516830507,-0.22606276629786665,-0.10690493130966182,-0.2553879000984247,-0.15872284460750055,0.01006477972676112,-0.26200146456519424,-0.35571426118698746,-0.2449022702081763,-0.07183975176305998,-0.16144281314227074,-0.4600563695572981,-0.3508545917503384,-0.44007873257565255,-0.3140982558344442,-0.23563375495258304,-0.35005986793833255,-0.38492566661513117,-0.34899747689528,-0.40488538909275334,-0.16121288515281254,-0.346724013229071,-0.05002802446719055,0.03709207750950682,-0.2904684068357378,-0.33317775641332437,-0.22108475358085578,-0.18904166797348468,-0.344148205756945,-0.18781642155722345,-0.09203257622264267,-0.08794258777270796,-0.26455798126165914,-0.2366611416900992,-0.21757489950876804,-0.3632482263759882,0.042891853689284394,0.380970100058333,0.35972251586619913,0.3528021004456389,0.42235685876529583,0.3665540920607043,0.1263651213588433,0.38646339417585135,0.45210390159279457,0.2747007986366664,0.27126126492350794,-0.31457670889753053,-0.35776858280246376,-0.3908631630626834,-0.19729239755907593,-0.24686407596200508,-0.32689864144307257,-0.3162138520046498,-0.23565740659824533,-0.2786530068263376,-0.3407806012998844,-0.3576181558583975,-0.40819354410628456,-0.3404518348275974,-0.22895708771216358,-0.3229670089819023,-0.35119684378696153,-0.4015336243781247,-0.4052061350226876,-0.3876136083761131,-0.35334647853327067,-0.24040014722195252,-0.3456492547164356,-0.3577785060333155,-0.40662922208821795,-0.3976830533752341,-0.40357611655828246,-0.37750640226978655,-0.3839313360422193,-0.2918257250097454,-0.3490061645361521,-0.38124186580785674,-0.3461407315233001,-0.3741622096907215,0.040128644473900764,0.10014355676639773,-0.014693364177608028,-0.06459237913244859,0.060212428711513596,0.09841347978718624,0.06896800616032553,0.15248666590928864,0.06399304167726347,-0.10185415937867973,-0.1057048306226476,-0.08718805172698249,-0.0618763934925007,0.01368642455336613,0.09345037273042801,0.012399164605702869,-0.09278114011209876,0.0017941373365647315,-0.06761289508080774,0.04482749261451428,0.03510694850208641,-0.06507803438772654,0.02174209963511358,0.030029256504128046,0.06761971039158031,0.07093139115672742,0.16414512342433818,0.005412870168274062,0.10541083688460581,0.110225598248087,-0.03401214937201131,0.042416425354105156,-0.04090343459581303,-0.0010587939089217084,0.044979471473986926,-0.008755944456306028,0.043419343861997785,0.026612711840631874,-0.03279640724735332,0.006821104435414365,0.026167363320840478,0.045292911466421455 +Phenylalanine,0.21622204106714873,0.06109116670851501,-0.28585037015786297,-0.11174020660042155,0.2432249734881307,-0.2979085782869553,-0.09560019523143796,0.17985748663440038,-0.4609413527256174,0.21753946839934035,0.16717053016056152,-0.45444061890532633,-0.06095506475972313,-0.22942390436614887,-0.40448816931636905,0.1291342106796495,0.07242798342352795,0.23250709002538583,0.6444218828069915,-0.11912065571796605,0.20544218492726457,0.17347232530431442,0.03612076058690098,-0.3392220641822556,-0.05669866304311083,0.500049708892301,-0.13665827141908946,-0.07198343415779003,0.017695424667959564,0.3559322202076884,0.3750892099155489,-0.042430115174025826,-0.014290718580292993,0.046110406293326696,-0.48109085479871955,0.07784183158178469,-0.08839603200147216,0.22917525962109328,0.5374705414625001,0.4406714198632941,0.14939734373717659,-0.017353177692221507,-0.4436550143107538,0.04434609977974917,0.43236612349376824,0.435607291574768,-0.03692566929532031,0.6077373070468585,0.08363364066335777,0.41813004524018693,0.05638293260994111,0.2743857988312558,-0.2918664759056144,-0.023050189689851164,-0.3524450935193354,-0.11064915413546758,-0.1323555983376291,0.0163763567154385,0.31420772837434524,0.34733263342632925,0.2871226190542661,0.8493203527254474,0.885937731915634,0.048149488178675745,0.014906510038289609,-0.2725596680824583,0.3749024555225886,0.7966712428748636,0.26169028449864173,0.8900985650597433,0.9320098441234538,0.8875976343993891,0.7934891536503168,1.0,0.9430282068332377,0.8692590004228378,0.0915279704418059,-0.4524242588872115,0.1319151301223214,0.48168130496438055,-0.06033779805558973,-0.1409945956859136,0.05352742107305011,-0.18320078669561096,-0.31366303714956234,0.5383373764545882,0.05639907949585692,0.5811782661705313,0.6230711253186085,0.6222462374710664,0.0709606617049257,0.6249079665417088,-0.30262293334996043,0.5795707025340898,0.13687267145965604,0.7339304101726665,0.6741015088921039,0.2852942341915719,0.07176698508460141,0.11311103029655394,-0.012266711243218471,0.21119010328951687,0.5782573800333216,0.4381578173922306,-0.27097193451062473,0.5773164006058422,0.09393932583888957,0.2166310589092447,0.49135194585309583,-0.014119785478091906,0.03586482052011823,-0.24108634940078733,-0.3126385170880307,-0.017688118258963097,0.6686275421249033,0.37943531065833486,0.20522816416094036,-0.052586737874198444,0.6026760141307802,0.27857226713027594,0.1990249569325188,0.3212794802578536,0.12857468787944337,0.011330341382467224,0.05875308081523595,0.005591672189458498,-0.19122970410876391,-0.2549739567008835,-0.2494062226580897,-0.250906997438574,-0.2016898429281099,-0.13979554403698413,-0.45701670907238706,0.017620598162938553,0.09571338999028055,0.45087486491889733,-0.27572227585057385,0.0649198506997061,0.1228482912235522,-0.13441537133632328,0.3304595383730652,0.04608338181291502,0.24348402497660326,-0.08664399866344796,0.3172577611750881,-0.2339213479823071,-0.24024398410414968,-0.16107028430332013,-0.292009809464327,-0.16904715667534767,-0.030352850631328962,-0.3173531105590709,-0.36627138993558817,-0.23770466249992606,-0.10020610824073231,-0.2395790783666684,-0.5100932800799847,-0.3153767175409454,-0.39916194334613836,-0.3271406348907728,-0.3397711780797576,-0.38560255734701404,-0.2948582679855855,-0.3062956654666234,-0.4064757562926063,-0.2211661439955043,-0.3256587450898438,-0.09321125740525427,-0.030309290661131475,-0.3326184440634529,-0.34327251744181575,-0.2298054086664112,-0.1999765256814318,-0.3550896370011407,-0.27932490443964797,-0.1342308298339188,-0.11697883737768812,-0.3020118499235813,-0.3423927343579941,-0.31478769510105864,-0.4465704822004942,0.04085129186061343,0.3926383279183316,0.38933036483160927,0.36944844339652266,0.454394355490515,0.3784902369171107,0.1238707444963076,0.4216223149767473,0.4800069793730274,0.3377979761257886,0.3331297060706471,-0.3800400406998976,-0.4418332767921018,-0.4330416029017975,-0.24641614676221751,-0.3410501423176064,-0.3924021049687835,-0.3333139550376221,-0.31560243000965355,-0.36479201167136627,-0.39393085326033983,-0.36692294684630417,-0.4410823648869631,-0.37396033698288367,-0.3270106519087344,-0.4076327797126371,-0.40935653530738175,-0.3927624438095483,-0.4032232854243683,-0.3781333557849076,-0.38920075786693764,-0.3347604807822311,-0.4213522500071811,-0.4157052841974154,-0.3923960786258304,-0.36952047752951644,-0.3858342457971486,-0.3675725141678538,-0.40611384522284816,-0.3670799574592019,-0.42104993414396413,-0.3505042932934516,-0.33249433662242917,-0.35321589629838945,0.08431984964898122,0.1573133586092954,0.001032982781765513,-0.0801382275082266,0.09830029418714477,0.11965298865345436,0.08029775931681891,0.16731570844866228,0.11914658622342167,-0.06651692206341268,-0.0763838549969339,-0.07147555888978444,-0.06407034736839387,0.06547122284433275,0.15149215593736945,0.026685427534215673,-0.04917480855842788,0.025461908433218498,-0.08809378840326924,0.0465032037873543,0.06931380210454463,-0.05592061003055218,0.017846150068891006,0.021827026471706163,0.128107606588788,0.11306275050460826,0.1500928909784657,-0.0008119424598291733,0.12359318456759325,0.14285597889827095,-0.05748263217490657,0.025114549730102912,-0.04350562509397708,-0.0012253231112234807,0.0558683010547136,-0.04228772429597575,0.08684971468802245,0.05839345873771413,-0.025689762464883237,0.00885041307115697,0.07127457553511472,0.055747366312851925 +Tyrosine,0.18761711053718544,0.1035059685627895,-0.2510871966555584,-0.17127618571748343,0.2868757066633916,-0.29570438094487794,-0.14072022213856836,0.18829149945162302,-0.42759068234335074,0.2617486819851121,0.20804612570332898,-0.4141562407805161,-0.06045341223625412,-0.21997564807090147,-0.39513544131725425,0.12187692380226706,0.10438097236680809,0.2707746287329601,0.5831319180790522,-0.09006872081299667,0.19747679140936608,0.21820292325460675,0.08445159634040202,-0.29469508115694365,-0.07135751132952607,0.47480926204320784,-0.2058471355681672,-0.13961388878804445,0.007295732815152819,0.36959370454451607,0.34755125914175306,-0.004126053513186364,0.0331515721505148,0.09019770655598955,-0.527838143974525,0.061541416378410194,-0.052963836808510203,0.24339339431298102,0.5219116685246342,0.41798760806199153,0.11482057116917761,-0.06919731306186704,-0.4155121111619739,0.10332395874883316,0.41267279571596943,0.4206614738265608,-0.024557071243133666,0.5810514031632202,0.07373927672590262,0.35448037736924093,0.11175703182921627,0.3067055693443464,-0.32621769883105933,-0.02144887092592968,-0.38988169007229184,-0.10841277030678015,-0.09990780727828613,0.02991020745141284,0.3059625073954181,0.3926752142710543,0.25647049263379185,0.8402975896339041,0.8844458318968855,0.07424225287979085,-0.010290604506191412,-0.17293028786180456,0.3138771275305163,0.7963466774506035,0.3106838585128672,0.8123206343385708,0.8711413704545716,0.9019490590015352,0.8671155594870469,0.9430282068332377,1.0,0.8503550693608507,0.12011852151450544,-0.3759880280923362,0.12950362806660973,0.4710127324712408,-0.032972510873592216,-0.15711901960190935,0.02108510279041202,-0.18519014855708624,-0.3172054930676525,0.5187333156961041,0.11745984381079473,0.6051099849706502,0.6460084476108554,0.6104950927436721,0.07415478338102909,0.6139910702039324,-0.2560497709732755,0.5689356492885391,0.143673472316758,0.7236495120695208,0.6551182613286399,0.2807851214661434,-0.037634096257629986,0.12717241007718075,-0.019953553750698166,0.2451843694467115,0.5876471800092067,0.4082501668745939,-0.3350332407946688,0.4865659806849059,0.06944409921847486,0.18088272449885676,0.4545021101649778,-0.02740677456670958,0.03195482903779194,-0.20263216812835416,-0.3328942616541736,-0.02567367793670621,0.6553835837476337,0.3536300331590635,0.2496949772397624,-0.03825476576836542,0.5918466004574603,0.2968915167924141,0.2446368556813777,0.3703774360027843,0.17265138851734144,-0.008180422060403026,0.0878341614156804,0.01828332056286427,-0.20423469065579442,-0.23093988591966585,-0.23654641579945382,-0.2549718172818355,-0.22253303398911087,-0.13843692788470924,-0.4766389763330424,0.0814616737861229,0.13578095880166713,0.43663648150378725,-0.2913117939365839,0.06387906684315127,0.10269273213169802,-0.17699437729623235,0.33466175800733494,0.006039955342450471,0.24374021366603763,-0.13326723508004776,0.27277767412067827,-0.2236878058146176,-0.21094143059573262,-0.10261343862753099,-0.2724209752997015,-0.1933754644111868,0.007866699260730133,-0.28590212160830636,-0.36209411719429824,-0.2438892177937487,-0.0776221912158088,-0.18467944697457356,-0.49954072986050047,-0.36007018094856946,-0.43940619116338453,-0.3197784116766994,-0.2800378841498832,-0.37445381369517133,-0.36787869137776846,-0.3608519993018039,-0.42632718791927043,-0.18638223143042215,-0.36755845935449505,-0.07131997493201073,-0.00041102592054217794,-0.3192659836683482,-0.3270940330691003,-0.24546232785013247,-0.1877882692091647,-0.3453491290583908,-0.21472901012972304,-0.11493144898171194,-0.10800436166013147,-0.2947683875757752,-0.2822137531472188,-0.26204528384638354,-0.4063152025383514,0.050434416340045043,0.38161442618613545,0.3731199714516272,0.33748682520600753,0.4204317723058844,0.3755529866367091,0.13343007719394265,0.38039226956628547,0.44476296873739823,0.29799033714385553,0.2929430522643528,-0.3446811093277399,-0.3912713940327476,-0.40536616039448065,-0.20548754921251505,-0.28645580038476803,-0.34640246312724166,-0.3114268529558696,-0.27057614699342897,-0.3047278839197905,-0.3513511886037879,-0.35259503699537853,-0.45310315138838214,-0.3678292368989701,-0.26895003576167426,-0.3476253227682268,-0.37621391503896884,-0.41872556354698004,-0.42332074791704727,-0.40197533479916914,-0.3876030003044458,-0.2801379313525287,-0.37180999530702064,-0.38006159352586993,-0.4310878915484036,-0.3950699407619747,-0.42936868369719977,-0.3973253101354094,-0.40595244335727115,-0.32396833524389645,-0.3713732213511072,-0.3847555417431346,-0.3630030694349599,-0.39292542880290954,0.06595521977956896,0.12732482237178272,-0.020783824735810204,-0.08309004646056424,0.08271439634884639,0.12604807733596954,0.07678608212798886,0.15042656357085962,0.10490922951448851,-0.07586809480584213,-0.0760299478399062,-0.06485182810052474,-0.05938517291365439,0.04657179832437155,0.14012446975230025,0.01682719946914732,-0.061108336958118493,0.009641478009273157,-0.08313267496688834,0.028271289453458557,0.03666073990333984,-0.05929091011378377,0.016858314332040075,0.01347482789556206,0.10537566736356588,0.10740819543051752,0.15964387988022977,0.008998646866082888,0.13330346195316561,0.1366906832896622,-0.04224124875835276,0.04244206337196228,-0.06399388604526145,-0.023127338083361666,0.03543904669157726,-0.04300006029494536,0.07011589507493704,0.05867590315700675,-0.019949999068826833,0.014174806970277894,0.06690909671388018,0.061609381630005594 +Tryptophan,0.19059955986678628,0.031000726743008952,-0.2472946939915053,-0.09593535088624111,0.1799049442583947,-0.24169635080007382,-0.05794199278686199,0.12964878541720168,-0.3728062818786013,0.1499734316160275,0.10798137267553795,-0.3741998454630447,-0.05790265280331978,-0.20055305748169452,-0.3063496370151417,0.09672307474493869,0.01837959779640488,0.15100747701815628,0.560599933273953,-0.11029739416724789,0.1581656441393974,0.12635756796307016,0.0029220536896598457,-0.2714645636617118,-0.07698393406933987,0.4213300046988331,-0.08295269980188172,-0.06750089525438839,-0.13054654622707665,0.2982194110467004,0.3041406599086099,-0.045285964528227966,-0.03799364713650019,0.019501203671684907,-0.3937949815990994,0.04606023776056908,-0.07170498404143118,0.19321079683361872,0.47281873828611903,0.3849046532883933,0.08838155004415493,-0.05857438293785521,-0.36088286979849127,0.021162398478219772,0.36135046911642227,0.4074386369780208,-0.040232032109619384,0.5048286838897361,0.018910891095686926,0.3031809541438884,0.012773878939200657,0.20005215045066863,-0.24902595428487703,-0.027120891956040723,-0.2687721933501227,-0.09397350106998616,-0.13408816039992533,-0.005103395913532243,0.19841747666938217,0.2526517986005532,0.20890299601201293,0.7633808795079421,0.7793340998008893,0.045768288223760514,0.018787691311149206,-0.2488903449093166,0.34756628232788817,0.7194383903363069,0.2691972254448177,0.788009449163942,0.8394857960216927,0.7904098487078932,0.7080712076220751,0.8692590004228378,0.8503550693608507,1.0,0.06735001893026511,-0.40144800178777407,0.15692423343338172,0.43384986475308657,-0.04320413409135768,-0.05560948992376251,0.08735239088564897,-0.15341115636088826,-0.24552781622248748,0.4851511997667096,0.03672815356071213,0.4982937472150402,0.5183039357617772,0.5525416547404856,0.013598770286314293,0.5243683266958419,-0.23638051826976902,0.507288706568328,0.09679370341207097,0.6669663094438748,0.5946301645151935,0.2997151735934313,0.11782991576369405,0.1035921654362795,-0.019473627451562295,0.17282402665458882,0.4997394604372259,0.3785329205215204,-0.20362074572698496,0.4934149151186373,0.03740869507192729,0.16852360303563718,0.42242210270457853,-0.024747972765295757,0.04806077702716868,-0.21343097332619376,-0.25073739323889077,-0.012615821908459614,0.5668670776188077,0.2803090849126716,0.1697912508588962,-0.04110087958236478,0.48640257097042777,0.21811060293923484,0.1468678715200642,0.2843196860831506,0.09267097157490199,0.025246772730526248,0.015180403062833322,0.023225074474470538,-0.12325054538442183,-0.20410538077446758,-0.18397270522341555,-0.16584584402615954,-0.11506648620213493,-0.08834932873162457,-0.3644242162026993,-0.005940827499816304,0.055412631960396995,0.39596979496012635,-0.19979651975739987,0.07816258087583043,0.150927826800224,-0.07682798000509793,0.3080776499951516,0.09373370625400704,0.23888734417685462,-0.018483879593665518,0.31257936774378947,-0.1790327286439008,-0.19925823646171162,-0.1031311945793528,-0.21863392915585908,-0.10544450540934772,-0.054786061293062606,-0.24749043745692853,-0.2913582605018829,-0.21005314114755308,-0.09416073307509712,-0.2103402775059298,-0.3889778538245291,-0.2277179049335927,-0.2913920261556705,-0.24148364683946053,-0.26972948871134067,-0.30432872043958403,-0.20044783002755884,-0.2034665102555685,-0.30034052256407706,-0.1704361408814958,-0.23931689859376232,-0.040330761094849336,-0.013163016560614282,-0.2563534343255359,-0.2820661735326641,-0.17123962700036144,-0.1449648759059848,-0.2610633361395213,-0.2258723706110047,-0.0968014245315731,-0.08441194330103734,-0.26075735247915505,-0.28715042192138357,-0.26984722382833,-0.3620111928563955,0.01189349670779804,0.31021879025441856,0.33926293430661103,0.30518300515999575,0.38462568403747366,0.3041337627501842,0.09122527862328135,0.3547902666543311,0.40814322667837627,0.27425761748067246,0.27392894558943015,-0.3591380525954951,-0.3998590035277159,-0.3810706466724234,-0.24263544651638724,-0.328594669671583,-0.3561336864902228,-0.3085374074794758,-0.31348365418396273,-0.3441079396132934,-0.3634036208067961,-0.3275622207101497,-0.3747458056621696,-0.3437253023230031,-0.31983853176076843,-0.3671288286263529,-0.3673613653621052,-0.33190318639475463,-0.34733713152145657,-0.3280808608327173,-0.3504860691266771,-0.3127826630524304,-0.37734061266918645,-0.359476972767191,-0.3131769667905937,-0.3080036056823048,-0.31140140526579035,-0.2984348918056777,-0.34846245621446426,-0.31970734413829327,-0.36463432568874915,-0.2844879397301658,-0.2747056414284741,-0.2758236148220854,0.0866767593518386,0.1351959333989851,0.011710788719980245,-0.05710207399619078,0.08689412951037143,0.12021592260213286,0.08608151824209621,0.15620086586853763,0.09069985995380145,-0.06339366569990562,-0.06825061222549586,-0.0377159936504439,-0.0489242278582526,0.03865818003999867,0.15094106440962973,0.007922585356577062,-0.030691654541323513,0.0033189108050176576,-0.10715715165458987,0.026114002944433782,0.05005021191187189,-0.06564423488144139,0.005708211464355442,0.02390269886786572,0.12142766786508245,0.0829659912789499,0.15211241148847143,0.021058088848677513,0.12253812549564014,0.13047376363493957,-0.02511168737679835,0.04368987727581805,-0.05729692755170905,-0.03924585233394539,0.008313766326225682,-0.07603922270970619,0.05719520868279504,0.07398354988554291,-0.036831111186854434,0.04351115290104866,0.07379849405051074,0.03663778469518453 +Proline,-0.06008102602846638,0.18375439577198238,0.24272725968044973,-0.1438890751492681,0.41596100690721965,-0.030559708536948713,-0.2756867140854868,0.3019999357305257,0.15399525878689693,0.3899876881392151,0.39262705077958426,0.11219713847594982,-0.003832022970387473,0.018388582113776964,-0.16120541123101484,0.0795541098178815,0.04493990928501071,0.16393633396717858,-0.043352823866612954,0.2659869033293056,0.1275702472535816,0.24551969082346392,0.2680934422061028,0.20201197879715796,-0.10942190298188931,0.06504617231718432,-0.139932937867028,-0.21600136794295502,-0.08045638557383974,0.4098416717487659,0.0017837253948351087,0.3250391302889954,0.39273763835498515,0.20700624243767696,-0.40008163168230415,0.0953299943915388,0.09963614011190619,0.17398554963142107,0.14696591930150352,0.18815442347094352,-0.14118109822786706,-0.06131777304979715,0.11798599137544287,0.3668698930652807,0.08211016222531961,0.21752605316988188,0.08594973255253695,0.2093584080587479,-0.03892422513850365,0.020057455434693013,0.056032196868299584,0.21553502119980703,-0.3259502825368563,-0.06520226666476545,-0.3032712957224562,0.18602568792207125,0.2072352526617818,0.1560505357663589,0.3076340872498477,0.5361941744023577,-0.1985745922651504,0.017376118093907607,0.13940083072438206,0.17593291114361506,0.28404313141754634,0.45163883864974896,-0.10671617517348182,0.1336538675612735,0.1704885896408745,-0.028318020135144825,-0.02310095505445648,0.1669325935980712,0.12134950583237017,0.0915279704418059,0.12011852151450544,0.06735001893026511,1.0,0.40722383834047404,0.20453791766440396,0.351636059443864,0.3263221295591205,-0.19397299366745557,-0.10055238416766331,0.19678367581856582,-0.1573573426367938,0.3142789170505106,0.08069608392235081,0.441349598231821,0.3870025182457657,0.28585846951558996,0.05442523472165937,0.21223420853666686,0.2260013807029602,0.14384033337232377,0.15446675532433501,0.1305663548500502,-0.00413914909171539,0.3047828212123418,-0.11895821376109936,0.09466437338709414,0.008257810395135172,0.36365355365583096,0.3079980238925048,0.04627574563285797,-0.33519918414951466,-0.13136840773645825,-0.051133015976552974,0.04101713710740656,0.2515125554196671,0.12274091168055008,0.07348986547860742,-0.03378773756331348,-0.21773866017950227,0.03993797089566956,0.1899328526003117,-0.03347273193486689,0.552537353691705,0.16536321107693794,0.17794267042429462,0.36232090949053775,0.46117253118156026,0.3127727218114261,0.37612433496065467,0.2913886733800081,0.20118593393401316,0.1745539760835812,-0.06102514839406044,-0.1495248846691626,-0.16368838289813778,-0.2270321338116189,-0.2529517893293535,-0.23572618436891077,-0.31522898093360247,0.2953021832706335,0.4756111239040472,0.06304337478193275,-0.2337918464300395,-0.17156057809789502,-0.16310982105438881,-0.34322325606043225,-0.026093044131824325,-0.26199873856261324,-0.09809616306291724,-0.29389051066737637,-0.20319799625511864,-0.05418787176343954,-0.04209390575160008,0.093978670493612,-0.23123627434157745,-0.2359994607882444,0.1566696400656835,0.006628328413666208,-0.15041970115771586,-0.12102512205537207,-0.023491163631380523,0.0420700113317293,-0.2219359518882264,-0.28843169090456017,-0.3852391414721425,-0.2089085266201573,0.01736657110780863,-0.12490337938103137,-0.34858932848176577,-0.36288845901979777,-0.3268247005740173,0.06580266686145747,-0.33947657605102094,0.007448313343069856,0.09174982828551771,-0.1475591575767452,-0.12180303727710554,-0.15835551557551944,-0.13387429649755309,-0.14788640711652953,0.017487219822085582,-0.06974054543460122,-0.03149041407020856,-0.1322409702296188,0.055414499279961435,-0.05342880965963462,-0.11237883371653229,0.0036977953317870664,0.006510297101244155,0.02173725143246552,-0.05830250523922861,-0.007048667279688857,0.05554414681580127,0.02484009646331263,-0.059867571924379644,0.006803417583327512,-0.08646496516158958,-0.07490210232269728,-0.1558638048553859,-0.07412743734905013,-0.10680128508039204,-0.12140984848320949,-0.06846418680134045,-0.032735040792495985,-0.016643383641692974,-0.12784151296514928,-0.047791906840442246,-0.04758033984844649,-0.059632648254939,-0.3233595212618099,-0.2713391573955237,-0.0966435878511047,-0.08345905485708023,-0.09150569055421304,-0.30745490906104433,-0.3588215782794865,-0.3512495606975703,-0.2601972435017399,-0.10551116569545116,-0.09054308852534701,-0.08654648995514351,-0.3230690178627673,-0.3549884872682561,-0.38277469159280586,-0.33970315866364503,-0.23469494350293596,-0.09926651904082552,-0.07684887085405964,-0.3340134314169459,-0.3258049089048242,-0.3230458474274786,0.023805082506550505,-0.014095461582826855,0.010365511784829163,0.006266059971567437,0.0020552214473412785,-0.026899669341938187,-0.0703068191261004,-0.00301467227874522,0.06582292247205526,0.05516896787201951,0.043378919620088635,0.019665251678836964,0.010235118657018916,0.0686795910748258,-0.07205147343284225,0.06214764749593681,0.048356247162888784,0.08109936349318998,-0.07313991838095737,0.008171834997677837,-0.029956280767708558,-0.04065024680143139,0.017053912219024008,0.02562978669405752,0.011532691755931135,0.03887852698886123,0.058876982580438886,0.010512768596559564,0.022622968425244337,0.01896638796014419,-0.034951663322504434,-0.02995785428229032,0.030174699791459578,0.03525191869256498,0.0735514629106976,0.03449713356309478,-0.10008241413824827,-0.055877985224388416,-0.0016093481562150286,-0.02076344774890117,-0.05562639428135564,-0.046413104360919874 +Cis/Trans-hydroxyproline,-0.124112164034942,0.04746039534176778,0.2099577764974931,-0.0314501029031255,0.1507741107183545,0.12165778608007938,-0.019631975030983077,0.014465764774853958,0.2077571404680272,0.1239840401181596,0.18449121317560513,0.2046047665477546,-0.07480491727131351,0.11896485530327797,0.06905027915354232,-0.06403975690423847,-0.06524084221229565,-0.09859359830259251,-0.2770521072954374,0.172696419881631,0.003013512129793958,0.04998634947409291,0.100117961155115,0.18455173401434072,-0.08712155004839932,-0.07330774493328923,-0.09086877513959825,-0.19362207477338203,-0.03902657542664891,0.0406501905846851,-0.16982494953605787,0.1733905815162327,0.16786316937528034,0.08315252539506188,-0.009749783966473313,-0.1287862879546284,0.07086570349745085,-0.06061170010353161,-0.06944144868531392,-0.003537075303983738,-0.20939631261616853,-0.022254129641101406,0.1944083095698488,0.17808628607949054,-0.0026589679606685308,0.0022535228105328036,0.11585111653631934,-0.059744846697722995,0.00749482983469409,-0.0036237020208842847,0.09385925455343858,-0.0012974501664951568,-0.011556039183510754,-0.038409689568070574,-0.02083547095322559,0.14882039124171145,0.2265687398525316,0.015296837526347034,0.010613935190082599,0.09978638763606817,-0.1293498108919749,-0.5439598230389112,-0.20172579681389036,0.2524334238889291,0.10630390786838584,0.7654832725212896,-0.28596245743109183,-0.2495645790474688,0.27745558589164254,-0.5426911062367493,-0.5935872391898903,-0.2064132140855603,-0.13562940286969455,-0.4524242588872115,-0.3759880280923362,-0.40144800178777407,0.40722383834047404,1.0,0.31333548523123933,0.1776149204506441,0.15178663150861463,-0.0616167747450346,-0.12904688852179627,0.17819909340640877,0.03861132778799635,0.08057753808025643,0.00913909288749512,0.17444488500232183,0.011717475086872634,0.057755917864458134,0.21098507655897497,-0.024937714178858584,0.22673260908275147,-0.03272366748278581,0.06476400580218372,-0.3703036628423607,-0.35405013805788543,0.10541828731074102,-0.1299233324521369,-0.012773192451178883,0.008204985558473312,0.14229585803218942,0.05185398811585211,-0.018304143800138978,-0.07736482911123987,-0.3387480920933719,-0.1077266338252837,-0.05416892525464265,-0.012930577631121412,0.07717845104375622,0.028153478797899367,0.050020077207205485,-0.007281641933930976,0.013673541316287742,-0.2128509556720856,-0.17561541599935457,0.1652181402398116,0.17365400707439754,0.018146379057826068,0.03432244164266555,0.1104713795021645,0.013808335988122998,0.12701845296113992,0.12118375784996395,0.18034278398140405,0.11422321572594747,0.11171583310471396,0.08336015545083615,0.0721928756986109,0.041941215760200046,0.017734544337626723,0.0051982769564324766,0.05185249951870994,0.19670484526892656,0.14632545504931294,0.031120105897458866,-0.04803232815944947,-0.17270892488708667,-0.10099815927215262,-0.13751003588993113,-0.13841759183765112,-0.08508441275757739,-0.1514852337499524,-0.06821035839205071,-0.21846385884225705,-0.007741510920989809,0.00304582654989109,0.0641657030960337,0.0067089877451233255,-0.0264545791503475,0.01915334072869158,0.06666804242693197,0.018194784708934552,-0.041946255381885136,-0.005715987350302696,0.08097384056063499,0.08625123473523148,-0.023568885472938072,-0.02470939951304533,0.0065660929611331,0.13963843175857862,0.11341373577829605,-0.05078489653199054,-0.031994740799761466,0.00027562853462343985,0.11280897980435221,-0.039394004128327206,0.02962623294882837,0.1037104674511589,0.05651688267352953,0.03638194968752407,-0.020554821835643288,-0.0026993948166456195,0.042106726362636834,0.09828663703505439,0.01702991101250485,0.013779246550475676,0.023297702728174396,0.046809336631070064,0.03173937328412546,0.014841305884446227,-0.027757028427627166,-0.1119554803856658,-0.11878047183011946,-0.10119814633060041,-0.12632088769565342,-0.095678121450225,-0.04007067134181815,-0.11453869887684599,-0.11707964795576434,-0.13874998435774566,-0.12510095649445901,0.05348075605951786,0.0948702495176836,0.06752639855395018,-0.0162768126722527,0.04970107356356175,0.06506621860223352,0.036666230740004635,0.005783473078438884,0.050108615688482565,0.057021445494159564,0.04206765300987126,-0.013758719250234431,-0.05360625180724837,0.011969888304760468,0.05055577757689596,0.057826905515209866,-0.05161356208118238,-0.0503528929672119,-0.05932010164639654,-0.025571191581467676,0.045705943771590075,0.07462918756614108,0.07855220630101409,-0.03528230185144546,-0.05936761700853954,-0.038726748240078726,-0.042081243512159285,-0.010494393749993502,0.04734135425524364,0.07697232104279277,-0.04502621318903007,-0.03463488456111493,-0.027750926257201176,-0.031673714027555436,-0.0944655316161959,-0.03177980342856944,0.06076306911830518,-0.06591480244154568,-0.050060892694356735,-0.05835910781530907,-0.055417175008288605,-0.11737873574170114,0.004976887938438558,0.006389529376891242,0.012934804573034883,0.032770054205394576,-0.0914819444589895,-0.10528630610725433,0.02814627168564016,-0.044308874389543104,-0.018825002949164973,0.05959381440469326,-0.04610331659403399,-0.06782370012420141,0.031767947478188584,0.011474245499572893,-0.030293989229499184,-0.0953642720438372,-0.079128736705983,-0.023887875515516778,-0.010060611558359392,-0.04698325102052783,-0.027150728419468792,0.0010442893172967664,0.011026026306747571,0.009286249597819611,0.007526287608309961,0.00456881743168467,0.06748297620946686,-0.11193373329978257,-0.0795785365330086,0.038111266121974796,-0.004517801004003902,-0.09943634763184213,-0.026940248654001454 +Ornithine,0.04071811132560158,-0.11802945556300018,-0.0967973182374948,-0.019240079053913374,0.13936773998422616,-0.1401911251466632,0.2362552040108993,-0.020156130218301094,-0.3624416699094057,0.03338728867200257,0.07627705484941083,-0.35737456436353177,-0.1879626874233999,-0.12323639839878006,-0.2378407438759308,-0.05191538934638604,-0.1299097113742707,-0.09135258357115555,0.4326766186429731,-0.10201034772782264,0.14804216607685583,-0.00982590058064271,-0.18210710996558335,-0.3321553025021731,-0.12780955710026085,0.550158274769695,0.08908048247047903,-0.09477642062665777,-0.0302615956948679,0.15407333148663954,0.1647476187906689,-0.09205058971757009,-0.21572293950902363,-0.03891151864815368,-0.1494834962347632,-0.14024186592564047,-0.15750222290128188,-0.04617213016447624,0.48249127993732743,0.47218825094966954,0.029633258672404388,0.1675428513666064,-0.37356028023928345,-0.11530076851119041,0.45090525810828536,0.4404843006770661,-0.05581578837024837,0.4943479366248794,0.05027018291000369,0.4276612580064704,0.19284552914739087,0.08448151880582322,0.07711108319783846,-0.03299013527027475,-0.1484641297151314,-0.016962746754833533,0.09557051605027445,0.005732898897331455,-0.02103387031063957,0.07976619855611136,0.20839027406467256,-0.08704408341471692,0.2575786961583003,0.23031654586509082,-0.06806085424417922,0.341616438219316,0.14083397989700225,0.4506224349086852,0.6794471325399504,0.25948158852574643,0.030321373742132868,0.30811408296638554,0.18124032942863982,0.1319151301223214,0.12950362806660973,0.15692423343338172,0.20453791766440396,0.31333548523123933,1.0,0.555636685631407,0.01709059298677653,0.02065151744066279,0.0017745711757811613,-0.11288976992314413,-0.046294964792207204,0.5826024370466104,-0.08740987125743747,0.633963621981419,0.49760203707301215,0.609812100845223,0.314378854985551,0.5709763125653096,-0.3188481381129544,0.607812595477439,0.03496179521493997,0.20573201741582278,0.06902601345194512,0.3966077951833103,0.25712030568480565,0.15028532016641524,0.004145536258856169,0.12965904035819628,0.5152859740702473,0.49165293768356605,-0.07947193286485531,0.3254804476121744,-0.14191957079139603,0.18242850087097753,0.3984353311296438,0.029936986344055585,0.050452762656742346,-0.18932899829783664,-0.13565698303900242,-0.07989054818841333,0.3500626962011035,0.0472915021900498,0.12695333702197312,-0.08797851509730847,0.3475355840350652,0.2139003413847138,0.10150888943401325,0.054737667736807605,0.05594792789840654,-0.09363455040728412,0.07956016916209006,0.07920515087504922,0.05683231031508669,-0.03154948189587109,-0.07147682992484475,-0.03331676848711253,0.04863921837287525,-0.01624159033037274,-0.10721250765656151,0.028904249189518234,-0.05960993450104003,0.6081589761063182,-0.1369278344235358,-0.0686345635494731,0.11296460091280247,0.01335031721553506,0.10445457676179695,0.15422605672916248,0.0822325689386042,0.08068212847732448,0.29406731321173585,-0.174589627044335,-0.20805974018723145,-0.20869402566831655,-0.09206563223346173,-0.009234346328971093,-0.24614956300358998,-0.3104243574732429,-0.2126211133702291,-0.2526270335414499,-0.26889504972296924,-0.34074316639966284,-0.2702819996835811,-0.1179282694502779,-0.09176379798061857,-0.1903000974858892,-0.2878242246499772,-0.17473633215693343,0.0015332274780095326,-0.021616564542075452,-0.13076840757197747,-0.21823123294281552,-0.04556127932381299,-0.15942844620724222,-0.06230545229574468,-0.20412144086859252,-0.10550813907538541,-0.15863662948705967,-0.09931838012908187,-0.25159936334257943,-0.3357875247538709,-0.17753397845611896,-0.1776603965480107,-0.1750598800887819,-0.2968853681895729,-0.2871918992830859,-0.31639406526839214,0.05243796735844268,0.25398076121382107,0.2788498280446088,0.2802415917813117,0.32815944482873427,0.2319648705424968,0.08648235965989562,0.34711859278970386,0.3663011034313938,0.19534351336064346,0.2505161716403183,-0.21726178368820256,-0.26602086926852775,-0.24887494746156633,-0.18100147491393107,-0.25975741468758123,-0.26545981236111593,-0.24551015491563802,-0.22958823855257124,-0.2758663163431925,-0.2579216533423859,-0.21868354837771536,-0.18875269084924787,-0.21524976977079027,-0.24260502919824065,-0.2715893669193183,-0.24768105849672445,-0.1346297514818925,-0.1466703364383224,-0.1408296905153451,-0.16960677151079254,-0.21154140071576474,-0.2425262021376595,-0.24002329607185607,-0.16131981310982957,-0.13388352669079562,-0.0937989220125462,-0.12453735132828087,-0.16057270496613124,-0.2231507243204317,-0.2641108614465623,-0.062003844421314167,-0.06296268288357866,-0.06819392723450773,0.031635211491783236,0.061813017764800644,-0.0101226821993159,0.05803817303438051,0.01752706778346079,0.09054189725029523,0.02581823524029976,0.11375750468830603,-0.014083430795551997,-0.08473308694830878,-0.10588779564585776,-0.082265126663258,-0.04912129473946616,-0.06682294995729607,0.0979263989296401,0.0263967311523578,-0.09424071353415121,-0.032766976765045405,0.03478986305741047,-0.019683042793915896,-0.046839161062566435,-0.05505918810222537,-0.03090717403534192,0.014352389783745395,-0.028953423889423062,-0.010349938582165307,0.032450469142446224,-0.0139577157208541,0.012130462081995846,0.05439838466654787,-0.025200876732432896,0.013532829591957613,-0.06868082753703425,-0.03293115347363785,-0.026502401656977287,-0.019754631752249115,0.09281112570976446,-0.0037498140246515132,0.053479904311120235,-0.05111178503861172,0.030745887435615307,0.03528923248614302 +Citrulline,0.11221274751648046,0.041484925244737555,-0.09465530053060692,-0.051845638119044496,0.28909144325538133,-0.14884193634525691,0.005754398553557911,0.1805696098946403,-0.3895133984189771,0.20491096075516407,0.21849860284807457,-0.35365743947234085,-0.12734020814950503,-0.09193766391292023,-0.304304488408029,0.07349758633797566,-0.05336869513747227,0.0533200976989892,0.48899919816532306,-0.0758690773725728,0.15299706657618056,0.08667152885369964,-0.07276399904725096,-0.3099327205711293,-0.049680476542665296,0.5063703796506814,-0.04763580593182442,-0.12183855191418308,-0.0031555359391253045,0.30778703604106894,0.25557680781705483,-0.022737298178088387,-0.04678346169519862,0.01720030025192777,-0.39871148814414703,-0.09701081222445418,-0.07230283186048304,0.10806607938000477,0.5643735111172085,0.47045743346660246,0.037028338828658164,0.07829877707916766,-0.3868022578628495,0.04780586123999639,0.4733890598365598,0.5309224188143656,-0.013965970096840124,0.6265578327856458,0.08740971351768202,0.4632756209587837,0.12822096572816175,0.0699582498879849,-0.15294258116565468,-0.011014082845885583,-0.2670381308901084,-0.02037742872474621,0.021599131547425363,0.07687347132455943,0.1656637171003856,0.24719651408303026,0.16415874530302502,0.26823901416310064,0.5480352957197155,0.17526578299760742,0.05303127872822693,0.17834096599673127,0.1438207352284979,0.5677033341001333,0.5059821087101781,0.4715678413592087,0.3715265266948221,0.5940878057686997,0.48312031189628385,0.48168130496438055,0.4710127324712408,0.43384986475308657,0.351636059443864,0.1776149204506441,0.555636685631407,1.0,0.03139468404820339,-0.07761421184970335,0.031038131386488168,-0.12585436875908712,-0.17345068976477723,0.754620035254651,0.01677959773113921,0.7295749038546291,0.6251608682174672,0.7240125735348127,0.25308749851292606,0.6905715098576581,-0.20779485572744094,0.6112100291602856,0.1411654599263453,0.4143835080704614,0.3229296188242669,0.4613769724363925,0.09472041935657885,0.14371754556109845,-0.011387526162744056,0.17780917048412032,0.5883356373134266,0.5205741809361627,-0.2324043774605768,0.3638353513801907,-0.09011206018738167,0.22828357586973552,0.5388452668416951,0.04441005903704058,0.06722593806487076,-0.2071395749549235,-0.25932084925923354,-0.017828689620276346,0.4753997610592165,0.20877195979604138,0.23094390688752178,-0.005631529745893135,0.5081264791504556,0.25817958172695055,0.2134489232037592,0.24655344500646936,0.14466703194672353,-0.034559456235736835,0.06669851235086005,0.03347782821494367,-0.06943219106849492,-0.21168270673661507,-0.2307794520979872,-0.2096804798664348,-0.13892249228666825,-0.1758968491513228,-0.338850812524137,0.09555163974355539,0.15267263351903937,0.5449060531602982,-0.18873609619246828,-0.060425669927969335,0.1498475352915224,-0.10061541820887933,0.21893779352699438,0.12111440688607525,0.1536876649788664,-0.0032551600605118807,0.26739143773181445,-0.1934347046325946,-0.23029375883468592,-0.13248829467084147,-0.20132905189837563,-0.05384218395535331,-0.23342488706474984,-0.4340242510624292,-0.3405372911988473,-0.32645420005072207,-0.21568751234642627,-0.40744875534766223,-0.5008831906888824,-0.226631192907351,-0.25447174700977987,-0.23304825884657995,-0.370617575246743,-0.31314910274801283,-0.17242673239851652,-0.14716353241536526,-0.2533230824721032,-0.24408696997444893,-0.21771528223906889,-0.14838831607617245,-0.06603223114182706,-0.336233579612912,-0.25797472576315755,-0.2505064682673839,-0.17328337307267822,-0.3040747255326877,-0.34208422939724525,-0.15672588790280606,-0.15761045634279292,-0.2596504019411378,-0.2876443524859418,-0.30265662085562156,-0.3452019631536256,0.11342902102252568,0.33225184147709447,0.37076290200236933,0.3218015855112802,0.4020795085572831,0.33064155645509674,0.15450814115827022,0.38191980274679704,0.43260795426864446,0.27116369776102683,0.2981053215044477,-0.3479869454677511,-0.3951517270187105,-0.37406705712109556,-0.2928761355619208,-0.3800585112170514,-0.37800934525746555,-0.31448412053703095,-0.3586468751660907,-0.38663243994184393,-0.3527605996865444,-0.3068353756317027,-0.34796054674075594,-0.3548913581551775,-0.35077615995863226,-0.3819734547607349,-0.32954564384610235,-0.28301900619854364,-0.2987511667352607,-0.30436244444061333,-0.30081303863117465,-0.3130610847553974,-0.33881310410674775,-0.3081363225642269,-0.28729112154037595,-0.26954268876558757,-0.24871089710239333,-0.2549084749191729,-0.28241540336684057,-0.297192453967485,-0.3407128802838813,-0.20879614255309675,-0.19874667649152702,-0.1942252509204955,0.028206604567851276,0.028282361599172502,-0.021442915971688407,-0.0057069037491743685,0.06042865528552919,0.07094750537383716,0.03190599395730848,0.12325363095587753,0.005127635927001687,-0.0595757626164167,-0.1025345891491548,-0.09518092588101955,-0.06644258196944375,-0.0337364492454542,0.0923097747471772,-0.024291293276222856,-0.11675492228880943,-0.0705512588048348,-0.0009682207850358668,0.01594571574571056,0.0003206445536570508,-0.023662004696242734,0.017988753408178862,0.03912737093824921,0.046141209954091766,0.05214027869028044,0.12569565862621057,0.04805937046014499,0.07997444881001535,0.10502188679506559,-0.01926522013797214,0.059506387278722345,-0.061166790022088566,-0.026400966933022397,0.02883233385938118,0.007357610445116758,0.010293848166845114,-0.007639825210876794,-0.011312240777242756,-0.04368472739464006,-0.0017900482931566335,0.06938099701145196 +Taurine,-0.056454721551913105,0.09013510484838157,0.3073290086918517,-0.09549949460602553,0.24510296987109928,0.05508846238526194,-0.11463524303004417,0.18851119768296745,0.24820983676750455,0.25884347320137147,0.2585275050721107,0.19110612741031827,-0.05609669819705347,0.08981106201948355,0.044474266486581385,-0.0008271872683012313,0.09109095505355339,0.1413237087196435,-0.15033692202684393,0.21049100872398294,0.04916776334185554,0.2676196757433057,0.3421515765738323,0.26485077217027697,-0.03563361075741514,-0.08237745557556782,-0.07599850564211354,-0.1399455955989933,-0.056636674184044965,0.11459057870939403,-0.14650719597510503,0.21767453420061358,0.3865927559674356,0.23716303311497575,-0.10014859754429968,0.19440109568572855,0.06027460715961398,0.06359925604498765,0.04072561240710902,-0.019791370382135166,-0.17769981826500206,-0.08324993894551808,0.21805189008899634,0.33452151074092795,-0.06279085011192453,0.027342432561426336,0.07591832149356079,-0.026243371290346856,-0.13115500333355826,-0.120502520170598,-0.11423672189118111,0.04666376443350311,-0.13610761265962745,-0.06401765792997328,-0.08969714739470522,0.16516179621086743,0.13183047336486306,0.043008056151074454,0.08141629978612917,0.19470441985418271,-0.18318566280186213,-0.06802015578231083,-0.08994934087835406,0.11964585794211116,0.19330166421231929,0.15651149509888684,-0.15489844062187053,-0.04128336920476562,0.00243569209003331,-0.15668204699190383,-0.126099611258734,-0.05821104762350815,-0.04154324676944893,-0.06033779805558973,-0.032972510873592216,-0.04320413409135768,0.3263221295591205,0.15178663150861463,0.01709059298677653,0.03139468404820339,1.0,-0.08935888820469154,-0.03500670700147218,0.2046683191354325,-0.03889166296083574,0.046870820950897965,0.15051813961769775,0.1005832132116207,0.061535017202790136,0.04493123711014444,-0.12061400803604266,-0.03734717410909764,0.30608556936706227,-0.027039156199229336,0.09106057090493772,-0.06578807322913882,-0.057445964411522776,0.12101597945647535,-0.0077201308240277084,0.14549294426512513,0.021755054674527412,0.23829446976658214,0.0639853247364,-0.10948135204693014,-0.1075681433516864,-0.19219254696001314,-0.04392928099866714,-0.07985646438425889,0.018724269941129315,0.10534571132502078,0.017090004322965723,0.06377988427380135,-0.03698399444656321,0.015550205757626416,-0.03421706330318374,-0.13061188300895782,0.3865106111472816,0.1785623727962167,-0.11001677808912232,0.2985137789109928,0.33517649204973116,0.2141818126574735,0.26829148441941786,0.259292654097423,0.15465632319193484,0.1334144648454863,-0.03597690359588622,-0.004589612037809978,-0.04149117065755673,-0.0781608050915142,-0.10813043899879904,-0.1194062546113829,-0.038961154875689,0.11614745795303763,0.7424449498830017,-0.05035395998818354,-0.05421456856457934,-0.08990908339839797,-0.11922834329552943,-0.19638251920247893,-0.1071114251502621,-0.1656358712027849,-0.10005744990149326,-0.16391420544265964,-0.18548263205361762,0.08410324466370363,0.0800106858536697,0.1066757429033945,-0.04870195677353683,-0.034070262726716274,0.16816697210734982,0.19146750712412972,0.09087775107946784,0.04183806973149403,0.06992275096604939,0.17202090834142855,0.0709030447364792,-0.04848626952855221,-0.05375187124768059,-0.01746167309129217,0.12820903060391622,0.037794966278316085,-0.05555146378453198,-0.08753412065069663,-0.07055856553412176,0.11018306092525555,-0.09427775391482275,0.04917303050806548,0.044240062700791796,0.016421530386425645,0.013446347036495051,-0.048278533050427744,-0.05069597904048548,0.02331948360510912,0.13594600000766355,0.005446052015825442,-0.031111142597315695,-0.039571186360381316,0.013261790994734533,-0.03938419424267559,-0.004189916768184836,-0.1269763100999307,-0.15011030209971282,-0.14689119183092936,-0.12192885104196252,-0.1223978860923763,-0.15326646187085619,-0.12111244201806724,-0.18376437938977416,-0.12088606686857946,-0.18268051092045529,-0.14788605301820013,-0.05782953225940876,-0.009611381489483338,0.02279706548454012,-0.04611600848931416,-0.018826583401587944,0.020846346038579232,0.028351222482451272,-0.06391534475307654,-0.015692058294103743,0.009811806644005518,0.03252341707031334,-0.12169519273026945,-0.13086674920335806,-0.047884372641965066,-0.017210590842026863,-0.0036706639172705215,-0.09639953157285756,-0.13277941129803883,-0.13363161415306654,-0.11140755958615152,-0.04223152083622187,-0.003105311077781116,0.006355255428378224,-0.0613448235961857,-0.11145614833982762,-0.14502343026786996,-0.11322497010804555,-0.08014454176492919,-0.01241396409532357,0.004547756558516211,-0.0874224504443104,-0.11348643656643041,-0.0974540047493813,0.03228395677347863,-0.05860048138119875,0.05360495952500923,0.10144784485368127,-0.06217062551301551,-0.07874501720678312,-0.0855210000814705,-0.09608557041902295,0.00888944245485033,0.06667483728605296,0.08167912019304681,0.1018006928164085,0.03214813241589803,0.07053149429757254,-0.088627645541539,0.08689998550091982,0.07503130591060041,0.09813365522789884,-0.05153395982855054,-0.02921923818757423,-0.04935879469543465,-0.008343923758951212,-0.03208846360063859,-0.022919289336755307,-0.04789465143842917,-0.008631220671144173,-0.06140942038431546,0.0337654441616209,0.0037107069412752234,-0.03506579849634995,0.042446286395049965,0.008791011876638454,0.0639179997807683,0.0417714882851072,0.03481003654701657,0.03064999168093181,-0.1066404895634085,-0.07475159231809521,-0.002482809106712796,-0.06584319733470843,-0.04934324732110935,0.0031432666254858277 +5-HIAA,0.11609216988936011,-0.17091203860779786,-0.06669816153691206,0.16192807606965529,-0.23928066923850233,0.09396369761278085,0.2795405446955422,-0.20884896288891452,-0.030391634016447143,-0.25111423515839254,-0.24987303289704899,-0.041329322935479834,0.08582109688470195,0.022502561245720473,0.1394550709583114,-0.19951336073497164,-0.14775198657435626,-0.2634319386394194,-0.0773984446783056,-0.18038091941610962,-0.13433777121996035,-0.3374265143424727,-0.28091728789354614,-0.10108077093674614,0.013422519436178204,0.03636383038738017,0.1999402380608576,0.14730562763560726,0.07760215532922661,-0.3283204450090191,-0.046645714561607834,-0.23840961892928367,-0.3022165084528825,-0.1847135728016626,0.3810138752835842,0.04712260578020469,-0.08768764545662668,-0.23385744591041077,-0.08094593697276392,-0.06984245171050447,0.01926966640174384,0.1956295827439268,-0.027927434627007957,-0.27978510037073645,-0.0868437478694765,0.021791341261852778,-0.11021722612140256,-0.14621177163180413,-0.1312824610137797,0.09410446430907292,-0.30738463641430885,-0.20363100790735467,0.3762307115710979,-0.033801283182538756,0.382962437587,-0.024370934192946267,-0.0010858598830475671,-0.09563455487604959,-0.07212373481597464,-0.1337216935943248,0.00258471617619735,-0.011655419690088709,-0.19770241777660263,-0.034574999073515834,-0.0434547486719271,-0.08086351341704995,0.008279124114571726,-0.03310941645541958,-0.08854020493475824,-0.04733228438050985,-0.03635846178040646,-0.21599070793740494,-0.23273970568640925,-0.1409945956859136,-0.15711901960190935,-0.05560948992376251,-0.19397299366745557,-0.0616167747450346,0.02065151744066279,-0.07761421184970335,-0.08935888820469154,1.0,0.37256880240255796,-0.059924573251102335,0.30339897164922286,-0.03630151170526368,-0.019152508500534314,-0.16552878686972594,-0.19160749554347395,-0.08353154817889367,0.01807025729200788,-0.09172577747139268,-0.07742677233664534,-0.065468693653267,-0.040867723632391544,-0.21253910665516176,-0.12239804706344844,0.0063579202387780845,0.09550805260211395,-0.0045477003326963176,0.03392686572313125,-0.24632485590196315,-0.13378505991111186,0.051511920179210254,0.41967208093400393,0.0034966166117473842,-0.08728744068967641,0.11896529124284633,-0.08532639779262544,0.030064316937143586,0.03797656666259568,0.08490389463656058,0.1794628937944009,0.13339606958702527,-0.23465695656469857,-0.15625850438342265,-0.14525214492278016,-0.02940900715862987,-0.26208345486847634,-0.08699600501718142,-0.16281997464334869,-0.09027404241495623,-0.23202906160207015,0.022182259352081773,-0.08508438616161185,-0.10425843779682327,0.16963941294645687,0.07100306223541794,0.03964947958056066,0.045484163877643806,0.04880669418103756,0.039369482083123644,0.25710847739949877,0.06945124227127131,-0.22724867186489445,0.08950411838502756,0.21695276596205976,0.026086039874589597,-0.0034169194629233516,0.18583925647981653,-0.1222998092661635,0.08086485145627359,-0.013054042858966318,0.14240774528369785,0.11921669229575764,0.05730204028914352,0.04493792669619419,-0.12532733978381458,0.1420400943929174,0.15035830222488455,-0.2192967541098833,-0.10109793080782431,0.08621367878149479,0.04403481100792135,-0.08777055977322232,-0.13807142190764507,0.08323558453247339,0.24202697107209045,0.3412130629856825,0.13621309304441712,-0.07064028744614917,-0.003427031705370893,0.3379745254956232,0.3244122346464318,0.28834271049317856,-0.11023714556411165,0.28486727608794143,-0.13226816444247078,-0.22519203536915738,0.014290257243589732,0.10501504352923059,0.02465984773032994,0.05249144157864347,0.14182743883119248,-0.0743326773847379,-0.08128233336077591,-0.06272210183082727,0.15892498958049858,-0.08339147313642961,-0.013228135487133596,0.017967811582410113,-0.05680050194092323,-0.10136896177212464,-0.12085297743182154,-0.07962668286567878,-0.07058543287797579,-0.14771049791953167,-0.13619971077536946,-0.05038821752137098,-0.08773429159781158,-0.01573478948322768,-0.05906425134971753,0.031717732730923404,-0.04185245662093249,0.020182427678890863,-0.06333708957750943,-0.08688492075859361,-0.1029868559397021,-0.07895913501961882,-0.02755398443393594,-0.10131013842507763,-0.08410969434205746,-0.05162426487446809,0.1959620040804827,0.1368099525961086,-0.030560291531768757,-0.046772131601935246,-0.05517842030316956,0.2224589422379711,0.2728952623020443,0.24024013238152317,0.17069219630335195,0.017172103037534615,-0.004640085959244085,0.0018736472082687772,0.3041610732422502,0.2529793267254198,0.296517440471555,0.25722018173148814,0.17963252814908215,0.01711219606771871,-0.015123414117597175,0.3107313168565268,0.2689069339048037,0.2886060567975813,-0.006706294960962168,-0.034640027664516265,0.002401175547947334,0.040655101602595105,0.01674481367172702,0.006770506583355124,0.02131911505992717,-0.014842674495662131,-0.06618719950554795,0.009606830474913288,-0.031255287078037916,-0.0201758499404985,-0.0038115747749062337,-0.09244058055282126,0.03835821098085641,-0.05701380049133794,-0.01473127625928772,-0.08532539395260182,0.08868212397252119,-0.003033117675471099,0.036134917539308066,0.06502574141389525,-0.024392311434966646,-0.014244777957533832,-0.018107880017317085,-0.04026668156033266,-0.10900083766348703,-0.01024249695406353,-0.06070435121649657,-0.036596815339471095,-0.001682937985039716,-0.012524127394763497,-0.024433306111310442,-0.05985261271510206,-0.05706088178796522,-0.029097820560491507,0.07435290338165923,0.03608030432405401,0.055057405613154364,0.07135254491005234,0.05812626527251721,0.021729318614101743 +Serotonin,0.19214858447829913,-0.12343415425580825,-0.01599026175680311,0.1269162621440191,-0.0265225465779891,-0.020523496366279887,0.0893773774491967,-0.06671215864801425,-0.04163479051861918,-0.03923368242372618,0.005986827740367612,-0.04375496946620443,0.10184849704045502,0.036473194833229604,0.01402596999514041,-0.07330290399560027,-0.13432152713392026,-0.1540174963460371,-0.0027173515574866244,-0.1134513477328266,-0.03332561752961525,-0.17263718417687382,-0.1735420284186271,-0.01990335129518004,-0.006611782751137061,0.15489935465853372,0.13824082598616894,0.09851939132862186,0.04177272613974836,-0.07966921817566155,0.030529591880153254,-0.08558241608845012,-0.14490374096638486,-0.13587947009531792,0.12020304494726451,0.14305383828741544,-0.0641499303683963,-0.10653739273665949,0.07018006479209861,0.06801205639464071,0.033491563087127266,0.08245895896904687,-0.044592798778350554,-0.11300334838606668,-0.023294356757844092,0.17470880233860356,-0.01827905771030438,0.034203016240304765,-0.1775325307190268,0.1155788601607013,-0.24300034299409723,-0.07446675513465184,0.09525797665034116,-0.03904021564214999,0.13573198258263974,-0.01900556729508212,0.043454882066686795,-0.01601301133184815,-0.07459269641091001,-0.013849013581173015,-0.0878819063745486,0.12917001804885944,-0.04959284813756985,-0.05180074693975438,-0.011876517634013317,-0.14765277068764154,-0.015809564852637074,0.08089052902997725,-0.07007326759562277,0.08404654696073781,0.11127277004907692,-0.0556481649590575,-0.09958685244088519,0.05352742107305011,0.02108510279041202,0.08735239088564897,-0.10055238416766331,-0.12904688852179627,0.0017745711757811613,0.031038131386488168,-0.03500670700147218,0.37256880240255796,1.0,-0.037471017383625696,0.06124603793413029,0.015014850324417807,-0.07931776431585638,0.01806027485578851,0.011275701089497171,0.03433810678221368,-0.04935224073499493,-0.011814267994075844,-0.047269680668239195,0.01938971400727375,0.039894618430653346,-0.031248659072251137,-0.01366281721065852,0.030351370232782733,0.06950942640998838,0.07001312050687604,-0.0031443711638119752,-0.14109631743717532,-0.0026257192150968066,0.05962379917765609,0.1830848533911792,0.023438879580231442,0.030286219586868224,0.0932965714664948,0.06301725439271341,0.05876864906811338,0.06342088377528363,0.027652680362166067,0.06349707853761226,0.19227639254691292,-0.08017255142239975,-0.030197586266989235,-0.015898873591926013,-0.04681725120758288,-0.2138151450981934,-0.03397667297842261,-0.0346997584533868,0.015545372092575728,-0.07409871806138695,0.08015295125963065,-0.011282581408661506,0.016256957633159867,0.09841142109956097,-0.015857244837464268,-0.012336730746620585,0.008107715316353918,0.035827011463069394,0.010986626422050295,0.0945926180027297,-0.002427030119162234,-0.07780989046083418,0.04833738696790348,0.05726295741168976,-0.007312854606389074,0.026200994165872186,0.06697268680322413,0.0031577943465734486,0.08487246650143818,0.07304911600051754,0.09141318762351405,0.11481091758070923,-0.04026984588669979,-0.07924366938036359,-0.07040890958378962,0.030105420193403072,0.003661127613910499,-0.1817604592709848,-0.1311367549925331,0.01962624009635926,-0.0723665673088571,-0.07701596873786135,-0.17790911027273965,-0.020922758087880192,0.03354448686734063,0.09717272953741041,0.03807803803174836,-0.1665978009594307,0.0010876168347159674,0.1790135012365836,0.15551299559344164,0.05127530056126879,-0.04074337493214709,0.09297947698065225,-0.08121846890625199,-0.0700742804983184,-0.018824334990663952,0.04442115377125992,0.04325495283530555,0.037424260609500555,0.04034622294096123,-0.1487907318045643,-0.01375967798747247,-0.03266242227836773,-0.10613303331083228,-0.17471867851829437,-0.15248845023594734,-0.1068791058181077,-0.005425825046376744,-0.010499805814544325,0.0077146408668264084,0.03166542295221558,0.016404494380786266,-0.02023446287762702,-0.017911976482691355,0.0700238623397049,0.04398472172475097,0.05032448112091803,0.07007208787394119,-0.14346358971819292,-0.13872019425415585,-0.07268325304996438,-0.1673321241589398,-0.19460207171600477,-0.1440318698852167,-0.08136425083885802,-0.1994149466164205,-0.2000268933532139,-0.14155900779920633,-0.04463747256185338,-0.027256596012785184,-0.06725381779472962,-0.2020101350539844,-0.167165933826875,-0.08749063146113764,0.019977351203991918,0.018809593318912212,0.039572708630760144,-0.05157402341491557,-0.18551433846133916,-0.12412224074001282,-0.026940022833681743,0.0361170034520017,0.05380034675052994,0.08263228022547962,0.03553889863799183,-0.020341436207049368,-0.1285238662107333,-0.0943759778247055,0.070518636966818,0.05837737557902581,0.09248482905835335,0.038546497149833284,0.014216965572023099,0.041282078721819875,-0.018478189047379426,0.005443350587815461,-0.015357409592681295,0.028492112667241373,0.013996721182494029,-0.0334507184526988,0.04073961787664257,-0.0070057688962871425,0.022360437254884676,0.009245318707847412,-0.024018356327990636,0.047665792227632904,-0.001981753932409543,0.019996044380113938,-0.024884595082279606,0.12238712068641294,-0.0028717481354390575,0.017925401112181345,0.01445021475704494,-0.053281544698186974,-0.0005553871181998165,0.0319545712972227,0.01090454411783879,-0.03559407969105265,-0.010678374995370719,0.028062597922291765,0.04351576773983681,0.04000394354509368,0.05995472069057672,0.0034142056094584976,0.01427787866713046,-0.012570230976957163,0.01818439482172488,0.00274618219220496,0.027690250984853636,0.06653942241416036,0.038650707660670455,-0.0028406366440911464,0.05213006647786126 +GABA,-0.17493236209858368,0.06155593100082013,-0.012210859317747859,0.03848417228443048,-0.016776632833501764,0.1135533783102447,-0.12121473547167871,0.012746500163328506,0.27491283661617644,0.04982171598305132,-0.01577212302431702,0.21092613143174885,0.08361336503239541,-0.05912378046604793,0.07536463407518736,0.012951640603193097,-0.00421215162787296,0.06101695187884748,-0.17890590405642545,0.23086176153242857,0.04339614076938712,0.15275019736131384,0.21648870659984237,0.21358134317341304,-0.1633150210379066,-0.18779999759355706,-0.04235933245307825,-0.11953473442570135,-0.04475161094679387,-0.005141146611982804,-0.10108694034148472,0.194134278473516,0.21485481069812448,0.14988753408411284,0.036602981705690624,0.059229035149328126,0.041818431872612756,0.015051446898243103,-0.19303716677186053,-0.13341277986423122,-0.07762098576481269,0.010890518810051465,0.24640000578487906,0.12309264860048132,-0.09465694248389614,-0.09949803596423593,0.001182213422740608,-0.1093476734552784,-0.05297143611902434,-0.13744967147995865,-0.013109681946932652,0.13986257158727414,-0.060976815916963134,-0.08507919833294342,0.031195924389656376,-0.0012363261479806699,0.13615703351633943,0.01206923589942087,0.05720237620252525,0.145870370074383,-0.09058196843090566,-0.1196831010540831,-0.1777520250813439,0.07380205977748183,0.04687120332578406,0.11840501048647976,-0.10519113996163375,-0.3053759783334609,-0.15287735746154973,-0.2628082751148272,-0.17909085736538954,-0.20405160467978747,-0.1810667855486276,-0.18320078669561096,-0.18519014855708624,-0.15341115636088826,0.19678367581856582,0.17819909340640877,-0.11288976992314413,-0.12585436875908712,0.2046683191354325,-0.059924573251102335,-0.037471017383625696,1.0,0.005676827710920332,-0.09725147304703267,0.004054280688772803,-0.15043285388400415,-0.1799265993462613,-0.1575043157644238,-0.12128265297845782,-0.17768066716748046,0.22900770196760892,-0.1431773331819522,-0.12382238357449103,-0.08658679275416638,-0.13547929986377974,0.09449028175879101,0.03049347779382738,0.006233743043111323,0.05226854601473539,0.1889489499230884,-0.06500691702298436,-0.19443122820592684,0.008943978188294368,-0.155018281221156,0.004564272162414606,-0.06860020626399624,-0.034563410478728344,0.1321016587341697,-0.037976280516448774,0.014244039213520973,0.03827393640281976,0.012375359496063824,-0.17542752293654235,-0.14552089566088583,0.19424552093031655,0.48658764586220393,-0.12013446078853425,0.07219040490004008,0.12534306879658305,-0.011371287699134239,0.12980055124830722,0.1588930861612248,0.09324023035224643,0.12128674851037602,0.040668996818327426,0.017898491699180407,0.03937820627980682,0.03676369069431583,-0.004112495001227638,-0.03370415112742696,0.03198604580443576,0.09258669964663738,0.2831221846708336,-0.15370517651996918,-0.08858506590849935,-0.16957696358615168,-0.20474690524086503,-0.10265795472655571,-0.21815897055940164,-0.1749239736191708,-0.25112187449295525,-0.11019270097727042,-0.18061358867708904,0.024279596912886878,0.011213252099298777,0.06100561129604205,-0.019344493865548935,-0.11610896446115668,0.13163192279609984,0.17801178921294278,0.060248020531902,0.04153430398478867,-0.0015418622628395543,0.12641706434114564,0.13260002803073911,0.018473198564704783,-0.048631266896836646,-0.04293412951049179,0.11506928866029888,0.15095919604740995,-0.011740108663622116,-0.07774530010990716,-0.05447736470913705,0.07506302198828933,-0.027715017940484962,0.0492888609888634,0.061060435352531105,0.09018927953252134,0.04627471089830077,0.04263092742891371,0.02449270962368588,0.02071938282410709,0.09837751922185739,-0.11010929895247619,-0.002292212350329064,0.04922151337990759,0.02258394154191792,-0.03963156790155403,0.06103052406780356,-0.057745172317547465,-0.12060255180380818,-0.09787868544645896,-0.09101858690526303,-0.10985241244432674,-0.13197203497479254,-0.02496393416459621,-0.1436499630818838,-0.12079613863886506,-0.1360122711777784,-0.13099297245384056,0.042851283375992255,0.1033784967162061,0.05218279755630528,0.03542635739930683,0.05633271393640816,0.07691779824017568,0.07907520617395283,0.017944158597247788,0.05450288862519919,0.05519458682157299,0.08404710147263945,-0.008384796361657393,-0.029272977056613154,0.005401448628308217,0.030293434438998974,0.06334193001243062,0.002160273774919624,-0.03353274266289369,-0.05640039926163145,-0.04482570201997282,-0.025412162540261258,0.06639880213095524,0.06897468081107333,-0.023197369977485616,-0.03646969918054367,-0.07700254929016943,-0.0727491461229192,-0.018333587285362912,0.01921206305151647,0.0683065452285122,-0.05670997398059026,-0.07485205022324977,-0.059232312619406195,0.03082530468783615,-0.005888727927580787,-0.026441733455461598,0.03406361998248904,-0.04522160316392318,-0.01514548788337618,-0.06353842686430762,-0.09634393321443856,-0.02176157033067553,0.04092444768679741,0.08958678062763076,0.0524768597995076,0.03714535813953127,0.014692678055658813,-0.08561478345045535,0.018035721933985706,0.04841558047089695,0.05425348193623099,0.008494726909209542,-0.08292318413849223,-0.07662278224890451,-0.09784775177001155,-0.05772205377831445,-0.04254874095856429,-0.013857801821282184,-0.021879917843685672,0.010413073072935559,0.01843865791817663,0.058862715512588024,0.005309736538659394,-0.006817266850730855,-0.05363385154021656,0.024485171001736857,0.012619043633102804,-0.028941078864321065,-0.05231722723850036,-0.031490877845439,-0.03636406417526659,-0.05592902272709025,-0.030129103856949363,-0.018636938815216324,-0.044872708264871025 +Acetylglycine,0.04964121189156079,-0.15459239189838636,0.02604233693469663,0.2656985908997569,-0.2979871604666527,0.16009028762670452,0.3605538483174686,-0.22298023828962288,0.1460805915474565,-0.31552746438897883,-0.3002215214734442,0.12504399033347888,0.15248565012405296,0.15894289196921366,0.27120579958378527,-0.15961579454322547,-0.014798422136228135,-0.22830408386563583,-0.21036312767052798,-0.03843176045421404,-0.145193022283763,-0.23293367460929376,-0.21612387463833396,0.05182343567815532,0.14789821304133255,-0.16380394021606898,0.19386175504012984,0.17966803485660912,0.08381241189683027,-0.26045246263978794,-0.19577471149539735,-0.1768572090863719,-0.1695640540029378,-0.09577417241804623,0.4795200886448908,-0.015011722083236997,-0.0016214740591726042,-0.23323396222068316,-0.22574476754716688,-0.23268802102608313,-0.04225845194606169,0.1988055637012871,0.14629158734597816,-0.23507316725469896,-0.2023651075715256,-0.2005109601403278,-0.099158593027223,-0.3239140703348738,0.09548952162584681,-0.06465791968068207,-0.12067023404411759,-0.2569709438742188,0.416957802527917,0.08948670642773832,0.5062642201699947,-0.055418181849317405,-0.012607925064451504,0.12199358435453808,-0.01826723261954591,-0.18379774314832956,-0.018522642722452687,-0.1643687725307496,-0.33997257252908836,-0.020557300659705947,-0.02569286624341755,-0.03145001242571125,-0.06534151665788612,-0.2562730309537472,-0.14593462823423226,-0.24793664372664084,-0.22874682319162623,-0.3741603960988276,-0.3381391725255316,-0.31366303714956234,-0.3172054930676525,-0.24552781622248748,-0.1573573426367938,0.03861132778799635,-0.046294964792207204,-0.17345068976477723,-0.03889166296083574,0.30339897164922286,0.06124603793413029,0.005676827710920332,1.0,-0.20262905569909248,-0.011383737815924016,-0.2830021747321618,-0.28420713195733366,-0.2649259056712155,0.018125020786906882,-0.3151515896496661,0.08804599589472355,-0.20190794751299676,-0.059695690057143314,-0.28579410000675387,-0.14924179608083643,-0.0632732675639381,0.08426672265654511,-0.04220358503220354,0.07174036774785286,-0.22462264107703042,-0.3141877070633738,-0.10871025624892477,0.3832625081251863,-0.11657620219541696,-0.05421574659076658,-0.018606421334329368,-0.21299256493094898,0.05459679711552196,-0.007053543702413916,0.23206299238607175,0.3610258258136703,0.0557881803673418,-0.26964322234774357,-0.309190681249997,-0.19612825012082558,0.07505659679900235,-0.2393155428122942,-0.2372367069807191,-0.21145391871357938,-0.11994409373755117,-0.23058767532583566,-0.060867663051633394,-0.09593408858506439,-0.07569071744156655,0.23384091087909323,0.18133256323842437,0.1484676653744366,0.13115548709653774,0.11869363497637316,0.0660000705787471,0.40573486689301513,0.1261189574465466,-0.1912343962768669,-0.053499821223605845,0.29988396039045406,0.020787039442531102,-0.06943002422906379,0.23997111975431987,-0.2617664448726817,0.030849097335565956,-0.14900622778140116,0.10399765101048156,-0.06236146934640442,0.18443077898769042,0.17871387406859168,-0.007828446115593168,0.20573922301736053,0.19459055318864438,-0.14929239767048688,0.037114906892999865,0.18493834327469033,0.14105537506892935,0.010421203667460193,-0.035407276044167296,0.23730313929585461,0.3097763698919354,0.39869630778591153,0.18838320028252079,0.06273737537225924,0.10456299798430738,0.29927998081985024,0.3678888619834198,0.38979154771400004,-0.08684672038726467,0.33959449245288414,-0.11160957606442339,-0.2741746219480587,0.0755419742300397,0.2505788524959877,0.05271083496885404,0.08369074167284982,0.19151586149455363,0.03191708295138988,-0.06930417811056917,-0.03950516130637159,0.2824713248053686,0.06558262530797822,0.1448840973024431,0.18951432196743423,-0.040593594648437085,-0.2700177514263558,-0.2784579745475428,-0.20889397519273417,-0.24217969006347576,-0.3345679116123857,-0.21253605352447325,-0.23302671100455194,-0.27971066823350255,-0.18840518332419967,-0.22544553361188815,0.19134479710801294,0.08412219847322072,0.14370773050481983,0.0479654013167919,0.02548492453455432,0.0077761726553476265,-0.00029748085050476555,0.054618109479295976,-0.003796742568681287,-0.005063501361853941,0.020716945748385753,0.2607448519168225,0.1681641439695441,0.027968200643388112,0.016183771102440948,0.005723404777056675,0.24278656016914746,0.2933613320220179,0.2159792558331482,0.19579129567546494,0.06263980483638441,0.056640678864959194,0.06300883120095313,0.37022869394485836,0.28372549355805166,0.3037143127755518,0.2513110930534942,0.21862326071582255,0.1073465311313958,0.07607069009521521,0.2992704645373156,0.2808682438994585,0.2836521318436324,-0.030918176866663614,-0.057586852194056265,0.03878157990123801,0.049795543948117436,-0.033477751733483954,-0.10653096541709667,-0.013736243309110725,-0.11664874868176459,-0.08739089394364473,0.09654876543608307,0.0713787678258404,0.11669420908408139,0.08893641447877616,-0.04892435968090853,-0.06782706606349588,-0.017599188495778777,0.0839001434222271,-0.010225720600375111,0.08103086517436692,-0.030927778501614253,-0.004263764849106178,0.052285223662054826,-0.055440396532231415,-0.015151671415724656,0.012584081778629255,-0.019962980863458733,-0.12112982166094863,-0.0031055477420987372,-0.041953395108950645,-0.0475861759265094,0.024301947282551258,-0.0049146201827442474,0.05066856986123919,-0.008199781655597566,-0.05208872594041844,-0.0005229436598299904,-0.0625957819351013,-0.06583356347402917,0.01968676853204417,-0.001102776458020581,-0.0665059637739287,-0.037392820034866193 +Dimethylglycine,0.08567953338030207,0.08502446455398023,-0.2033966479635972,-0.08302933042045213,0.32235858294584424,-0.27629552144770453,0.008174418215818064,0.17996286264240674,-0.5308112585231689,0.233500550129477,0.2048059670880645,-0.5081427759341145,-0.2024903705296674,-0.25268978458544145,-0.39778956174847757,0.07574709152517882,-0.014406672508323384,0.11859425792093155,0.6411353959953319,-0.09665383698311052,0.23209995515049198,0.1125772354551454,-0.05137975500140515,-0.4454156192153726,-0.19020358378006932,0.6591388053895944,-0.11893808751197509,-0.2216616566185722,-0.027024969715880327,0.3277380473708911,0.38403814749271015,-0.05130393082306116,-0.059636547442507896,0.12264020490615152,-0.48525380016681696,-0.07739762406766729,-0.11845006997016858,0.15464222163012487,0.6935008986177685,0.5452725747090277,0.16163542351203553,0.13112593860227437,-0.523360431193976,0.043288728021713255,0.5896487035309347,0.6020534789968722,-0.11583457437524876,0.7441580218125596,0.13400637987282193,0.5493568859883804,0.1765419826558623,0.24674599466052796,-0.1578721612936028,-0.017449214558631816,-0.34182202047350185,-0.03733772557236922,0.059853297971669765,0.05372843872952501,0.11419033232915173,0.2647541543778355,0.20386376263104583,0.27477526086973675,0.6217478413225106,0.19202600293353653,0.002482706980335439,0.13401320146295198,0.2636213105701194,0.636717435493513,0.5724732703288942,0.590917164112933,0.4332107931494546,0.6634031792503249,0.5415271359062762,0.5383373764545882,0.5187333156961041,0.4851511997667096,0.3142789170505106,0.08057753808025643,0.5826024370466104,0.754620035254651,0.046870820950897965,-0.03630151170526368,0.015014850324417807,-0.09725147304703267,-0.20262905569909248,1.0,0.05301929283152159,0.7683594827607345,0.6791109634765016,0.8479137686305095,0.30649861728878885,0.8357322313980736,-0.33288655004192713,0.7624974934370579,0.17415000376639328,0.5134577067890498,0.3739592340707023,0.5544525887222759,0.14916934584939792,0.1459146690832671,-0.017680718974558245,0.2820116739823479,0.7787597672794242,0.670390432423345,-0.24429752604391447,0.49383999755813607,-0.10080272998726796,0.23386632812471259,0.5983856120381762,0.04198730237953029,0.011338232683746487,-0.22776029213029164,-0.31887081043455295,-0.08772339797810341,0.6212314517113418,0.2566242850533114,0.2809590599055372,0.0001441795442729648,0.5463715676818129,0.3678325564354195,0.26868825138269814,0.25542315870743143,0.17940264072839776,-0.040386016631475244,0.12289978589095611,0.07495489536039278,-0.10268949359328934,-0.16996530390557912,-0.21897303756357253,-0.2139962162009397,-0.15385784125882987,-0.1600394072443955,-0.38534371906754633,0.11827623890977955,0.1415831884071518,0.7013558396812085,-0.23217897947336713,-0.06972409380597303,0.12828337914136578,-0.12364106874300586,0.22008822423178542,0.0917637093083621,0.1491497950304585,-0.030555250588336212,0.3360222051416365,-0.25000460403717883,-0.30162726400094103,-0.19805342235287143,-0.2926782361275443,-0.12052825946359418,-0.19317112291535501,-0.43661927858083893,-0.39010498280843625,-0.3602166609575057,-0.24454239930478333,-0.3982620507325391,-0.5454191281914547,-0.2833563032706414,-0.3299054875839285,-0.3336886737020553,-0.40575322007292175,-0.38716493317604556,-0.2365723715192282,-0.24850090544353895,-0.36851528772445863,-0.29167598110462956,-0.3055429638332426,-0.14153254720195435,-0.04251835695559701,-0.3472949497986649,-0.30527348660627657,-0.31235509666125794,-0.20019271475588152,-0.3676964552269176,-0.3720844102805003,-0.2017862822789897,-0.15231409001954715,-0.26443359271013783,-0.35735527757526026,-0.37234528409485723,-0.4419267404885972,0.07443588319267394,0.3888588722501084,0.4296583283887694,0.39285422920494645,0.47941336561045217,0.37190291614700943,0.16618784072300635,0.45340531460208483,0.5280383793489217,0.3134093203472025,0.3315639760402327,-0.380436121127213,-0.4306831413323144,-0.4017697723535575,-0.29376970276594755,-0.37627834766089685,-0.39841318377210033,-0.31693546609643874,-0.36484622033891995,-0.3968754943898018,-0.38001167200733216,-0.3302167882468335,-0.4011250372092152,-0.4032391716755355,-0.36071175313548914,-0.42101365906029264,-0.38007541520170246,-0.3405348648370725,-0.34667832444113744,-0.37162357477739816,-0.36553321758082535,-0.3456760806498898,-0.4001517421827173,-0.373468848183127,-0.371057510831576,-0.3429249338483672,-0.32892661414550656,-0.3472576687660954,-0.37813760346890507,-0.36622410801728694,-0.4079022913540761,-0.2904891515144752,-0.28399593350289565,-0.28832503176024976,0.014011591491046447,0.08258998021703022,-0.032606630507760775,-0.034792184302447446,0.025695041928391206,0.09841216815023562,0.0621024723199225,0.15062295734330491,0.008353313568279768,-0.15543720013458628,-0.15341345535155979,-0.13076851347247936,-0.09853888084210746,-0.07303276251395768,0.06949689919040285,-0.03387817898593509,-0.1704259219999835,-0.08701695242422826,-0.06220925029108565,-0.0055408674365725556,-0.017855395512303848,-0.08537010801471207,0.0178547657479107,0.02958470402147897,0.023833506750393346,0.029912815877944397,0.13840772225650208,0.010231088282561085,0.07083467308119927,0.08721135575172535,-0.0555965552493097,0.010863491842426236,-0.08700171251843587,-0.04045133261439876,0.004105551415885896,-0.04035052330779431,0.10554437715281574,0.02486812998382544,-0.010121487721028668,-0.02278195800704919,0.027324496827201644,0.07429073810564849 +Homocysteine,0.15844459879069875,0.2964542945824911,-0.0009642134432946654,-0.12800096075012818,0.23547455424221983,-0.012230361920435943,-0.12659958983659902,0.13375864478808036,-0.08184920203352905,0.1875743570180766,0.16172191461328525,-0.07792260722305948,0.16334964506743824,-0.10663523088044197,-0.04698791704688777,0.128176958153161,0.2292031080309858,0.20081805678254924,-0.0074676640971045975,-0.002037907160076497,0.059834240248834006,0.2769486140645324,0.2974459781166338,0.017865886647991852,0.03896898479839176,0.06289564140335366,-0.25240172718860143,-0.15787203078526177,0.04693087486015183,0.13598685523847714,0.031497556873626424,0.05750893505038104,0.19967361789797275,0.29746147877284995,-0.1530245263310394,0.023972322115263935,0.18043955305308543,0.15895366889840964,0.04407372303572814,-0.056628779658435976,-0.03889800917770237,-0.06518835752639425,-0.09821219707210303,0.18716279662122537,-0.015753592980353972,0.01900455844805296,-0.12786221409994605,0.04993552323593394,0.054971050972117456,-0.013815475840661189,-0.0038743670510093006,0.15737436110671765,-0.10711229845385781,0.11838420937271918,-0.1091357835685118,0.010252013624273273,0.046838496694382475,0.13366692088560594,-0.03820872446889794,0.15871640592815672,-0.20141322800571773,0.03399910275811507,0.038286250647084824,0.061205327481588495,0.04072122743285711,0.026835270701553213,-0.10677551940525092,0.06979546063772962,0.03735881765397567,0.003701310609565568,0.011009182079988822,0.06239108805159404,0.10319984056287018,0.05639907949585692,0.11745984381079473,0.03672815356071213,0.08069608392235081,0.00913909288749512,-0.08740987125743747,0.01677959773113921,0.15051813961769775,-0.019152508500534314,-0.07931776431585638,0.004054280688772803,-0.011383737815924016,0.05301929283152159,1.0,0.1087027497038687,0.17605152731065002,0.04917946443389633,0.1145544248328409,0.11006737200810829,0.19459190889211248,0.032719036649205856,0.16943967078997565,0.06111904941974186,-0.018356235100331717,-0.03309927380895494,-0.33439176120680103,0.03776618419830269,-0.013960590689430903,0.08784021909282823,0.1356914571555049,0.0847836348357916,-0.14331115727154864,-0.08505165645943528,-0.040241904124396204,-0.0471486606160991,-0.014025577739746992,0.12729094120932696,-0.003029290442180718,0.037636838495893624,-0.05361255010541775,0.045501370381710836,0.10110567503644591,0.08409521789457927,0.13246833327416518,0.16385526432562542,0.07372887417655954,0.0690626697287619,0.11473060806913318,0.1715610230873092,0.057501612659473886,0.05632151216646535,0.06988561422699419,-0.06612844536289916,-0.057590727255483,0.00146925157189713,-0.09826277065177356,-0.185955338097954,-0.2092849310230771,-0.13304388258849953,-0.1127476371020232,0.24842369369621206,0.25803319052225104,0.05526551007573276,-0.049619640724139644,-0.0276806761131226,-0.1340899779352621,-0.16486516142428187,-0.04467560925828413,-0.23452901754305414,-0.049608485763195646,-0.2735661756469618,-0.04974104189311637,0.01883043325735208,0.09272924373464907,0.07128222342241916,-0.05221204093174717,-0.1781126912298661,0.18625011164243052,0.08760775415691693,0.007340182976195548,0.002724106251164061,0.11662653133357899,0.18207973722639345,-0.03279814429891671,-0.13464590899740003,-0.17683795064428057,-0.043483785942987165,0.13392870722326863,-0.0909824053039401,-0.24007945450124848,-0.2458880561744178,-0.16234133984975793,0.12016439746569088,-0.24396030092030008,0.10000835003462946,0.09506146868238091,0.0013887887261414093,-0.009460491859179224,-0.08575992899331597,-0.039105273412782374,-0.05091552979623058,0.19031907491376313,0.0706785658274747,0.07564717046298382,0.0440650032411848,0.14284270517888278,0.15555621436519454,0.04817572467365989,0.11239308884839912,0.10493521026169714,0.07758401887241619,0.049997152878981606,0.05473616663040848,0.06646785936613891,0.034558418281152366,0.0014866481446487853,0.04912810486194353,0.03340242381186106,0.000936235333976647,-0.03840109000637782,-0.04358288200516302,-0.06155493794446584,-0.016624444059836596,-0.0034495410223481173,-0.01631703029335459,-0.035421931398030265,-0.011736948771551186,0.009882561071259061,-0.026680976814920255,-0.06791088190577046,-0.18223870071056372,-0.13321649910049221,-0.004586537484905444,-0.023049976226451944,-0.09121678124330015,-0.18190741733999444,-0.18214717785486637,-0.20760685813533014,-0.19265679870913402,-0.028261038683708533,-0.05765917076070037,-0.08739132641374987,-0.16593342760267724,-0.20657040491880485,-0.29059461744990267,-0.25650592713011844,-0.21489050857448969,-0.04442217114745426,-0.04899853420834888,-0.24952027655333417,-0.2528587966434906,-0.2802800247750572,-0.08959832337075758,-0.02117756142136453,-0.08917820994663,-0.06085110080320957,-0.03752662690719836,-0.09565214659941015,-0.0259963251605749,-0.015043591897178693,0.025534264918935852,-0.0381856442923755,-0.034590725699105165,-0.0008234542909809857,0.023094218910332826,0.019615893771003985,-0.07714836843425543,0.027859575010804803,0.000999250291137821,0.01673831199228625,-0.002663521028004428,0.026563978590087918,0.034721523141221136,0.016782086318643107,0.05514833674334001,0.020960865363650345,0.017467740330194333,0.03103087790800769,0.05033378267775226,0.0033599463171169607,0.004791679582130599,-0.013868821451982047,-0.0059209046086559705,-0.005259085052571779,0.015748098264180357,0.032513723263898266,0.049741486090596,0.03777812987224095,-0.07111288760607062,0.006055153847394168,-0.032174770303045545,-0.0026058443389660063,-0.011772754178995178,0.03774645867507971 +SDMA/ADMA,0.13064521474308396,0.12305549403450614,-0.12624884438240938,-0.16645359669706766,0.4666396265796629,-0.29539987738934986,-0.11799272086774458,0.24068226145696608,-0.43723988275687503,0.3622239003820758,0.3702765478830933,-0.4155098230393032,-0.11999310185441833,-0.19223898941238576,-0.45498388939682194,0.08679534779745936,0.024400761123753244,0.17483854681612682,0.5593195310745378,-0.07382814039350642,0.27696750235231077,0.2248778643344043,0.06683988406168391,-0.2774839060245425,-0.11710528023418294,0.648660487938655,-0.16593279558215118,-0.19026745295917669,-0.03442321763644413,0.4720886358125311,0.32909511192706786,0.039107350816766126,0.0671244809238546,0.14436220556384086,-0.6277804770559572,-0.039796901118025,-0.025976746962976846,0.18662912379512128,0.6562045998578765,0.5613571693493039,0.04073942935592099,0.0401415866205931,-0.4384829171426875,0.13246885647826892,0.5778624073510423,0.6166688376948933,0.023059908520870528,0.7592246345586986,0.041417326861856764,0.5184529708870597,0.18105873312609266,0.33620891360961996,-0.3296363294461805,-0.04075722829986403,-0.45195581779960114,-0.02744559483734544,0.10864342461092832,0.06635860690461307,0.20967014409105525,0.45917156165691847,0.10267765833878345,0.32537881353720494,0.6326487138691433,0.1911792751207856,-0.027629072421879064,0.22692208493348087,0.11777658051231751,0.7238905341987367,0.5688223271324716,0.5696018226890401,0.41354904572400186,0.6877722826091334,0.5827204985044532,0.5811782661705313,0.6051099849706502,0.4982937472150402,0.441349598231821,0.17444488500232183,0.633963621981419,0.7295749038546291,0.1005832132116207,-0.16552878686972594,0.01806027485578851,-0.15043285388400415,-0.2830021747321618,0.7683594827607345,0.1087027497038687,1.0,0.9264253872668046,0.856985257991396,0.27220031162996156,0.7942214308256734,-0.23346771975153405,0.76419298198379,0.24119421792275045,0.5279174741384145,0.38215515575440107,0.5176588976311073,-0.015948770524157888,0.20726648886308083,-0.07546575353217837,0.3411867550070906,0.7923776471817657,0.5908993729530926,-0.41275656648998366,0.3799207121932614,-0.03670703829656242,0.2170353113478824,0.6505991493812899,0.03873405177163884,0.03258733167250464,-0.22021851651068824,-0.3859681832375258,-0.01559849751315358,0.6148099484684016,0.2661646248867703,0.454842546427248,-0.07453619085551563,0.5957820221161235,0.4448502596029935,0.4021235285659925,0.37249563388316487,0.32623832048591384,0.047062698427126834,0.19408340419194375,0.14714551640214793,-0.15234784676845367,-0.18330777925587868,-0.21782085587857752,-0.24112276333338692,-0.1915199367296794,-0.14346016864718045,-0.48768746154214493,0.19487225061593888,0.24759002206428474,0.6382375386387534,-0.3379656679616541,-0.058557644267755685,0.08892875009514656,-0.2542216290583532,0.29524428626514126,-0.014876652830736496,0.19517216576345497,-0.17214175827066036,0.2020946270168706,-0.27648849164615663,-0.2611575771659154,-0.14022598228280433,-0.33696933354224323,-0.23899982382675417,-0.05619568602700345,-0.347440271099103,-0.4111852899801682,-0.3401479973287988,-0.17148346454457009,-0.25272438072005354,-0.550246553977892,-0.43141854797685375,-0.46233974076673884,-0.33697054368867513,-0.31237603556124655,-0.3811739204160129,-0.398470659260471,-0.39812741674608515,-0.4707853549453276,-0.16745195877053584,-0.4282401349394595,-0.10525955697573412,0.050879433127337566,-0.36362890924010927,-0.3350271237915352,-0.3312253146727887,-0.24977105870175553,-0.38082563123689517,-0.28664383894311735,-0.1413774521089663,-0.13346357492364272,-0.3936950715106822,-0.3147345219189505,-0.3246086447179539,-0.4769539631989548,0.071310103444588,0.4031484725636935,0.4104915387878193,0.35112464407548627,0.44650744794019603,0.4218229802654384,0.18347085344665293,0.4084504126165167,0.4855706849427381,0.28494908652439527,0.3088607975101949,-0.37306933030487366,-0.4011399857484869,-0.42924316276362895,-0.24338109016782816,-0.3184000139561817,-0.34885195411569325,-0.3221167222545302,-0.31259462187185505,-0.3207391538578768,-0.34825827291522904,-0.343945061724918,-0.49681675427877836,-0.419768010703669,-0.30313193932918236,-0.3599019741025344,-0.3865827024324412,-0.4548623757559053,-0.48143688926404654,-0.4471193591092251,-0.40343350440040743,-0.2881036042271796,-0.372060229553079,-0.37975081559173435,-0.5088459170385637,-0.4587898671953186,-0.46551179515864927,-0.4373345821030931,-0.4190470237204287,-0.32623574486389856,-0.38183631004743557,-0.411866095824656,-0.3776991122019586,-0.40136305701635877,0.028420086149147258,0.0981476776753199,-0.039836605934596765,-0.0479041200208352,0.0470112560725097,0.09715013946996308,0.032559337167351265,0.16912024876136697,0.03796669251356043,-0.11142201344425316,-0.12456446010022382,-0.11325302447766625,-0.06450839935275897,-0.029657118162509138,0.10178176545141113,0.024785413005219838,-0.12073555298240314,-0.03888724140137991,-0.020991650742916198,-0.01933228529539933,-0.02117504689041027,-0.06851266924210425,0.025588664291960068,0.0034056222826873033,0.048273172111795916,0.059044059456939774,0.13225401064062525,-0.025930572177074174,0.08992404377705587,0.1227744974501992,-0.05901776834013453,0.048848792152037177,-0.08362760183640583,-0.025412087589067437,0.026178429875018134,-0.010138856339758126,0.04798836870357303,0.010735078506361833,0.006268195591308807,-0.022017616750386854,0.034291200470033915,0.07523171771858621 +NMMA,0.1497969284119933,0.18622634956068687,-0.13698131917955944,-0.18581168763090744,0.484408408997743,-0.29825110042714065,-0.17558004260915747,0.25598346179094195,-0.43193440552782897,0.3840438145087783,0.3742052083270239,-0.4157076733379852,-0.046632775159609195,-0.21478596359583704,-0.48898442130785047,0.12220902162200034,0.09296671011875289,0.2408189680527865,0.5328471149331885,-0.09055919260888504,0.2829921572885213,0.2752939156661943,0.11096371424188907,-0.24643782696712743,-0.07146965338938678,0.5990202077841837,-0.20101338801992644,-0.15870299797093113,-0.001838418447994001,0.4801696243575896,0.34693866920039024,0.03504413744159251,0.11346806901665149,0.1999202120070275,-0.6686863824620695,-0.0142696685328214,0.018696764780608322,0.23935204783828795,0.5832459366952908,0.5024362719214995,0.06045626384770842,0.03612378381141946,-0.4196879798541004,0.15478833484518245,0.5309609031604003,0.5237631913234658,0.02258243733845541,0.7259967946476257,0.03916344851701496,0.46827763163952846,0.17361916974542463,0.37879934655688197,-0.3802653086040065,-0.023529944849208187,-0.4654480214488544,-0.06633261381009041,0.100846756889559,0.09431755592779754,0.20631162625065808,0.5046502225953263,0.0550754850989384,0.41197593410316147,0.6288386290634267,0.14131441478301726,-0.046400495182979916,0.06881342501464535,0.10365238450031604,0.7222064073675274,0.4456105253462017,0.6361635997380113,0.4926173551999026,0.6809269739260744,0.575684339011825,0.6230711253186085,0.6460084476108554,0.5183039357617772,0.3870025182457657,0.011717475086872634,0.49760203707301215,0.6251608682174672,0.061535017202790136,-0.19160749554347395,0.011275701089497171,-0.1799265993462613,-0.28420713195733366,0.6791109634765016,0.17605152731065002,0.9264253872668046,1.0,0.7702341942316824,0.22010547187157872,0.7505465813632669,-0.21796655517547237,0.6947116570525986,0.25677308492136963,0.600822800780033,0.4323948678042893,0.4440985539603411,-0.09887486842839865,0.1935979107256778,-0.06967325023761675,0.3162420742019094,0.7376098877015065,0.5653403365104238,-0.44703689399020247,0.39406956260943304,0.033272790478421715,0.20906038573699526,0.6122133947341297,0.043142244162581174,0.013835832246042514,-0.21719593243553587,-0.4054095317023313,-0.013273236174928461,0.6432058910376219,0.2983656009582262,0.44334333932585923,-0.14536764007121358,0.5847364640506011,0.4222827960742225,0.38394831029844556,0.3868656245567958,0.33928558308138845,0.03453485079561762,0.17276603683371616,0.12079466784585641,-0.18525438859497995,-0.20325556766247363,-0.2388912697996725,-0.2703375356305768,-0.23452033338395115,-0.15623311718999916,-0.5412656761403236,0.233530614435227,0.27539736361976513,0.5796728831522011,-0.36623613700318935,-0.056102188609414454,0.05366764739105702,-0.2913866618367064,0.29671192099271265,-0.08711478510402258,0.1718540418085332,-0.23857463440418553,0.15493929028045372,-0.2663879341951876,-0.23559136657523858,-0.10668767141546177,-0.36550079142774144,-0.3005489787351235,0.014367804140365923,-0.3010472022051719,-0.4214084780044367,-0.32619553474143614,-0.12953880099185086,-0.19220229460427368,-0.556808991868446,-0.489572860950976,-0.5535684958272595,-0.3624648844016277,-0.27407851509384645,-0.38112775419688383,-0.4985879865265565,-0.5042599573529739,-0.5417632913894515,-0.12509737801439844,-0.48697318579639653,-0.07404212310317064,0.06200795197641896,-0.35016811135719816,-0.34573122450844773,-0.34343119903721636,-0.2695928172074596,-0.3911299471563296,-0.22862959240180994,-0.11794950253501518,-0.0987564107117569,-0.38047288759924924,-0.2539063055290846,-0.2739418987067756,-0.43233640808611157,0.08625655958397004,0.4133504525178171,0.4112737422755372,0.33117505909634526,0.4381649000935238,0.4314807696338448,0.19975635633736236,0.3780338345154154,0.467364657456545,0.2780121630440465,0.27912040531989246,-0.3439614077340222,-0.36589903261808276,-0.42091993579246734,-0.1860207067030851,-0.2543164707683601,-0.29439692859062033,-0.2805108687742275,-0.25512258183034026,-0.2484827966988003,-0.2965364803709021,-0.3220486465041897,-0.5229806369554891,-0.408755284940575,-0.24328342976920533,-0.30305821288427737,-0.36268537354930214,-0.48877380345773336,-0.5206571207771681,-0.47402842765836095,-0.41116806647050497,-0.24451046234905788,-0.3373243408935768,-0.36213344735357517,-0.5403566572329418,-0.4973177654289102,-0.5325277274961524,-0.4865972044286442,-0.43377682346731866,-0.2933731265256433,-0.34846030235950354,-0.47567228153245883,-0.43018694146945013,-0.4672073851140578,0.006759847638228178,0.08912754523172581,-0.058048284554985265,-0.060727558422760106,0.038935828611659305,0.08094461730855614,0.02688686909640254,0.1768887594286781,0.0658661180911205,-0.1124939184661773,-0.12411912099010314,-0.11759479229456749,-0.0536745010274092,-0.004938550911587803,0.09765913745707933,0.01843353701581155,-0.10173186528810475,-0.03248852549280925,-0.035742435942953864,-0.020523940889183637,-0.02075262345151908,-0.07260819757772738,0.03460692410020613,-0.0014292108521899605,0.05741765635557984,0.07401406276936012,0.14557784657628803,-0.03709741483607712,0.0961095574838824,0.12038310054083179,-0.07021992138192729,0.04110881153449706,-0.08802781956128185,-0.025276884992786727,0.02320567824136049,-0.012683247832727793,0.04383439177482278,0.012364728472334921,0.0026228155738903824,-0.03873213567930242,0.060365093933189874,0.08433403320650593 +Allantoin,0.10201792094711407,0.07047117630038316,-0.21704247439155877,-0.07545103074078513,0.34618636288095794,-0.30307745974444544,0.013467457961851975,0.20133990865763512,-0.5652334446061444,0.24892083272821197,0.24413089527847642,-0.5374849093429879,-0.21190381965592717,-0.25826600217339507,-0.4574706155222212,0.10549002876302035,-0.022737817525362816,0.12354200145704469,0.6996738871284293,-0.10143569023150582,0.29285491198153496,0.1527474170488753,-0.022116871669477556,-0.45387341819678234,-0.19269136794618477,0.7434313986610869,-0.12198450059973319,-0.2275896542385916,-0.06663048559175357,0.45726722591512164,0.3823684715787215,-0.021668693839312594,-0.07195291236348274,0.08896090851252175,-0.52681268192103,-0.03677056851696614,-0.13238779334355794,0.1993522481200248,0.7197263847572427,0.6295806882064877,0.10691723240394464,0.08170349306632722,-0.5616889809581317,0.01720428927024608,0.6236923654654906,0.6386233514127025,-0.07907213059140564,0.8026897229786152,0.13562461994885597,0.6110156647676757,0.27614779735488776,0.271464577523101,-0.2012859643184337,0.008393538235421343,-0.4060891195154162,-0.03445005502964864,0.004615524832383196,0.07663859684719501,0.11344401461173442,0.27929527706248874,0.2431482035156836,0.32123888135134643,0.6911584743616792,0.17121867870530436,-0.013776929695771692,0.12012003111958527,0.3217724825870674,0.6924197370710987,0.6140319581316863,0.6515742504001778,0.500173197141393,0.7464746370564336,0.6235674355938189,0.6222462374710664,0.6104950927436721,0.5525416547404856,0.28585846951558996,0.057755917864458134,0.609812100845223,0.7240125735348127,0.04493123711014444,-0.08353154817889367,0.03433810678221368,-0.1575043157644238,-0.2649259056712155,0.8479137686305095,0.04917946443389633,0.856985257991396,0.7702341942316824,1.0,0.3234157848519365,0.8622915730065741,-0.3934115269831954,0.8261018666841545,0.2057295257578233,0.591087488686479,0.519511968346431,0.4844454498769582,0.14559813333749733,0.15388061602202613,-0.07114717489221471,0.27131122992034484,0.84774811214614,0.7104558752839404,-0.31839577351405046,0.5528677383975881,-0.0427189933132362,0.26625702374441407,0.7104887315708429,0.06315502041303953,0.04207688359505495,-0.2797506864315022,-0.33491158641659036,-0.08887190369622257,0.7031860917218177,0.2994199909005012,0.27340016401270967,-0.02379679242369724,0.5906139320641252,0.363205320045983,0.256203173388307,0.2709806238998104,0.1800575986675459,-0.02490556739966327,0.13100172831737936,0.11180541433021918,-0.11935930247012165,-0.1898895739595261,-0.2392062382152241,-0.24686606173437015,-0.1762121039912854,-0.14721339065076572,-0.4410717093011312,0.0771492801262362,0.13081584229768986,0.7224622032769331,-0.2983329523098919,-0.058284733218773116,0.140469903306086,-0.13556279285404627,0.2895598466449071,0.09781730927685711,0.21623609570532956,-0.05187732029044515,0.3516165177792501,-0.28792018282570603,-0.3249457400812019,-0.2388516316353522,-0.3054273759595371,-0.17079784614254545,-0.16553250311376258,-0.4523041443213937,-0.4549884019202145,-0.3511111853542318,-0.21664499588127492,-0.37964187919261533,-0.5918844189394133,-0.3548420763773126,-0.36775705648635115,-0.35887171365215087,-0.42558296852901784,-0.44151692214058025,-0.2748670208112468,-0.2674253590858718,-0.40787132484632255,-0.3125418873585928,-0.34431280005998166,-0.1427849950570748,-0.017422986918097426,-0.3836945615708125,-0.3347901799592777,-0.34636317049957205,-0.24746788296062983,-0.4028121220619971,-0.38159531252261275,-0.20486368066411517,-0.1674210821684635,-0.40916438852794135,-0.39076395456239177,-0.3762567606713722,-0.5207629788099131,0.05822356006132075,0.44002729187662104,0.44591443435863015,0.44446887861112394,0.5398157678330898,0.4261483187229796,0.14565361914705266,0.5031960971850815,0.5801160934058648,0.35572587074774725,0.3671000244582801,-0.3926182121712173,-0.4651040358230619,-0.46923873005660593,-0.2633232249424404,-0.3885892363041524,-0.4364916100743212,-0.3740936296405753,-0.3599368627587599,-0.41680667467474924,-0.43004620321941917,-0.38636881106341353,-0.4173900104890991,-0.39564972734469234,-0.36995749857669863,-0.45465084361348956,-0.43314195075120193,-0.3732905266790862,-0.3829267258391712,-0.39545043531877055,-0.38304117161493334,-0.3603035597047596,-0.4454518452157732,-0.4264116418948611,-0.4218832731162754,-0.3678947062772484,-0.35108571253326687,-0.3594233230720793,-0.40298922220005245,-0.3982108190729509,-0.45206928134814856,-0.3105251331245061,-0.2863896283482415,-0.31329560035313997,0.01953871605579759,0.11131561918838465,-0.00667716625219134,-0.03313257130475459,0.06176412098173865,0.12144913455097842,0.06548821550164079,0.17981200954197854,0.028655451947137405,-0.13149491474391697,-0.14970769670598802,-0.1402575435580463,-0.09463526949097961,-0.05724649647845847,0.10677143187043495,0.012044567206886049,-0.15080220882248566,-0.05819086543918887,-0.012762515740868959,0.013548824535125336,0.008988565582292213,-0.05865505419036364,0.04532655889193883,0.03170960513220026,0.04430670969705395,0.035735607902445767,0.1393171273723932,-0.011153151722674835,0.06537806452659509,0.09276575053218751,-0.047651766648451346,0.041640817429874334,-0.04605442002708592,-0.014555817015110013,0.0443858866277869,0.009319125234249444,0.10437421019836249,0.01726404157271468,0.024914419745398052,-0.004427477405903708,0.03405115922734224,0.08121049900898322 +Anthranilic acid,0.071087541707205,0.02394869525094526,-0.19213306720079518,0.018612648762027218,0.0836121231071754,-0.06915905093370767,0.14987952595719514,-0.04917677282808198,-0.3235395625629927,0.01720327425322418,0.06264466370630606,-0.2909750268046803,-0.0875734933636551,-0.11646481955680146,-0.1556743882144886,0.05717917426113319,-0.021851085527710593,-0.02929105571497779,0.2632054055935872,-0.11944380969837332,0.13133679170030077,0.011214097514974408,-0.04208553691677607,-0.28505393932026396,-0.06746145110320467,0.29076141438696607,-0.061615376153799015,-0.07376749922361898,0.1780580310009816,0.12142711632386798,0.2003615653517924,-0.1177548471031523,-0.09201917771044957,0.09804895691205376,-0.06188941430349192,-0.21253161236500262,-0.08289377612011353,0.011642413283318597,0.22612548351247072,0.17196485567262282,0.14701124539456534,0.07257402180182278,-0.3173715213125288,-0.07928190647643997,0.18687830194768706,0.19327470951376116,-0.06977193219282438,0.2478455481135812,0.18684301571201417,0.28201953130207724,0.22400447791852182,0.07733719042694236,0.09153613545410962,0.14847049345883767,-0.009694828547249582,-0.07315269995408813,-0.06435956442228614,0.11307228432647314,-0.13358046671812945,-0.06713068138159427,0.10431154292141263,-0.08613940411093436,0.17145471930879813,0.12827596904877567,-0.07963691057090178,0.2196722130622455,0.06773924760234126,0.18370522338281053,0.3671063884867777,0.14847069955691083,0.03534761618175497,0.20585137517168545,0.14545013567383236,0.0709606617049257,0.07415478338102909,0.013598770286314293,0.05442523472165937,0.21098507655897497,0.314378854985551,0.25308749851292606,-0.12061400803604266,0.01807025729200788,-0.04935224073499493,-0.12128265297845782,0.018125020786906882,0.30649861728878885,0.1145544248328409,0.27220031162996156,0.22010547187157872,0.3234157848519365,1.0,0.34033637813014583,-0.242581744311177,0.28706967940359396,0.26800233570997467,0.07577893984596214,0.01771288232934902,0.08607252555183736,0.03702302428776197,0.04107474387010346,-0.022265243299864186,0.0065232684820078065,0.2750145881644653,0.37177942555238125,-0.03934302236764203,0.22038969735614986,-0.019172941239472614,0.07431383798752537,0.2111467252923998,0.04043788279151956,0.02078123756142531,-0.07243460890673634,-0.05180624729780177,0.010962930271447369,0.20399535983529526,0.1917220351759761,-0.10025323371185987,-0.011386173137673948,0.2738484559458327,-0.004916118680105601,-0.07990029451089603,-0.022347236843604776,-0.09975922830432468,-0.12448800877209555,0.08167212086657201,-0.039363702621812914,0.0025141002643852893,0.04582124662388137,-0.041106603711798466,-0.03239259169066861,0.00407016614373892,0.027495149146764986,-0.09909055009010445,0.016876576424823223,-0.055364721184951296,0.3466584183154274,-0.06209625192534522,-0.03961544231053029,-0.0039148714929588355,0.05467366785941472,0.05119041051249873,0.058022561541654964,0.037413878445600936,0.017829702180696055,0.19251911760617324,-0.17946140718464126,-0.14790879189215847,-0.18149272185970586,-0.04582099193095243,-0.02329719348831613,-0.19581110506006266,-0.2897384866628783,-0.14029494681115343,-0.1751976111497766,-0.10588843545916736,-0.22353273435121518,-0.2048438593624224,-0.05460614412789604,-0.09401250832985768,-0.11126384301807657,-0.1452643473468099,-0.12755721826775723,-0.07733019072704472,-0.014712254539532996,-0.048215867161904125,-0.11806951614738981,-0.036551665217628315,-0.13893637178772242,-0.0909562961228542,-0.19590751997372735,-0.08589746720375949,-0.12385272292734517,-0.09033776216688223,-0.13107504855851526,-0.10008301040019439,-0.0652229045827871,-0.07126361183401067,-0.09264891983136575,-0.15060005592737002,-0.08852798813918149,-0.16907031511165452,0.10521866925272941,0.20030758154586134,0.19213674300556335,0.23434945336593505,0.24125694566006498,0.16678109064772356,0.10043875495214147,0.25171590703370417,0.24600163780577228,0.2110598525692613,0.16541119591246423,-0.12339475565737223,-0.21085070461055902,-0.20701359958482907,-0.09859042762540512,-0.1908271901912995,-0.245782822811017,-0.2221534306383692,-0.14830110036711944,-0.2168956710208865,-0.23013553254879765,-0.21330877952434849,-0.11644570249029645,-0.12726982735788925,-0.16068901640700597,-0.20397276542362777,-0.19637578099975156,-0.12720338854467084,-0.0702002343395552,-0.09173108361054061,-0.10010853940194925,-0.11251829188106378,-0.17277388863381363,-0.16352106312278827,-0.0016695034915247468,-0.08893542995436661,-0.048702172696103684,-0.05460788574137844,-0.09621569040359318,-0.11313033914071877,-0.17248467320779387,-0.05794336384891799,-0.04658695083110189,-0.047669653269844785,-0.08530056024640176,-0.014094774744842218,-0.04161594897950498,-0.033357750265439176,-0.04888217598741379,-0.01980643426293091,-0.007458417629323501,0.06922525004469866,-0.06254773607860224,-0.11260592879978677,-0.142037122859973,-0.1418928642584248,-0.0734001640997802,-0.11050756134863399,0.0017889999291304964,-0.051173605600806166,-0.15962882822128194,-0.08810452042421506,0.07517095823825083,0.052617467994294356,0.033080394605541276,-0.003795008552090708,0.05184486257720039,0.04630892562625386,0.030558277021293656,-0.005200365137993546,0.06112623340602335,-0.004942822072344158,-0.004942896371231092,0.03867752211087323,-0.06761790442912195,-0.0011090887390502846,0.0028560464524748984,0.009988037622150031,0.017413655038200804,0.02019785673362624,0.058972942628859645,-0.005919649959268002,-0.014455027160992836,0.013528524727031728,-0.02692028199943443,-0.008904724830071258 +Kynurenic acid,0.12015316521322499,0.1604834313573237,-0.2911086824034211,-0.23979306262743313,0.37892227359788383,-0.3051860357712392,-0.01476537726336648,0.19556771666611317,-0.6614756738382838,0.26177411683989216,0.23503006135943408,-0.6175058186422079,-0.21337565975678843,-0.34131630439894783,-0.4995801157268229,0.12312693337078062,-0.008286516259563444,0.1470162142824177,0.7341104161959816,-0.1306471508199089,0.2122327995628627,0.1596327610714378,-0.023911328394378303,-0.5560544810990278,-0.2045327091360789,0.6807365185212371,-0.1870917648470843,-0.27498815218784295,0.019929234299265068,0.3210340243943868,0.4607466561036115,-0.03173806120756392,-0.11100545157288177,0.12997670859691898,-0.5831580378539737,-0.17194223289355226,-0.06332423301261794,0.21662771760935143,0.723918489311829,0.5946688612793538,0.1855260651890513,0.09531810827766214,-0.6579734856101774,0.040589017221139535,0.6500386714145064,0.6391051930582916,-0.1359825424912394,0.8075663990710238,0.192757717643209,0.5643543883999014,0.17108070109807605,0.3302757888156816,-0.20507088114146887,0.013534513700818969,-0.4226696477427928,-0.07865533195904924,-0.004903956780332155,-0.014106788673523054,0.09129938786750061,0.26929929334887315,0.23154329742954824,0.3205806758918648,0.6952008486251924,0.17566102153097496,-0.09702892689625846,0.08648100215525013,0.2838704820332296,0.7473224558631333,0.609151351230672,0.6830658366902661,0.4777839295379637,0.7397993841132202,0.608693709017238,0.6249079665417088,0.6139910702039324,0.5243683266958419,0.21223420853666686,-0.024937714178858584,0.5709763125653096,0.6905715098576581,-0.03734717410909764,-0.09172577747139268,-0.011814267994075844,-0.17768066716748046,-0.3151515896496661,0.8357322313980736,0.11006737200810829,0.7942214308256734,0.7505465813632669,0.8622915730065741,0.34033637813014583,1.0,-0.4346587976845043,0.8183273302055992,0.1698274001828109,0.5861933240586745,0.43223363188471803,0.4925868805298883,0.07779109488604886,0.166254248924308,-0.0774121990923632,0.2896394581698546,0.8289305870888592,0.7331801981362404,-0.30936022353718823,0.5359888710258186,-0.164683993602579,0.2677576000012989,0.5873034448627119,0.08794397524871922,0.03027012142651867,-0.28636283603712026,-0.454389363835709,-0.09604289674571571,0.6891604702212317,0.34746525542315365,0.24627500229528781,-0.05000901876053938,0.6402224573751227,0.3781131413306756,0.2454173458273787,0.2555644133803759,0.17037477309754231,-0.06359037509274171,0.12162938059345284,0.03566142512679628,-0.17510706071460053,-0.21674730030463604,-0.2628888312982248,-0.2665462555180735,-0.19569761352833315,-0.16982550770727237,-0.48097808881953413,0.07382557326477317,0.10174750023662422,0.7174137791533394,-0.2991768720166972,-0.042651401098125895,0.16870700760627644,-0.12995037226550962,0.3189788351782781,0.08925944566656167,0.23899281012190005,-0.054030904202333425,0.4106736333894388,-0.2840989231367239,-0.32067908133313155,-0.22310614341334611,-0.30287278124556816,-0.17954124569137667,-0.13275578340486824,-0.4132812283798033,-0.437091240421076,-0.3340960391115528,-0.2048140510976606,-0.33415988343840647,-0.5579976305808031,-0.37296750053144406,-0.39278817015567513,-0.3455611180572295,-0.38879095269270214,-0.4130460960395993,-0.31054170093223016,-0.31544211315347215,-0.4315636510226597,-0.27081958073526335,-0.3758533095272008,-0.10085526090201434,0.020994824521391273,-0.37957449628575113,-0.35906870914486677,-0.313171113192727,-0.24467987939265254,-0.4101523781299917,-0.35547115165644144,-0.17291770227033937,-0.17136611399890556,-0.3630680441854108,-0.3283954730179747,-0.33052433527175873,-0.4657357047827905,0.1488216718350411,0.5425710209483002,0.564203834884705,0.5196094545567536,0.622798068916411,0.5235586343710068,0.24674004352366022,0.5738970571500994,0.6557856489925841,0.4458861294373967,0.4485048971842632,-0.36962955554195537,-0.44841112990568727,-0.4586403444264241,-0.2325388988686179,-0.34023472545190464,-0.40246654734177145,-0.3519415477988058,-0.30798262807604676,-0.3585624968638308,-0.3866543516181008,-0.38793369379534254,-0.42530652706918437,-0.37523721343194655,-0.3033283442799724,-0.39261119850642834,-0.40847251728226186,-0.3769887990679337,-0.3711581489201241,-0.3839808553855789,-0.3682621408021028,-0.3027051707434862,-0.41608805246959824,-0.429854823163988,-0.42540189927462657,-0.3815718023308253,-0.3702514572979681,-0.3794341801552708,-0.410053093329964,-0.3648431470296485,-0.44193094791151266,-0.3430289886745807,-0.3184650380421134,-0.34350478120702505,0.015764158957519436,0.10113672179304703,-0.034311776516005595,-0.07764631857419745,0.0789756947264395,0.14567238511968955,0.0551332908327092,0.19575884552238512,0.06442895514684378,-0.13988320762173653,-0.16245220896511742,-0.16941666802644315,-0.11733397173301106,-0.032338826959741676,0.11723021241875796,0.016483016183271047,-0.18246685705227414,-0.06313549803872535,-0.03955099891127579,0.029394132843210817,0.001953311509867595,-0.08917524837111847,0.027629215904164256,0.04116518889265618,0.04070188404336974,0.03406073588958921,0.14293565038872902,-0.021832993293874826,0.06676618641057491,0.09703899249001485,-0.07178243052849906,0.02449549950717668,-0.06535652192984967,-0.02293638092868043,0.030893938236990045,-0.03700720609403808,0.13855339781581524,0.02545040175305292,-0.019737497044951063,-0.024802285650982313,0.027620235210992265,0.056502220743091254 +5-adenosylhomocysteine,-0.08053657979631805,0.10692214243368493,0.32599056738701604,-0.03185236607610099,0.08676008057534208,0.29847992012724156,-0.29661724301940473,0.11474806038475963,0.5885944006860189,0.15184477841976612,0.14528872793012618,0.5409967758665493,0.18077703263497896,0.2437678120206572,0.29903297224918923,-0.030139898049923494,0.044775594428719645,0.03400165722660915,-0.5350975395913014,0.3379982018531067,-0.09863797420704662,0.23542396950684508,0.3633190247285785,0.528314571393319,0.0658452498535858,-0.5022150997292429,-0.019351113751475208,0.048276055152034744,-0.06738002040151275,-0.06525830684997709,-0.318027507107634,0.32744802463939104,0.3618492236532046,0.1671612485293964,0.04391743348961059,0.08499188945663687,0.1736812402919261,-0.0022084575981524777,-0.36714099087357427,-0.32507603299117555,-0.24925750432392607,-0.1494440853423845,0.5751172014084837,0.30312983406278043,-0.3527855499347478,-0.2743015491207268,0.1945722225907538,-0.424662097919288,-0.10840370289711769,-0.4975219536691855,-0.18345454142810985,-0.0690942996728924,-0.0872365884437116,-0.04173647976219667,0.017578997952268013,0.09701802851136228,0.11529591673483183,0.012400187412803066,0.039846807254425215,0.12209280794987461,-0.2794601168493164,-0.16983938840039584,-0.33710139658358435,0.09153650966482148,0.26185916611253385,0.14598216507208076,-0.24085812436002876,-0.33954118940140665,-0.3175903312279076,-0.4625023113905581,-0.34184166067122534,-0.32702601913635354,-0.2370864309900158,-0.30262293334996043,-0.2560497709732755,-0.23638051826976902,0.2260013807029602,0.22673260908275147,-0.3188481381129544,-0.20779485572744094,0.30608556936706227,-0.07742677233664534,-0.047269680668239195,0.22900770196760892,0.08804599589472355,-0.33288655004192713,0.19459190889211248,-0.23346771975153405,-0.21796655517547237,-0.3934115269831954,-0.242581744311177,-0.4346587976845043,1.0,-0.4409849443903204,-0.024346710035105957,-0.28867905980546094,-0.2517529052395116,-0.19283156668318555,-0.2253659183039369,-0.03531723700553451,-0.035676653102878264,0.10842268786780235,-0.30845990164502407,-0.4468791342570917,0.013879741204348919,-0.5623375592500691,-0.016750827960471743,-0.2220747498973373,-0.2585981168844578,0.0017924070087118077,0.09042912442513146,0.262180211897129,-0.012034488055342614,0.0690686568918243,-0.33826673527825546,-0.19519734899237817,0.1592097722681512,0.15811042785268448,-0.30953704284201394,-0.004510215215534376,0.13207558892504723,0.08208242925427288,0.18987093174617928,0.25201004960288276,0.07291073620234427,0.08019737919845427,0.060607129408995104,0.08547588268679644,0.10802677797969783,0.07095112070379934,-0.028060050846963204,-0.011229422083458241,0.0868122011448947,0.08401912609995871,0.2985594463248449,-0.40593385431128826,0.03405349995337986,-0.03573312523508647,-0.16203976370878284,-0.12060139240766303,-0.16297786643702944,-0.23762035068759788,-0.17033909807111924,-0.19136697134345046,-0.42101655856746645,0.22305968475239915,0.2450075606889881,0.30158695849658224,0.09438779288734399,-0.04847292736705855,0.27475060622547237,0.3789220044239948,0.19298198846172968,0.17995270893442014,0.17584700791244717,0.3677887462854376,0.26802868235787125,-0.0012397948853523307,-0.0015876168018302105,0.12312148226826528,0.36507120447197866,0.2122423065958512,-0.021684486886843192,-0.06547225924195646,0.029980963112260194,0.3004059640314773,-0.02072435341420249,0.08599963057433406,0.09434784444465147,0.14536899841237014,0.14480305966406923,0.1263304823984944,0.06305851694780092,0.20743930681525372,0.3537408705509616,0.11990067709081746,0.09490592155037035,0.13749213183983194,0.3105399704811316,0.22066190651149187,0.26801575264272043,-0.07628953587529698,-0.330975483413759,-0.34322077176488336,-0.3578015898857859,-0.40215915279594316,-0.3042444244024799,-0.19082663722074072,-0.43613572968783393,-0.4272047089321022,-0.3482597500336586,-0.3110885911426029,0.06738462807419787,0.20007634132556823,0.20889496427850657,-0.013532829045281088,0.1365400461376894,0.22011765713663078,0.1910105088694318,0.07367322657478327,0.18647329748481264,0.1996327746608774,0.20243930450217265,-0.026738913812054923,-0.002285766397959798,0.12664662612904312,0.1788476436278465,0.17975920709082863,-0.038920847706039235,-0.07819418643342096,-0.04196251767055687,-0.020038380388661837,0.11089474268060676,0.18133532183217244,0.19372723010608528,-0.02980848862456557,-0.05421837273955414,-0.10409677388743237,-0.07400266951637002,0.03474731968570679,0.14877344981746074,0.21953852542043373,-0.08396580363554074,-0.09888367531588875,-0.08393941182825411,0.01200856546327255,-0.08767743684719075,0.015039281921821437,0.07326848663757855,-0.04373365633275799,-0.11844223290089198,-0.08666786495037214,-0.17559596036917233,-0.012440351146366681,0.11731300994720421,0.14097011146222474,0.13448914823105915,0.08235197094503952,0.06124891643393662,-0.15628952436935523,0.0392018326166454,0.14856642434921608,0.1051815051766401,-0.027406216382150007,-0.060187510383204926,-0.018837341335037446,0.04995111701642332,-0.007426776107189435,-0.05119314441345423,-0.06002858300114766,0.012538473189942528,-0.059620402106934096,0.026556297998800948,-0.05657478790724312,-0.07477213772709343,0.06223526409196721,-0.016938111239234242,0.05271201518737106,0.03398627891369301,0.01902494529007675,0.028459666326900834,-0.1958513347452332,-0.07460564774381466,-0.05704419399997383,-0.011524036669030017,-0.08253013227964545,-0.033212941357415926 +Carnosine,0.11340165424322732,0.09233633559723858,-0.2897156408356505,-0.11104417865682231,0.2817842957325327,-0.2703243956532836,0.05869667963621073,0.13289504171451363,-0.5994798951270788,0.19698144216504185,0.16366349439377845,-0.5876827093084745,-0.19153666799738736,-0.30346742367817847,-0.4468684169138548,0.09809853000927406,0.008874447803544398,0.14102334012908926,0.7060577856780772,-0.1062533682291992,0.26885420331579035,0.13527877313923817,-0.026776971146654272,-0.48997960205706437,-0.1501913340815383,0.6569508873725205,-0.11370062922227844,-0.17185379244631457,-0.02310573488144446,0.3189940341502032,0.36144451107807274,-0.04881469631154629,-0.11781919676999578,0.0816087106205669,-0.4443772317986427,-0.1350448442752231,-0.09517654333211388,0.16025632144782972,0.6651593662145523,0.5432555866578961,0.12700907689851257,0.12008239025011158,-0.5896954676427469,-0.015088983549790998,0.596848453418122,0.5691357660336874,-0.10883333780071944,0.7612057956943901,0.14937877282477804,0.5641731509804438,0.20223567268696127,0.29251618384900707,-0.16320485259033482,-0.0064627370898677865,-0.33483100297355534,-0.10187555871965336,0.0011894018031699577,0.012856815191227692,0.10062051497839578,0.2211007536559068,0.25620646937454655,0.3204726253692262,0.6300638704700393,0.18193658696125303,-0.09778032454817918,0.054886631242202624,0.3154302569254843,0.692279114090678,0.5495210208285658,0.6529744128917186,0.4755207541268163,0.6696188359939803,0.5437025117759212,0.5795707025340898,0.5689356492885391,0.507288706568328,0.14384033337232377,-0.03272366748278581,0.607812595477439,0.6112100291602856,-0.027039156199229336,-0.065468693653267,0.01938971400727375,-0.1431773331819522,-0.20190794751299676,0.7624974934370579,0.032719036649205856,0.76419298198379,0.6947116570525986,0.8261018666841545,0.28706967940359396,0.8183273302055992,-0.4409849443903204,1.0,0.13685654014988502,0.5578696091541736,0.40819335269554446,0.5018789360665552,0.15370205975015008,0.15936626656754327,-0.02028395534496237,0.2618261570573038,0.7803407375410538,0.6622019568273212,-0.2587903515189238,0.5623781613994919,-0.049245731130664494,0.2685085204199544,0.5971301295166285,0.07031308282547875,-0.009745869522410123,-0.2716183942076151,-0.30753608992241616,-0.10881995215773797,0.6333325700465633,0.3078495983078877,0.24439888066773924,-0.06437353690891677,0.560632862608417,0.3650672856920178,0.2336718395968802,0.22991107532260258,0.1743042681713983,-0.050910559915951156,0.13001301881146848,0.07767928859520118,-0.15237032353519808,-0.11347152684093235,-0.16228613981438458,-0.16529052058216698,-0.10115211965080777,-0.08791466241976469,-0.3775707649246742,0.0342720520855785,0.04015620280606007,0.8660142107540847,-0.24056127251119194,-0.009635406756737562,0.15960717796014173,-0.05393732570337759,0.2716482451466167,0.11786522038131306,0.2090779824675974,-0.01416387970781943,0.4111327461624016,-0.25605740265497057,-0.3007181170313054,-0.25674947200125064,-0.2633156864362475,-0.11194971822725065,-0.16268422599108498,-0.39820304627989533,-0.3835739028695312,-0.2847479147359041,-0.19287108663653066,-0.3486775267675135,-0.4890148480668978,-0.27915575309018287,-0.2602905781697019,-0.3000681740107739,-0.39611486272632673,-0.353057675731212,-0.19028595382687385,-0.18904186004373416,-0.3250870525578806,-0.3005540144005764,-0.27827627903447616,-0.13195511353949108,-0.06999451080185828,-0.3428948756154178,-0.3258183432046681,-0.30899018575167175,-0.1881146211547661,-0.35582028956163686,-0.3716016218593105,-0.1958933663001617,-0.15063975915617273,-0.3160657844854649,-0.38480884729767584,-0.36109152530598543,-0.4682708271226929,0.06749174182730942,0.4316247374458675,0.4496616723945058,0.4463092899043456,0.5236032058611948,0.40863343129973706,0.17022024073688982,0.4916611516051182,0.5583503708471225,0.3651739197429401,0.3578462506911945,-0.32259029038597886,-0.41463811707809556,-0.4184687277304742,-0.2112369222091072,-0.3379628949175507,-0.39281390620236967,-0.3425942516362045,-0.2988530641359341,-0.3688446736669529,-0.38353023800910374,-0.3564942353817978,-0.341334227232756,-0.32682462884967245,-0.3155513425915897,-0.4003098149818794,-0.3944035558008295,-0.29609952350069757,-0.27583367438990813,-0.2928247222830348,-0.31512427875607607,-0.30607411421371217,-0.39523977703052404,-0.3950061078326611,-0.3325902374928105,-0.2949506179572104,-0.26471594356511374,-0.2845847559542225,-0.3475845519556626,-0.35387769666157615,-0.41315940469131684,-0.24713091665891332,-0.23429036291104033,-0.2411337158553823,0.04314354683202666,0.13358680480628973,-0.0028711458011173824,-0.07933398912738275,0.03909175442610553,0.14481238654271064,0.10192162453698515,0.19988814335833133,0.030515951365878497,-0.15349980170769137,-0.15828016307827344,-0.12527136028568997,-0.06260930991783872,-0.061270824322320804,0.13300223013373247,0.03866076949363233,-0.16873365855902087,-0.05020666979570615,-0.032617639220044424,-5.182871021624261e-05,-0.015160277546863134,-0.08145620354276177,0.001039764588794441,0.026141110207470297,0.043942726861425876,0.033754293853910475,0.1262808012043142,-0.009339910575505745,0.08281997178013596,0.11201054179153437,-0.0672507474696346,0.017583932593427738,-0.0668761075241548,-0.02981782944583221,0.012703676967650866,-0.03440817053887681,0.14670072226356967,0.025031621630534625,-0.013203551623949197,-0.04528798649721037,0.045082311205910906,0.0398572176240434 +N-carbamoyl-beta-alanine,0.20936555450660346,0.13734260766730763,0.006756661712989731,-0.055542566849912066,0.2444771305324897,-0.10461703677548223,-0.08682804831009423,0.13324205522972846,-0.15840510612293973,0.15021833235998827,0.24148116706473285,-0.14651288122705308,0.023710471378616878,-0.02853420615770315,-0.10776644770205113,0.14031037058098342,0.039077215869214206,0.023371695999502843,0.044732831379835115,0.02802714916450004,0.18289737783510573,0.08307869440167596,0.09520669623017021,-0.07673620164034417,0.11737747818575744,0.18016408093399996,-0.1972847522648355,-0.03981310989403073,0.14842046607521087,0.27944021322935336,0.08473940476506595,0.06842717575692983,0.1983369813923505,0.09532325495090181,-0.19954994872880588,-0.05845744958039977,0.010255072104041868,0.08760912939657277,0.15335645134803177,-0.015736137495093425,0.04673410607092601,-0.20097493825937915,-0.1782593105402566,0.14765763003275814,-0.19202083284819002,0.13553288112675274,0.004961468681304802,0.11526540147193744,-0.020203522928741426,0.09142912332155653,0.0478476398964064,0.07170564132062765,-0.11540399966612495,0.0824064385256036,-0.06418573632462284,0.06309791179026232,0.1415218553560488,0.23411948177798617,-0.06599283250803635,0.11290865846497171,-0.16552897457546378,0.04408363735473176,0.14805262350975243,0.01430692619151264,0.16546563576681184,0.0498010903211606,-0.010464597295886092,0.13822569419884317,0.11557622297534514,0.10569454887209752,0.09163376676871542,0.16407131032248698,0.15203716514011073,0.13687267145965604,0.143673472316758,0.09679370341207097,0.15446675532433501,0.06476400580218372,0.03496179521493997,0.1411654599263453,0.09106057090493772,-0.040867723632391544,0.039894618430653346,-0.12382238357449103,-0.059695690057143314,0.17415000376639328,0.16943967078997565,0.24119421792275045,0.25677308492136963,0.2057295257578233,0.26800233570997467,0.1698274001828109,-0.024346710035105957,0.13685654014988502,1.0,0.09525123841529225,0.05186742027571078,-0.01755263085943938,-0.10878026645717544,0.03196611384166166,-0.049187079631491014,0.018283269403720756,0.16205373788028984,0.2000377303640604,-0.16328961296000605,0.0173411380767832,0.11207812694297592,0.09386056315761467,0.12393046529049224,0.07577151646468192,0.01220088230142565,-0.07280669451463385,-0.08248545205926155,0.1012412626824376,0.16858440714989872,0.29525705662062307,0.06628852728667935,0.04342172007844375,0.12314605542262816,0.07514677948764024,0.03946551111605233,0.1124203611631095,0.049869224688412594,-0.021409812666651575,0.06909490400232916,-0.1275716784635044,-0.09135802249705094,-0.11768197010018357,-0.1490242723556823,-0.16271276173635874,-0.11700546535085833,-0.09882612313299466,-0.1778209182753736,0.08806188840631463,0.19144266077979102,0.14989848298001035,-0.16218970579223338,-0.19153191612508474,-0.15727866200824675,-0.1459029867641539,-0.08068075983865873,-0.13503977248308455,-0.10233137153483339,-0.16657993072316551,-0.08909789008802843,-0.18113875324542378,-0.14463201825510344,-0.06192477725435384,-0.13557834627580115,-0.13183326077862376,-0.03405076879874184,-0.1361912132468824,-0.06509807231800352,-0.116435273651357,0.05229838144750691,-0.02345162802741996,-0.1469822006930948,-0.11847425718170258,-0.1769679322844694,-0.04128326889611235,0.011394188191152817,-0.05225818493094314,-0.16466944333288067,-0.11992948880436338,-0.09017448122396823,0.05504345540584336,-0.15505677977982837,0.027471767509356926,0.09941247000534369,-0.07843719687560269,-0.12742270758363278,-0.12013599289304278,-0.07227641361234605,-0.06097021555423934,0.035180479208611774,0.0636925732407977,0.05416667277348267,-0.12960918290410775,-0.03042852178172706,0.011936119975470018,-0.10029958926444535,0.08935670620100115,0.12104369363204334,0.09006888316578199,0.14494260021127406,0.12574133624367007,0.12105020078625703,0.12066114913862931,0.14161733035580587,0.13275113626942403,0.18694975498211777,0.1231382392196941,-0.24116621539704827,-0.244191316750463,-0.18528431717931912,-0.1676107973494605,-0.2253882831707996,-0.20611013936235897,-0.1325449485082042,-0.2146718431854489,-0.19651357002730188,-0.16381880818440844,-0.10381466419440033,-0.19814285661069977,-0.1639874294371552,-0.16492564462241038,-0.17150968789886817,-0.14914218276622787,-0.20488515025429233,-0.18980702593948404,-0.17761513889836278,-0.14512390592375415,-0.1266251531848306,-0.16716464762550204,-0.08620761756199322,-0.12006294931706367,-0.15069546613768478,-0.15948791639713816,-0.12933549434195607,-0.15819562301376683,-0.13841234132204927,-0.17208962593537203,-0.16361191539889208,-0.12273115623876006,-0.14904050802662563,-0.07189653960729483,-0.04795559883477539,0.009676819936799882,-0.06151612497667098,-0.003306260854044033,-0.04600345840541701,0.012208569877095682,0.07953101521897106,0.03870497811586868,-0.10752483728654469,-0.15549246346707404,-0.1327702770744246,-0.12458019085393673,-0.015906575384906533,-0.0034465047150600034,-0.003291577498106234,-0.13279751244939958,-0.05048300559437317,0.04593505540790625,0.10210289157224178,0.0869016013970859,0.07905541783838975,0.10868483776066883,0.06866165538369892,0.02543523906864832,0.054717874136546975,-0.009744825266417012,-0.06814021065233901,-0.06695120515622124,0.0021631720487850295,-0.10638344547903669,-0.08623492776391216,-0.00020586956617183987,0.05936420292628103,0.12508387726165723,0.08426377492309702,-0.013516187439224276,-0.02527866998132346,-0.0185350070483904,0.001273608075482722,-0.04141201217532876,-0.043276382928081863 +Thiamine,0.054030431698511586,0.12363123330631788,-0.26230441266374005,-0.12742628915046947,0.22863676012835707,-0.27862305027746587,-0.09979616210375485,0.21593749249356586,-0.39492647965635636,0.22399178200235223,0.16262358433479857,-0.3994827786606104,-0.06816247946143242,-0.23924301470892317,-0.39595466462418005,0.1679235603923234,0.10400043657340094,0.2576693465693867,0.6479887916719715,-0.031908510050521734,0.202622039052699,0.21447461821572267,0.06484007974401376,-0.2967168507700452,-0.04269317768159784,0.4305202837058963,-0.15410199337507896,-0.09494994095062244,-0.06143533690820882,0.3785509528713681,0.36262630638382226,0.0468947248601814,0.030738164056674167,0.11790214719269983,-0.4749530517279494,0.042453256115073966,-0.07104991958839435,0.3309966969055602,0.4584728477011153,0.44726172348694454,0.1681531781932617,-0.03558333365304691,-0.3851821528875639,0.0737514591747975,0.3776842210186737,0.36230272859279417,-0.055330920301200126,0.5679722976546059,0.07488945334991852,0.27159238584807727,0.3219575311216997,0.3110431554468208,-0.2956220489579764,0.06997022609212139,-0.40651377297125213,-0.07205623017797609,-0.04970897833649997,0.07484091454012858,0.19178335120197068,0.30154908631441407,0.2750634392872262,0.6215858199633472,0.7394870483644874,0.09840756144982306,0.049067215349914144,-0.22965094292584973,0.4308379331398636,0.5983021734935493,0.3379552329630731,0.7657310764348572,0.71408956998537,0.7668431944763529,0.6808263425712149,0.7339304101726665,0.7236495120695208,0.6669663094438748,0.1305663548500502,-0.3703036628423607,0.20573201741582278,0.4143835080704614,-0.06578807322913882,-0.21253910665516176,-0.031248659072251137,-0.08658679275416638,-0.28579410000675387,0.5134577067890498,0.06111904941974186,0.5279174741384145,0.600822800780033,0.591087488686479,0.07577893984596214,0.5861933240586745,-0.28867905980546094,0.5578696091541736,0.09525123841529225,1.0,0.6700888581837076,0.3427682310731475,0.0708391777438806,0.029774034617827915,0.06823192899506991,0.2541077534834729,0.5867953579381622,0.4127709635706201,-0.3357478170736158,0.587913518294709,0.11366564572158762,0.1674546987599939,0.453290792630507,0.04420554208325489,0.01490478228698901,-0.18617741322811726,-0.2933791767540014,-0.14602997338139895,0.7236521425533686,0.34581546490829884,0.21539324394052026,-0.006567173112595033,0.5200185347391968,0.2977461013129273,0.16131069450984523,0.2622547094482824,0.13292845034873635,-0.059327003581943004,0.07190034971092467,0.05595046200923036,-0.16795114090092184,-0.19230736789142558,-0.20682617019633093,-0.22150079011750248,-0.1980491833850103,-0.13322504521046405,-0.4415345518617988,0.015030923493521047,0.0931297817965539,0.43628054990149834,-0.2154241390921087,0.03303398654188675,0.10400890711632883,-0.12901541440640263,0.29324515213768815,0.0015068435977493337,0.19906655866160294,-0.09854681702743201,0.2941824901979719,-0.21557291482035368,-0.21702042581757547,-0.11433808513160354,-0.24130368167195035,-0.17525299559497962,0.018048809870832124,-0.22941731148954556,-0.3739325929859773,-0.2319877629126934,-0.11111060445236623,-0.19571750841877605,-0.43769750277435676,-0.3593557089180278,-0.4317329354613227,-0.3464290994876847,-0.2783223013591365,-0.3380879157471733,-0.3717648510076544,-0.37004146348274114,-0.41180385884364995,-0.17718812423608588,-0.32913501288617414,-0.08628705094167245,-0.02457603646450245,-0.32381118439931383,-0.2995709913009524,-0.2583042210487449,-0.22929878577749144,-0.36972832748233625,-0.2330672696624478,-0.16342936046308779,-0.11788720762187452,-0.2736090294285689,-0.2152006044252349,-0.24510407483707908,-0.3473155076942564,0.03572274699122209,0.3666294638744132,0.3552196784188685,0.33033739819004165,0.4265207046499038,0.33066132005239696,0.11008469531569492,0.34189401809471864,0.45249495072220713,0.24200982389091572,0.2192752230816137,-0.31560957165630366,-0.3672723609363529,-0.38534646879929185,-0.19573935396689654,-0.26155590887590696,-0.322206166534311,-0.2918976095079608,-0.24982590319436132,-0.2944317833735944,-0.3365448695974239,-0.3365436709333386,-0.44670144365218867,-0.36023129777560897,-0.2704164376218355,-0.35835038513620987,-0.37205581177942615,-0.40517211238976614,-0.4251331494952647,-0.4131444619430523,-0.38418137958892445,-0.30425208957644445,-0.38486907279778815,-0.38800083275341973,-0.375436662174584,-0.4078253403530016,-0.43130474331109986,-0.3990241303147423,-0.3895804641578101,-0.3296380312325925,-0.37436430557762657,-0.39488972567979,-0.36291781130245965,-0.4011110098538255,0.08103980834200915,0.16678062670386234,0.02873284972228147,-0.04562517157574445,0.061664348549439134,0.1213739230093996,0.09299309838823645,0.1381689808944892,0.12325754389813376,-0.06501154785038037,-0.046019724670552785,-0.03953005061383652,-0.036041799322129364,0.0774316444126467,0.111557028446111,0.058909366667147765,-0.007851248445803618,0.07290489454529835,-0.09313369638443537,0.016557092360547507,0.05706835978282004,-0.07109973098896287,0.023964793313563975,0.019997083801134467,0.12157720243730101,0.11302218195943786,0.17490761503457816,0.001649396364572252,0.11033941268622471,0.11210001591452302,-0.0395230157203673,0.006209025627476094,-0.0009049250438660118,0.040187971453774854,0.06606328497963691,-0.04116668412367131,0.1044799653396697,0.03027236316005844,-0.051174305927479034,-0.006722761334640734,0.0941057113684931,0.057781571215276765 +Niacinamide,0.043625647882742494,-0.02514437724997676,-0.15046973192929414,-0.06299444724252165,0.06236012027043965,-0.20261775877960914,-0.0483898783664127,0.09051936006878357,-0.2608207860892209,0.06514623122908639,-0.00982046951269322,-0.25738841975770893,-0.03831341815200053,-0.0974472585120184,-0.2609934701404284,0.06548387705552594,0.022906466886391693,0.13749294583909036,0.5180021279994036,-0.06755989292039812,0.09449247676745955,0.07872678622562009,-0.037240242488031795,-0.21740123379975743,-0.050850785320395435,0.3622036905431551,-0.07136383521174473,-0.08132690220451207,-0.058854723304467185,0.3370994030427368,0.23795808458305254,-0.00980915369939838,-0.04880353879667179,-0.003692930515043746,-0.32776268655918617,0.02793388740311745,-0.1553733925279882,0.21809810964715834,0.32959972960432093,0.3689061906063548,0.12381438556554446,0.0012947009469977103,-0.23039788383486393,-0.014152561793314047,0.33335496019330374,0.2516751550232702,0.03201952997499114,0.4095605917836907,0.15753746350879452,0.27497253033705327,0.34193073159821263,0.11609289183879368,-0.18487007953741963,0.03396382091165496,-0.25002842270298486,-0.07511654472184566,-0.15874471574991547,0.10609288230689956,0.25163344673466626,0.1618656701734777,0.3668274781051356,0.5755188318596356,0.6350847130239621,0.04760667025306128,0.05609731381313734,-0.2749382432595052,0.404014575211241,0.4399783262211392,0.15560539449689212,0.6414336665870414,0.665700579765648,0.6778762505782311,0.6589626173702502,0.6741015088921039,0.6551182613286399,0.5946301645151935,-0.00413914909171539,-0.35405013805788543,0.06902601345194512,0.3229296188242669,-0.057445964411522776,-0.12239804706344844,-0.01366281721065852,-0.13547929986377974,-0.14924179608083643,0.3739592340707023,-0.018356235100331717,0.38215515575440107,0.4323948678042893,0.519511968346431,0.01771288232934902,0.43223363188471803,-0.2517529052395116,0.40819335269554446,0.05186742027571078,0.6700888581837076,1.0,0.17051282995246456,0.11531511694892749,-0.022042619725392443,0.007872890945072018,0.09085515092000486,0.41506476367297795,0.3497369312877499,-0.22203834634718014,0.5072820955133565,0.06403627762108038,0.14615406584974946,0.4273109141240779,0.03380174515195708,0.0631695892356017,-0.15832345913852838,-0.21416787683727623,-0.1298460990649662,0.6325360062458227,0.12260977687184729,0.04215226295094862,-0.009031640429776656,0.4397381436547196,0.06968302912914416,-0.00949779085382373,0.17641499415497328,-0.0010118192735488981,-0.10172076216998578,0.015241026473921232,-0.0016474036208985977,-0.06804760389090447,-0.21018146779958236,-0.21787158541426932,-0.21548142174294527,-0.19686127117901897,-0.13382195419786025,-0.30403036882392187,-0.038139701781666924,0.0014703775760629284,0.32908466277390197,-0.16622657741541744,0.10572070904480117,0.09229243045852621,-0.05710326520774345,0.24162963140611274,0.047128309647584625,0.18603670680056014,-0.036299004921813885,0.2201544426214917,-0.14760297605838946,-0.15665919339923937,-0.13222861399168978,-0.15634032714278254,-0.0937626406591533,-0.03267135745215234,-0.27986207352986586,-0.32358729006576303,-0.17089428136310073,-0.07680965551932883,-0.22320543887935318,-0.44773282606538356,-0.257907207118671,-0.2898212559691221,-0.24752603863985645,-0.2793903028690716,-0.3694734183702641,-0.2555072183775905,-0.20880321378901595,-0.2556959619222135,-0.22540507894073483,-0.19871088730834677,-0.17234447724066554,-0.1469158617029693,-0.3333328543998606,-0.2524789227881999,-0.21181486198660082,-0.20199097643285135,-0.2763791006348589,-0.2223939675560217,-0.19491682700210583,-0.16522760384718374,-0.21735688232577194,-0.22466767129998616,-0.1961218606105596,-0.3206643013057565,-0.0129232135647264,0.242134692575194,0.19309530722016482,0.2337719362015986,0.2962017303101142,0.18646726677240452,-0.00984292663510947,0.21313136285531045,0.29300603951176246,0.14945102129116639,0.10967344070916724,-0.20979825294161472,-0.2891690552082329,-0.3255573879470097,-0.11474208434172813,-0.21050263471809696,-0.296485892668822,-0.2796579468328251,-0.18530545891784514,-0.27555800120909735,-0.3355124719433326,-0.3153718104715699,-0.2545034722255013,-0.2060506762439124,-0.2332598646939022,-0.33603334974474347,-0.34727599491621164,-0.27209943975252354,-0.26247987472479456,-0.23937804437891105,-0.2503650086811569,-0.2596985892432597,-0.3480847480362237,-0.3320351283283888,-0.2616142792222855,-0.24897696622868576,-0.24940691537863532,-0.21823531564675047,-0.25422381204039557,-0.2764998996018455,-0.31780951915955996,-0.23484074339427977,-0.22213335186246302,-0.23371603909872016,0.0438442972016005,0.04720625819663149,-0.010709938382562699,-0.008862632190966214,0.039793721980802346,0.061322891790576754,0.0769730570135547,0.07733587160265004,0.05176739864902789,-0.03607311870689282,-0.010800832200056036,0.005254234298580665,0.01851332765645971,0.02430098253675409,0.10099232155748601,0.0013934107432241696,0.006871316610868602,0.0024549215577060438,-0.003959066246733229,0.04434174365832267,0.06787169999318088,-0.008741803647960143,0.017131744631209346,0.022273024151744415,0.07617378004865229,0.030383765343300402,0.05899781202423205,-0.010131254583655531,0.05129766715673288,0.05510829043573061,-0.023058752922076185,0.03293380770740554,0.017518407226677087,-0.007164185080400845,0.025996696806176584,-0.025357987418413993,0.05643644091365014,0.00300424448833757,-0.015160241080751173,0.02023290078271055,0.016224202004657056,0.012036808631875374 +Betaine,-0.016177976843469763,-0.015904995373164692,-0.12533432840378816,-0.0841452243367693,0.17810705628020526,-0.1710144869825513,0.0421855079530192,0.05700897578035394,-0.20343207121866647,0.1628459326631212,0.1128681881097975,-0.22682345321210268,-0.14166610407576807,-0.1698272200903837,-0.2113936117861139,-0.02430915992587833,-0.06938336549322444,0.04551035920689816,0.35348150474066703,-0.013374659806896321,0.08028569148438552,0.035309133186251875,-0.03114440577152141,-0.16720694480085505,-0.13684304631284255,0.3495917410111458,-0.008050937459084346,-0.07418631626427724,-0.009524569595882324,0.07030352350111987,0.15669451897302897,0.011550309992820945,-0.01701805398086205,0.07455291380991001,-0.26476631797606526,-0.040566920050437244,-0.062205785646159584,0.03625614609936148,0.35550219911289704,0.3436653590457479,0.04279183538566298,0.14607421486646707,-0.23474179312820245,-0.029143946119438272,0.41694439917010734,0.32773166793452013,-0.020375935829108842,0.466843208799544,0.0061139559950330515,0.3092472284825204,-0.008682032876446819,0.23174410679797322,-0.08761978959494142,-0.09531086926342357,-0.15860032788221795,-0.06081961570210394,0.11646547672881657,-0.036380323628514157,0.21005260789098865,0.33276388079593616,0.08320547691780607,0.208602972534694,0.33299040184367606,0.1906019418147811,-0.042532339881299945,0.08800296288652605,0.06519818712050258,0.4182118596871233,0.29279437017319143,0.3203490873211802,0.22122807618960882,0.32876181052821657,0.23721906609941193,0.2852942341915719,0.2807851214661434,0.2997151735934313,0.3047828212123418,0.10541828731074102,0.3966077951833103,0.4613769724363925,0.12101597945647535,0.0063579202387780845,0.030351370232782733,0.09449028175879101,-0.0632732675639381,0.5544525887222759,-0.03309927380895494,0.5176588976311073,0.4440985539603411,0.4844454498769582,0.08607252555183736,0.4925868805298883,-0.19283156668318555,0.5018789360665552,-0.01755263085943938,0.3427682310731475,0.17051282995246456,1.0,0.25106967023861715,0.15394324014908364,0.027402442517329307,0.25444768003836615,0.48968797864180635,0.36260598255509385,-0.10290974727548494,0.26947447295545485,-0.15810766771587792,0.1805563682986476,0.37946837915248727,0.048715832306282056,-0.021077882184768658,-0.11922660506414808,-0.2361407182824287,0.06506604801576812,0.29087064950739405,-0.005940063940566008,0.5379137348142734,-0.0007622802401726908,0.3298620390100751,0.4477392827100254,0.36642511563447316,0.2550454277060271,0.32438786312872003,0.11008422605278398,0.15868905954879797,0.20109714887607347,-0.029065332117868763,-0.07978397143001012,-0.10761238279421918,-0.10216013298168289,-0.05129483610087638,-0.09707002716049386,-0.21270894244419786,0.2014251676047886,0.13665466657715042,0.42079217743652464,-0.1356071054444085,-0.07780239524354994,0.0801837874300295,-0.09461235629120511,0.12452474253682641,0.03980923646029275,0.07558512813218267,-0.0008410448240964686,0.14047805409128258,-0.14749327025998346,-0.19223336656962733,-0.07348871222930156,-0.1424028823899543,-0.0595047874896799,-0.11352175890541155,-0.18950843631868694,-0.2360488549575371,-0.2104526348353237,-0.1811463565808355,-0.22896392428663773,-0.23467729113261038,-0.15808712800138391,-0.1676922022845453,-0.1983498030106463,-0.22759245750868326,-0.11672180865440561,-0.12921021135696661,-0.16170456449590764,-0.2078425848090753,-0.14968262937865118,-0.1773896677337236,-0.07489589615198948,-0.015068558749848032,-0.16688525299817547,-0.1285776641170898,-0.21969654330762525,-0.19109421819762815,-0.22785290130036084,-0.25105873717106386,-0.19329812923902137,-0.11281155905542439,-0.20687678170588472,-0.24782679043443281,-0.27034952547025015,-0.2590531480034274,0.0040103520226253825,0.18949832570613895,0.23806295652580253,0.1973569342155658,0.24899466598634196,0.16593633514896333,0.08063397842578338,0.2011675938146912,0.26730748183100483,0.08186386783532751,0.08961731596364511,-0.23691403434257458,-0.2603873409102909,-0.2538340775132836,-0.2314423595905244,-0.26318961932099305,-0.24156517533858007,-0.1886721132287579,-0.28579168806229566,-0.2694645161597351,-0.23608845002255285,-0.20406698501512566,-0.3034160341364492,-0.3264367395047377,-0.2812896379114435,-0.28579006540944285,-0.23113387352065856,-0.23400123057516567,-0.23392421865179389,-0.2885324772515651,-0.2888402361716993,-0.2630397267320677,-0.25304782396504205,-0.22235503045517566,-0.23336478155128218,-0.2359769194862936,-0.25071062650356923,-0.2626802954174642,-0.2566909969368285,-0.24436134884531166,-0.24372548890344006,-0.20029997774674208,-0.1902133899407131,-0.19904104873349068,0.07965685218665103,0.029033110209484552,-0.04543258791589387,-0.050347777618600084,0.050160419954624724,0.1253272241289022,0.043552564202269585,0.09195351921584469,0.025794979480391597,-0.024211246397874243,-0.007521250764070066,-0.005104488291916356,-0.011129217615857603,-0.013206486816609022,0.06762743612835895,0.05617195620806511,-0.021445922899264017,-0.010192855114054312,-0.012826074924659125,-0.06860115998628954,-0.04858516397350042,-0.09732594753062283,-0.03440219847702864,-0.027808410258510746,0.0304002531579029,0.0057234425985339885,0.07430102590492618,0.000125077086322483,0.07503256475880986,0.09781361908731934,-0.02238672937566388,0.040998447665601484,-0.04727595654788966,-0.03473552251698596,-0.035540280286268704,-0.055279968344042016,0.060087857923828134,-0.011401127058693752,-0.06047619001261544,-0.015410994397691306,0.03549933020374486,0.044246199691399174 +Choline,-0.10174510578492654,-0.3182771282837498,-0.1130649171003675,0.2073667094410914,-0.24456081891289358,-0.006401782667071349,0.29186430063741725,-0.19739449529458186,-0.07432396989645199,-0.2341472941202934,-0.21741019914774076,-0.0973671305735941,-0.15692427965317784,0.00811743116220535,0.06459230568410702,-0.11744762183228237,-0.1894073577302173,-0.1997141572248358,0.30344802913026986,-0.10776166187575774,-0.009258671349543234,-0.1777756885512389,-0.2372953805372367,-0.11292711489401773,-0.010913976592349238,0.14289409077050821,0.30986391338945773,0.16194208339667265,0.01691412495728518,-0.11739253904649563,0.03605377545226973,-0.16811260159885144,-0.28271918213360625,-0.20726611476003662,0.291732568295567,-0.024199720022573527,-0.3017623809493357,-0.14927635874255568,0.12352659827398124,0.10882212825394652,0.09304872393119366,0.18694255547902552,-0.07234088660485129,-0.2597894479275411,0.13224567234553983,0.03090969029551365,0.0038482461484436905,0.09855435890186057,0.07687453371469515,0.19235838715221154,0.05259169590019545,-0.21701131392943163,0.24331323478280592,-0.007005494650874362,0.15081768645070595,-0.03399973252185923,-0.02841533390620146,-0.08283980166159303,0.010316262561672231,-0.22023551335176417,0.3183180211666391,0.02427410551855155,0.0761310459516472,0.040489819533669445,0.10240941849014686,-0.13656607664277656,0.2960423279825848,0.09585531304102202,0.13547447048601818,0.21456055895606513,0.14449597436720038,0.07498476927825604,-0.05050078142800256,0.07176698508460141,-0.037634096257629986,0.11782991576369405,-0.11895821376109936,-0.1299233324521369,0.25712030568480565,0.09472041935657885,-0.0077201308240277084,0.09550805260211395,0.06950942640998838,0.03049347779382738,0.08426672265654511,0.14916934584939792,-0.33439176120680103,-0.015948770524157888,-0.09887486842839865,0.14559813333749733,0.03702302428776197,0.07779109488604886,-0.2253659183039369,0.15370205975015008,-0.10878026645717544,0.0708391777438806,0.11531511694892749,0.25106967023861715,1.0,-0.01579424754365044,0.0590949223853287,-0.18233200736513774,0.02807201214072862,0.13473723685437963,0.24518853951786185,0.380178539512459,-0.037559286238145424,0.06315709881878535,0.1259490105756353,-0.09858150229623246,0.006943816438679231,-0.09376883602292012,0.13587271954430707,-0.12145779260257822,0.12188317146975733,-0.00972664267277301,-0.1432960294334497,-0.07583995055344947,0.11580478375889207,-0.01994830195094566,-0.15553190812007278,-0.2934006108823735,-0.14061568476150235,-0.068625518305982,-0.05833892589168609,0.023634603301892987,0.16558906810408824,0.02270768703893448,0.06642763489099028,0.14200474586255912,0.20604458779176257,0.08862913590448436,0.2185602928508031,-0.1974456221024557,-0.1884846740282383,0.16913918679256523,0.07825133142125322,-0.0452802499299755,0.06797268893847674,0.17517766513465974,-0.07033438459003527,0.17701259732230976,-0.001781226614528038,0.22742216678219193,0.2140279620026549,-0.019808348440464404,-0.12581732715126398,-0.14886590112335177,0.09120293732851066,0.17888814685448767,-0.29389139709840656,-0.16020330869234503,-0.01874249352349755,-0.03845101152006416,-0.16892411944931196,-0.28311831553947253,0.023639794089656656,0.22230601159480967,0.2584136899016771,-0.011065846502713065,-0.19501332925403145,0.015021438851221883,0.3479291469707938,0.31658470761249313,0.18475587851748668,-0.2111243447753775,0.23440806498197872,-0.1341174731249301,-0.18185882533999223,-0.022870795079078066,0.06090084424293212,0.026256227135948305,-0.016602928869769534,-0.0074934116021056684,-0.2343834703229352,-0.13632462093731743,-0.09539435572129018,-0.031674420721519034,-0.29823897779379105,-0.26746831336201393,-0.16698718796819575,-0.10392811912721281,-0.051116839477815354,0.017741169759428275,0.060672857678222766,0.06276265936374568,-0.09000063575845477,-0.08433816533581441,0.08222427506394045,0.07921616676763835,0.01619264352304861,0.04966109281048932,-0.15910000961087947,-0.19316177946152166,-0.06190986515032482,-0.23452629654358592,-0.2697866804035661,-0.2159670670754647,-0.10563815740701561,-0.24425215912297416,-0.30569915106866874,-0.19941848592513362,-0.06466762818232749,0.054532836770204006,-0.06771396940756305,-0.2823951822569223,-0.26242169261300846,-0.11648206823420869,0.14366616435228569,0.14603044851860625,0.07463588076753463,-0.0009808232666209706,-0.23041090647658716,-0.17840241315542263,-0.09243929416451128,0.2088805564271223,0.18267015618032303,0.24379980433830895,0.15140635034212763,0.04349550127586577,-0.13649022138307756,-0.13707595148091775,0.23181527008931613,0.22384548614483687,0.23323009309506623,0.06846126675106967,0.010267287989214263,0.009506579307767089,0.03884365209409682,0.056446333889591575,0.055032864832807955,0.04059345884321066,0.050329510830521604,-0.06512233557341435,-0.012780878373733939,-0.028893757704959125,-0.015889239174296466,-0.029941255347677886,-0.05633297786245435,0.11547365777050549,0.026481380414280498,-0.0096147866120408,-0.016138022614409876,0.027708427136182656,0.05859531189772854,0.06982778923369995,-0.004816549026661935,-0.03169127329127484,0.06289418292818306,0.05276101414875654,-0.01471638684016999,-0.05217364963163823,0.014537845537294343,-0.05506528094986751,-0.0010012714235338505,-0.03337489480530097,-0.06056752893706936,0.016569294543979634,0.006695617869185779,-0.015518097016175555,-0.05273423722413996,0.11754794023195615,0.030110127765827555,-0.003325603362892236,0.015259247362324374,-0.01947231072649435,-0.025034832059709775 +Alpha-glycerophosphocholine,-0.040911391960371184,0.06951698405495202,0.07051013441453728,-0.048109853416557664,0.13500798611497358,-0.05365402571138821,-0.04280271414867924,0.04265056531917653,-0.12183903513215395,0.09467883676190639,0.11714783073687572,-0.1495784849409509,-0.04908804125011202,-0.148480612776288,-0.04911914287945019,0.08171951972521305,0.11126040619092865,0.16538196403848876,0.09379265746647118,-0.012326971743574913,-0.030651973239745615,0.08286395241535471,0.1090798122199263,-0.11536787035600819,-0.05810640531475977,0.13933143232582548,0.00056182752002041,-0.03185366271097161,0.053863329430358806,0.001088769163597639,0.07048981859012049,-0.0007865802021106077,0.14448960826048388,0.06113359839070872,-0.1297443276486733,0.02209054930902126,0.02246700810335866,0.01436052215412772,0.1356552261524274,0.08679832568253887,-0.022767155784786608,0.013423437018141292,-0.13744225459184936,0.11460231398126595,0.08819586577003585,0.18590673214239686,-0.07897816772569685,0.12477228371060581,-0.0014867491534400045,0.1222844016030012,-0.13232756499181286,0.08865718806666563,-0.02694572352025364,-0.021301228891455064,-0.05143741381660378,-0.040694930366232396,-0.0041352414402897825,-0.03319311097332978,0.03487460856366596,0.0890025463056749,-0.04583423323506603,0.07717027183995831,0.09374216949251124,-0.009545629747681873,-0.09427639394808221,0.00885343071554036,-0.09751859198644458,0.2100606085782849,0.12005707277411377,0.09916119796419039,0.07382943291645248,0.09237166759398815,0.06678687342676014,0.11311103029655394,0.12717241007718075,0.1035921654362795,0.09466437338709414,-0.012773192451178883,0.15028532016641524,0.14371754556109845,0.14549294426512513,-0.0045477003326963176,0.07001312050687604,0.006233743043111323,-0.04220358503220354,0.1459146690832671,0.03776618419830269,0.20726648886308083,0.1935979107256778,0.15388061602202613,0.04107474387010346,0.166254248924308,-0.03531723700553451,0.15936626656754327,0.03196611384166166,0.029774034617827915,-0.022042619725392443,0.15394324014908364,-0.01579424754365044,1.0,-0.019138419626689905,0.11088247120263652,0.18249982658911093,0.11783839148758243,-0.038841697913069635,0.06235414134123581,-0.0076857483604261916,0.011210163534122321,0.14371274664814604,0.10176807820161284,-0.08536421327803516,-0.0035498740851262443,-0.04494471305050075,0.06721954567413264,0.014070187911944287,0.08239616970853199,0.22068987043166025,0.005610059231249462,0.05662645116545111,0.16505732873628218,0.15941839152130974,0.08858037087603027,0.08136826367525488,0.08985754712835044,0.014136073927433674,0.024175663253577968,-0.07144910104089564,-0.04765906078361054,-0.07017555249851688,-0.07014441629393936,-0.06343937542504735,-0.0735590892442144,-0.08097156586594935,0.05735602013051691,0.1243025379943944,0.10107228218843992,-0.12901980865184662,-0.08474876010881668,-0.047884665177516654,-0.021338535557187243,0.003049501796340667,-0.042716924441740974,0.009695527308300256,-0.06698513498549485,0.08905721556397427,-0.05698277832547266,-0.0542149005985571,-0.08339579668871397,-4.964848756789521e-05,-0.04600114976544378,-0.1658485562280364,-0.18217790670430137,-0.08544689524318265,-0.13623021970149424,-0.11045172697903519,-0.12557588755418603,-0.11200328615959657,-0.07518251197612323,-0.04501106189541795,-0.021341610176429833,-0.059685875658057365,-0.04205000247153803,0.012120764120335307,-0.021411289284288475,-0.07028315635450583,0.006071353352718369,-0.1075854348247236,-0.09697637101580105,-0.02456725532000392,-0.06326404468792858,-0.050854190856902334,-0.15849494482522195,-0.09027012732807778,-0.0695613007339592,-0.023016291437709755,-0.05452039167954911,-0.0307445824417851,-0.10177151999329138,-0.167451513009893,-0.1814762771698351,-0.1459812728625718,0.00018103147383733065,0.044782686174390705,0.11115526301995704,0.016233497081737124,0.05785428496377675,0.056734656462244015,0.004459723835815402,0.07068696095300472,0.07881624077588488,0.005493144787943181,0.04977264221321334,-0.12846661036334467,-0.11170855130154012,-0.11211795469003748,-0.09254442773266196,-0.12685552058459051,-0.08890408031020038,-0.05088772156341343,-0.1262306075105832,-0.09616544638716792,-0.04918347584533388,-0.0011956009231529829,-0.09797461291408527,-0.11979466415488817,-0.08219504347779874,-0.03928041155581168,0.00211482011521147,-0.03854555182268507,-0.05725136520487168,-0.07528709130757048,-0.06469955180432949,-0.01966354603691113,0.02094152725221121,0.02095731417941788,-0.08481932844924447,-0.01449911655356548,-0.022123366018882533,-0.046091840224831496,-0.02905691873155459,0.021261618371327413,0.022699696538020866,0.007869343053335373,-0.00414940869234491,0.009163241730410764,-0.004394593272060499,-0.017366483123963557,0.022387839128197043,0.006510958989075398,0.010472790954613512,0.022993145846853764,-0.04085300273188542,0.06833618569158022,-0.046908035594257186,-0.03269932195896245,-0.08167516568626286,-0.10292108653607447,-0.025700654724524905,-0.04983374124177551,0.039951379552959694,0.010471333555593173,-0.08396620921444455,-0.03658615599264461,0.01526666757899387,-0.046537224803978774,-0.03327657594941701,-0.057074263865088445,-0.10041347117923412,-0.050897811196944816,-0.03254947327143978,-0.0511694082401527,-0.055033034968910065,-0.0560091700532905,0.027285050680238766,0.022114631443582073,-0.04615291522730079,0.007465969530773672,-0.05115760261173616,-0.024799285474597064,-0.06034622535667205,-0.09213242500291027,0.04143263039248226,-0.0287228828649287,0.011084865319565783,-0.05705433861187885,0.038545190380484755,-0.027083720465934245 +Acetylcholine,-0.029490780732806282,0.0021249946145879923,0.025857838671363462,-0.04628836993521869,-0.072528350112148,0.09106778605424391,0.06665059855353178,-0.042211053186459076,0.086992654309561,-0.07172977703952076,-0.0723587160607633,-0.0008210816430773999,0.014971213484486054,0.07193993434549333,0.031354424048318875,-0.06012319320574626,0.07264740658421766,0.020113663717313823,-0.030731241032981402,0.05381839700366687,-0.027276709032429236,-0.03747953638443524,-0.02064481388492472,0.07947450763211701,0.0035513015654605176,-0.09455942488773707,0.018318766232620944,0.02174447630205833,0.019302110440838852,-0.09172593438814466,-0.0949013689400957,-0.019189099015794304,0.005584490035501349,0.043600793630213866,0.106641930734723,0.0461174115679337,0.003218914526912438,0.006188912090348162,-0.0558820564854088,-0.0681571164077598,-0.12555716697169214,-0.02932642841151979,0.0768976408052337,-0.0177983150043192,-0.08427701446544392,-0.07138572953392275,0.0224920723697656,-0.07021622967447831,-0.0054894465738981,0.005684191433907978,0.03864741328133267,-0.05444058990905079,0.025839743204472642,0.02918397978819661,0.07960615134410161,0.04495956013073596,0.06682656686459888,-0.015305265874149572,0.08714147594889782,0.02757099076369383,0.07270002530289132,0.05610836765280777,-0.038884334007528804,0.032487364934073296,0.05610099925465471,0.023810581106371256,0.04388656151312872,-0.07256128917016696,-0.0019565318655348574,-0.00573471559709398,0.03365748310885592,-0.03357947048865606,-0.039945598177149044,-0.012266711243218471,-0.019953553750698166,-0.019473627451562295,0.008257810395135172,0.008204985558473312,0.004145536258856169,-0.011387526162744056,0.021755054674527412,0.03392686572313125,-0.0031443711638119752,0.05226854601473539,0.07174036774785286,-0.017680718974558245,-0.013960590689430903,-0.07546575353217837,-0.06967325023761675,-0.07114717489221471,-0.022265243299864186,-0.0774121990923632,-0.035676653102878264,-0.02028395534496237,-0.049187079631491014,0.06823192899506991,0.007872890945072018,0.027402442517329307,0.0590949223853287,-0.019138419626689905,1.0,-0.0028380022879542425,-0.07533179231602914,-0.06881012582348056,0.023648583100669404,0.020190161440958317,0.1392067979531538,-0.020391507940811165,-0.04044229919613317,0.02502790379090703,-0.02565687874861362,0.040201447782225196,0.1048724918346998,-0.19584760533073936,-0.0456934994482189,-0.047347165083560835,0.026066220779473348,0.10028090610266518,-0.008213940626368186,0.020152462251718656,0.021302007392435655,-0.06121910602413742,-0.012167570749782407,0.0660146058383082,-0.05358857284117395,0.004771655244116068,0.024016384792765667,0.08073660321687155,0.09443234863924256,0.13216558833396763,0.1126316804484629,0.045876615114106255,0.06737852094608056,0.08005504352451656,0.00037116568358189943,0.024330304326664144,0.10398212169005466,-0.030519386095749678,-0.02425151728745099,0.01696865124514977,-0.10359928277652057,-0.03874816992239415,-0.10512641997933499,-0.02783971929594326,0.034418064949726795,0.04472890436709421,0.04757624853600421,-0.049411877159354384,0.06011074656548286,0.025811796722122027,-0.034011393710782,0.01685666327539763,-0.00239708975998495,-0.061701052373156956,-0.11063291485846839,-0.06097797168284402,0.0325210326477194,0.03620810477858335,0.06992075805270875,-0.03708589639496188,-0.05525335313648786,-0.04073960064511625,0.059583978121980095,0.06489268633057765,0.0548423178049554,-0.07935697706185069,0.1363989901110994,-0.0699221021333181,-0.07202105494967431,-0.05357737745977498,-0.038621178416326916,0.033119747405182406,0.028804089805583133,0.01086613904701231,-0.07226964586966338,-0.13182086800251963,-0.10444781597547691,0.1317302992655938,-0.04809278517377852,-0.08821770219384813,-0.05353292953628584,-0.0905460709275254,-0.13947735550507076,-0.12107020000362044,-0.08696531219751588,-0.08376958618068374,-0.15418454932155118,-0.14397372492366386,-0.0984320571626671,-0.0837425821512187,-0.11232610371611672,-0.150525513178625,0.010870548912143457,-0.02668180520376984,-0.03872429156331874,-0.06129476100357815,-0.024396570828965135,-0.061386330257461263,-0.03380102482823335,-0.04084140635325836,-0.06454870946508406,-0.06281735289427356,-0.041439018224555375,0.02771037020809947,-0.013878335874160668,-0.056171373661185575,-0.06326869805464645,-0.07313064789584492,0.03004352927187385,0.04594884785660254,-0.011177990785834353,0.030006425280794585,-0.025135155658348105,-0.054666558302694596,-0.08412950358620364,0.1590548604024846,0.08091663781464156,0.05762062064586847,0.07818162401961623,0.045737686857618726,-0.0023818650230974054,-0.046588444093878835,0.08764944059287214,0.08902642473575846,0.08637806615368102,0.07301634618105572,-0.05043176157662063,-0.0688001889199099,-0.02683143226920634,-0.041342423642887975,-0.05740155395303273,0.011063815473103747,-0.02970917065291739,-0.03668420920671489,0.018653127001839458,0.009983138560133619,0.02332290242158981,0.03593774400069015,0.017903505408799664,-0.02553625358374463,-0.014487582237362961,-0.0006081085684044615,-0.00542912759689936,-0.11287559893191174,-0.021744072094750443,-0.02234034960438073,-0.06151132749634249,-0.059706790296282765,-0.016701006152121924,0.029074446046414067,-0.015341624032330114,0.01168891897204836,0.002035142120315078,0.03394244090923667,0.0320433870916263,-0.027042586390221317,-0.0439917509556588,0.013341247813945016,-0.029832858379374057,-0.05173202600938818,-0.05810164362067036,-0.0037513089958859315,-0.05695645105551745,-0.04542195828381532,-0.04217376502813228,-0.05042749215563019,-0.02743272605977525 +Creatine,-0.09590644402812847,0.2422534730151017,-0.04009154582271098,-0.23753766427700201,0.30554600588015274,-0.09486185279441822,-0.23878097404385193,0.2563939801749807,-0.06117900965482006,0.3040326692998042,0.2698123835848413,-0.10064321129873256,-0.026014814371942314,-0.1178600376939877,-0.21659035967541077,0.13891609074533331,0.144149109070429,0.2652537942990936,0.12786393684864544,0.2147150837647403,0.0902236996724438,0.26249986380347096,0.254535984562122,-0.021469938475499207,-0.09177743965256972,0.05243610967994558,-0.2384779834727966,-0.19916673268162452,-0.08662110308509433,0.22661480264506614,0.04499896715889707,0.2248623132383926,0.2639241098145256,0.21930730447627433,-0.4177836086269728,0.08461282014112356,0.1317697566278226,0.21854045352264356,0.1796913384765918,0.1653295705142494,-0.04742807662148069,-0.16225564587615335,-0.08207263885196663,0.25524071378051344,0.15191375505844948,0.1578543361078601,-0.046606008492414114,0.25807439216699696,0.04215201034618172,0.005455271148884041,0.0561801478313808,0.6595931028948058,-0.3114971203999547,0.007226237366316645,-0.3310737046488003,0.025508411603681832,0.1140126454779181,0.014476832163404625,0.14513705749691072,0.2920882822555654,-0.017433725956005598,0.11408910164920173,0.24228296848153505,0.1498328731822152,0.07203686452172783,0.1604699155428457,0.0535321800733743,0.20919021399280657,0.20927998539949785,0.1297344522134598,0.10192986006432567,0.2769001768881132,0.27051121298260994,0.21119010328951687,0.2451843694467115,0.17282402665458882,0.36365355365583096,0.14229585803218942,0.12965904035819628,0.17780917048412032,0.23829446976658214,-0.24632485590196315,-0.14109631743717532,0.1889489499230884,-0.22462264107703042,0.2820116739823479,0.08784021909282823,0.3411867550070906,0.3162420742019094,0.27131122992034484,0.0065232684820078065,0.2896394581698546,0.10842268786780235,0.2618261570573038,0.018283269403720756,0.2541077534834729,0.09085515092000486,0.25444768003836615,-0.18233200736513774,0.11088247120263652,-0.0028380022879542425,1.0,0.5187680124066424,0.09726118751350454,-0.3122379860264442,0.015527455306603093,-0.03882208932612454,-0.08536325200126282,0.16800525332991806,0.06635554974153582,0.029033178090899357,-0.11618787564604952,-0.2752495064535605,-0.11489060090070355,0.22016987460660664,0.09348146995431943,0.41993501340453104,0.13201197535779724,0.17259714607921953,0.41655546754289646,0.3822225768819757,0.3002154966862377,0.37791519675669893,0.10655356342169316,0.14522935786873314,0.16359291163861783,-0.18116703718509716,-0.060848402330548924,-0.058157601657356874,-0.11045183985635375,-0.13767981115122072,-0.10026929299629093,-0.30176701849597504,0.08858408893438072,0.3241027013725471,0.16635540871094384,-0.17868996964307735,-0.06830688768423814,-0.03422334515497571,-0.22235443032361232,0.08237889545102861,-0.15420851470936114,-0.006843276815545537,-0.1951971709850104,-0.020647705985092052,-0.07923430085767252,-0.09991010480777504,0.02613060656873046,-0.18683317684550793,-0.18176394385615088,0.24302939760463058,0.09710015721773677,-0.12555979331874487,-0.018745491134084483,0.05006923539734555,0.1298261483082078,-0.14683878989131155,-0.21901787642658965,-0.31928192105277237,-0.2509434309516363,-0.01251538410137315,-0.12639174761155064,-0.3063609238136616,-0.36393908820266646,-0.3562824333463165,-0.06487744525289937,-0.35353391613553614,0.00836104556512206,0.1917669730695282,-0.18058505916266224,-0.1800562062526369,-0.0948418428986644,-0.08545104922139134,-0.22142542559648246,-0.053440053307520365,-0.15456404181403655,-0.13650737347018327,-0.1015389043008108,-0.0006574391594246597,-0.08384159384369848,-0.12177710756379796,0.10415055089983186,0.1921352631936077,0.16877376978079742,0.13717668856426962,0.17499265422417967,0.21909876253036104,0.14177890055691264,0.15594834019130738,0.19476436460338248,0.10010419036030462,0.12304220418817975,-0.11008687775660694,-0.07538512448407339,-0.09178340131901687,-0.04149170774107729,0.004330198191577487,-0.026951305528575355,-0.01826461409985596,-0.033248342156345916,0.007096693722861956,-0.029454898006737132,-0.0662114482567188,-0.27516318820307883,-0.2178414435848277,-0.007735647679794588,-0.03698740036930503,-0.07787649620683515,-0.3076131020819618,-0.3139438087473911,-0.3339478770637413,-0.23396390809776457,-0.05633263552536248,-0.10636995448906011,-0.14069660447758495,-0.35140630425865516,-0.38252221091187205,-0.39451456041912353,-0.37229506608940877,-0.27798441664263485,-0.13062462439953743,-0.1321097519113498,-0.3647528440894511,-0.34336334454966266,-0.355832217582855,0.018550769185126735,0.08749535885167724,-0.012481080270814713,0.0034276686700148284,0.0009544102991841879,0.03340021661798186,0.00015050570215472588,0.016235185813753,0.05957917300355679,-0.0033455964386426462,0.036810050552446426,0.0586975405060678,0.025586618967660957,0.07064899893186678,-0.020903676735823197,0.12094701565698031,-0.0014915336356008833,0.11561491057135749,-0.08628529979290951,-0.09586680684753214,-0.06634211608503551,-0.10236470289132546,-0.07869640079113535,-0.0840795033254878,0.025952360467501785,0.07610334401402828,0.06231155929900393,-0.01795428842835574,0.10929609384874929,0.11835009030204018,-0.04487787883337854,-0.010536551428558296,-0.015959566205476748,0.03216665630885943,0.030744010873797082,-0.047902063402870794,-0.015497054582865597,-0.0032739529858620796,-0.1024376766022427,-0.04690524655323558,0.02419342949902004,0.010143947420089693 +Creatinine,0.08765865769167677,0.2074136438845399,-0.2587164783454168,-0.17244836814880898,0.4217308615590869,-0.27947002842281127,-0.0816346422144682,0.23014855235546605,-0.5760093255071064,0.34860087513213306,0.3118768133608669,-0.5436384131794978,-0.17329322045192175,-0.3475867531655526,-0.4821623821007577,0.15653115934390588,0.044502665633812916,0.21505305214296272,0.6609414379079898,-0.0459513471153133,0.2633410069328523,0.22170724765352254,0.09189811001677477,-0.4489334189997927,-0.18777863252474214,0.6546538104188255,-0.2017012342487021,-0.273265024509136,-0.05611765811771756,0.426041591757263,0.39269645373117507,0.050772470255329105,0.029052623755846524,0.19050803617532555,-0.5993806690943237,-0.0245366975270464,-0.0386027245376022,0.2586676289085555,0.650120615320127,0.5581160306564701,0.14631584234360992,0.0390760077419726,-0.5732108884375163,0.10960720101121019,0.5750229315805878,0.6065332947780585,-0.15190696207595614,0.7765562941518622,0.11885164130682797,0.5201839154427604,0.23846711939551093,0.5613082889809582,-0.2824834507430135,0.025801020657430743,-0.4507495763567701,-0.06767717476325168,0.046929215576150554,0.04494967552395398,0.13789728711440635,0.3333748206060586,0.16637949890979503,0.3022489559372157,0.6430414747004707,0.1842805522047553,-0.050993655867940337,0.13227493101933757,0.27608395519505313,0.6595904454885921,0.5569619207558077,0.5926816199033234,0.43514288335490336,0.6930486228664636,0.59128487463281,0.5782573800333216,0.5876471800092067,0.4997394604372259,0.3079980238925048,0.05185398811585211,0.5152859740702473,0.5883356373134266,0.0639853247364,-0.13378505991111186,-0.0026257192150968066,-0.06500691702298436,-0.3141877070633738,0.7787597672794242,0.1356914571555049,0.7923776471817657,0.7376098877015065,0.84774811214614,0.2750145881644653,0.8289305870888592,-0.30845990164502407,0.7803407375410538,0.16205373788028984,0.5867953579381622,0.41506476367297795,0.48968797864180635,0.02807201214072862,0.18249982658911093,-0.07533179231602914,0.5187680124066424,1.0,0.6418605420363638,-0.3695283361899669,0.4776646560458965,-0.07933725371969733,0.17036567078042086,0.5955669159170759,0.08506513700584103,0.0033309921777790385,-0.27361533983911446,-0.4087563681177601,-0.0941099902916066,0.664823372243142,0.2911771908171035,0.3592650045385318,0.008821164230745644,0.5373163976373949,0.43364921540802803,0.3348183911838993,0.3217675515754108,0.25467442944784163,-0.0040157644903643505,0.15022305509360614,0.1095308071307714,-0.1963845685575669,-0.18537402499585975,-0.2306549417565342,-0.27710541637386077,-0.23194330931476967,-0.1859260378395524,-0.46655498016550406,0.10388265376792388,0.19313623684202574,0.6614573394172547,-0.3172801653637473,-0.048913015593887665,0.13048971560951195,-0.16099780998435587,0.3070533180515134,0.03593578512726011,0.2261118039474314,-0.09426658713519975,0.33176244558643375,-0.27531219802366497,-0.30224391351687135,-0.16412585838041016,-0.32782074207800205,-0.21783387152723802,-0.03592282958422474,-0.3204534320645223,-0.40325746663904927,-0.29506786357720505,-0.13887138413695532,-0.22838990686320593,-0.5003487303489026,-0.3922672508569266,-0.4289415831098929,-0.37074770601733614,-0.3320958011041773,-0.3841474160886652,-0.368205748128729,-0.3902061427372683,-0.4761847055579615,-0.24141698537663672,-0.4348780154138911,-0.07667151789057915,0.08978767836295512,-0.3391352375620166,-0.3402023016188908,-0.2898800427332541,-0.2519909840398986,-0.4174739444668723,-0.30702177046650214,-0.19276220754449197,-0.163205953078046,-0.37565791039655466,-0.3034527061476742,-0.32482215228796046,-0.4598041207836101,0.12775418343089504,0.47923745471274193,0.4952288406821594,0.46235439660947214,0.5480465634158163,0.4704530497556655,0.22950738804775062,0.5075329998679085,0.5908041485631267,0.36809710878881213,0.38270426208303276,-0.36533857945708575,-0.38699914429052507,-0.4068961133325982,-0.22378959711528912,-0.2930654805369414,-0.3365798318170838,-0.2847363726323148,-0.2902490364619049,-0.3087110840441378,-0.33077935284228904,-0.3171692246451926,-0.4483346979859249,-0.3989264724253553,-0.28518145808862466,-0.3577867058422606,-0.3699138139823787,-0.42524134341907033,-0.4383787649925276,-0.43894410802312483,-0.4148316841878815,-0.3103852663592664,-0.3937367372459756,-0.400518964107413,-0.4836085841786863,-0.45499554174474605,-0.4508254634584464,-0.4576692552215619,-0.46367896525528346,-0.38329336232269107,-0.4185171590807403,-0.4258954813775756,-0.40666471721137776,-0.42618135844839333,0.016111141826801186,0.12503339476926997,-0.049247884378859304,-0.06285569129821215,0.05212924852497549,0.1029981142835039,0.04875633994378626,0.16757672107062174,0.04832096900652447,-0.11481945256986385,-0.12048372727067413,-0.1070560006985791,-0.06421744700989052,-0.02765598999270609,0.08970125525863541,0.05974197518663324,-0.11595619110756769,0.003113375879064111,-0.03909072629554201,-0.00627191894817287,-0.0019868175387009277,-0.09296037716598242,-0.0011925359149175094,0.017765411977100593,0.07084564400930189,0.06767018836993603,0.14467889317761964,-0.01957863528903693,0.09017550836918094,0.12174812314138836,-0.06647171476402788,0.01839083291386957,-0.03361346863255967,0.02433374345272787,0.05661669918824708,-0.022475251697829546,0.1099131638359241,0.03586205947760892,-0.042531972767434624,5.638145301030199e-05,0.02774157467713305,0.05372915316559536 +Thyroxine,0.14012956561888718,0.02341084595882641,-0.30811741271846677,0.000922696313904,0.1837450758783029,-0.2503012347647006,0.17354446279538122,0.05202301893428225,-0.6403838042046003,0.06492508539901073,0.06123154901198353,-0.5887930186995955,-0.13216019145848906,-0.2758822586343643,-0.38860641804201446,0.06397771396358805,-0.016749219680696557,0.05227856269078738,0.6151697439514708,-0.23686530389868568,0.1889537519695374,-0.00037066144128219844,-0.13834334030254547,-0.5686027117010392,-0.16764675821344105,0.6404924054916358,-0.08937378772962998,-0.15647796642939404,0.02877587219293676,0.19740795578900186,0.42592845701351467,-0.18987336563980825,-0.2100000131092017,0.035463548164244615,-0.31560371186598807,-0.11737826961647978,-0.15568941201115022,0.11110164367143911,0.5451447763537752,0.45965031927352323,0.2348218630388534,0.21387427020644448,-0.6277233706962885,-0.12887226338027793,0.5175812533559914,0.4609708357383016,-0.18393798530678715,0.6195809106341059,0.2324800269635746,0.632170351543538,0.17180970005186555,0.2081727858642832,0.038261457720851426,0.03239611165435343,-0.17473323189695505,-0.10149690658774128,-0.029883230250578343,0.039255849408438494,-0.00580732222912673,0.11109857764463156,0.2676721233628707,0.2069685602893835,0.5028917838548642,0.10230568883375832,-0.1342968054021276,0.03580828239809195,0.27211043540604263,0.5618229868186467,0.5155432449775263,0.5460392635997376,0.364496888673527,0.5334355552910351,0.4254217186862271,0.4381578173922306,0.4082501668745939,0.3785329205215204,0.04627574563285797,-0.018304143800138978,0.49165293768356605,0.5205741809361627,-0.10948135204693014,0.051511920179210254,0.05962379917765609,-0.19443122820592684,-0.10871025624892477,0.670390432423345,0.0847836348357916,0.5908993729530926,0.5653403365104238,0.7104558752839404,0.37177942555238125,0.7331801981362404,-0.4468791342570917,0.6622019568273212,0.2000377303640604,0.4127709635706201,0.3497369312877499,0.36260598255509385,0.13473723685437963,0.11783839148758243,-0.06881012582348056,0.09726118751350454,0.6418605420363638,1.0,-0.08261875232234465,0.5323941335263737,-0.10476119038280549,0.2687205566587844,0.4550054933803254,0.09133563126373666,0.04266317371526291,-0.2579947823941467,-0.19701635687090038,-0.0433573114761401,0.5402360768951493,0.2545458234739979,0.02896111314361623,-0.0872780700800498,0.4973996869014224,0.20149818137483538,0.03648860110692295,0.11165272821697977,-0.016859889747211323,-0.1408754118642906,0.0611539963400215,-0.023594840979776707,-0.05440342319505741,-0.13007953097957922,-0.18952498767943715,-0.18330870783415532,-0.08752247254824977,-0.08650281746449025,-0.2775490506779048,0.10445247633305693,-0.05867954740880866,0.6727084737413667,-0.16812290252621215,-0.05031909567405292,0.11714863402045103,0.013505090041716072,0.17818051288520959,0.11448573700944648,0.18317444796219395,0.03164490701175547,0.3897989385726495,-0.29710927391764147,-0.3110126622162454,-0.2842601693950208,-0.1993963532842582,-0.10518807628686433,-0.20548350021468315,-0.4239298821056005,-0.3804342587795965,-0.25412491237345003,-0.1655789599844811,-0.35647099627289597,-0.4634957655012335,-0.20997888597151815,-0.21032495390960967,-0.24242489515659174,-0.38674164483003,-0.3514003494427064,-0.16971556795260073,-0.1424950900442502,-0.24242849472537054,-0.31517257355196515,-0.20764257329094704,-0.1610296911017169,-0.08362377795357007,-0.325946681447352,-0.30354599768640034,-0.259737413548012,-0.21873260733264224,-0.3123418243866984,-0.3494287656963812,-0.1892281730638536,-0.16656590988089975,-0.25320841039138303,-0.3578150482081558,-0.26638303828401333,-0.4422100158016359,0.12863869166369576,0.44445418961281663,0.4254295854103109,0.464692897028839,0.5216197561299881,0.3797769723600235,0.15284906715951685,0.5201152686572903,0.5531682209672005,0.41296033170982777,0.3753897753614866,-0.2980422381030088,-0.41204303572170886,-0.44060802463090404,-0.19513795131652506,-0.32777999870247965,-0.4132595584125143,-0.3906199167024743,-0.2670492530293766,-0.3745464911304789,-0.4122534075091167,-0.3973260202408307,-0.274697392564065,-0.25362372045627274,-0.28285941820358673,-0.40289099154513797,-0.412811563388677,-0.24471910273272363,-0.20219117666023012,-0.2510631278823891,-0.23689649430978046,-0.2790346724726453,-0.40398809751411097,-0.4066947272433888,-0.25953187381103826,-0.21352181921024185,-0.19525943745457108,-0.22213242715853426,-0.27532965731059716,-0.3195515523915457,-0.4042411913468729,-0.1765046587611886,-0.1577237043506071,-0.18685598379098745,-0.012960420082415769,0.07224846325736513,-0.05502527233126943,-0.07906140849534943,0.04873641874728105,0.0935398181742456,0.07389808806437022,0.16333222123829938,0.04294969885558675,-0.12478611382449026,-0.1479881490539203,-0.1249928275561842,-0.08016784633289875,-0.05541074166058019,0.09745010739702659,-0.015243802227804965,-0.1344312166164719,-0.07760397121637698,0.050628140352799895,0.03273017953909715,0.039232463155877355,-0.03035881921531363,0.04387779598421732,0.0607670227386394,0.07737991469137215,0.03800766680640132,0.10842134274205802,0.0027643690707284947,0.07470593233802172,0.08654838051822562,-0.06591926380065573,0.01927269849141271,-0.030429597409401588,0.003589826662944243,0.03517899516080403,-0.015385679033485181,0.13909118194989079,0.031779297350292425,0.0031332915112786738,0.0027014809963233134,-0.009607787388667266,0.04866360551566304 +Trimethylamine-N-oxide,0.016411844588151602,-0.23710420727972237,-0.04610843937689619,0.35677431320336866,-0.4196225488007697,0.1436224786821775,0.42337268691401786,-0.2869993519548351,0.09359699584816725,-0.37739749687685475,-0.36139472660569016,0.08657496184031734,0.09793661126297393,0.12989232127416528,0.31064319908654364,-0.1742130814634643,-0.15132040669556843,-0.2773647649462536,-0.21059427165728428,-0.07396698551322047,-0.1744100366861088,-0.3874193139734645,-0.28552331599734226,-0.08916002133481676,0.058803500571987605,-0.1818098622821206,0.2779393996798073,0.27551478967996035,0.0400819402202549,-0.3723321880906909,-0.16427506850991433,-0.22605787970047564,-0.3249440330078807,-0.28333567745228466,0.6660668713253503,-0.0315494003416159,-0.10699791512749515,-0.3119258291782634,-0.24625046117794908,-0.21378899105012578,0.03203882243634843,0.27013231967420326,0.06576839713826334,-0.328128640233652,-0.18924818939857896,-0.11577413235236429,-0.0748833713739582,-0.3044549075772253,0.11454443120716097,-0.020073799830344817,-0.3390402137681884,-0.3345412020585411,0.561446231494323,0.053419126948164586,0.5371645477107803,0.016552409921396387,-0.04967527051572749,0.007785803785104948,-0.1216422110765419,-0.3171260097112164,0.05563744995736423,-0.12466575319145333,-0.3330008750405692,-0.11357483814447508,-0.024163508891961987,-0.11551111139044867,-0.01642870673109144,-0.19702480817405682,-0.1791425326806957,-0.2085080341839014,-0.16149800942258302,-0.37008220279113674,-0.37390029029851973,-0.27097193451062473,-0.3350332407946688,-0.20362074572698496,-0.33519918414951466,-0.07736482911123987,-0.07947193286485531,-0.2324043774605768,-0.1075681433516864,0.41967208093400393,0.1830848533911792,0.008943978188294368,0.3832625081251863,-0.24429752604391447,-0.14331115727154864,-0.41275656648998366,-0.44703689399020247,-0.31839577351405046,-0.03934302236764203,-0.30936022353718823,0.013879741204348919,-0.2587903515189238,-0.16328961296000605,-0.3357478170736158,-0.22203834634718014,-0.10290974727548494,0.24518853951786185,-0.038841697913069635,0.023648583100669404,-0.3122379860264442,-0.3695283361899669,-0.08261875232234465,1.0,-0.07945836353353143,-0.07048242351902169,0.014767173221587463,-0.2297574734453699,-0.0025045993068021515,0.03963352640199803,0.17061855123842093,0.2911170493222673,0.0015420179594711643,-0.3718795443609658,-0.2343863209371983,-0.3311547641013159,-0.04404690984448798,-0.23307591806836622,-0.32667276251458444,-0.31335735544800253,-0.26412130987879573,-0.3553324654717302,-0.051671731491433816,-0.10322217707769397,-0.17083608089942853,0.23871496119722668,0.14233216154688835,0.14025263969540622,0.20407016174703344,0.23383049748007073,0.13172031517735625,0.48277881540859446,-0.04941235024070862,-0.30604107410523385,-0.10271604413162318,0.33523924193696925,0.019914845498584362,-0.0017626680291794171,0.2789847876443609,-0.204234940174202,0.15689379292738465,-0.06527764543917977,0.25649699497519024,0.08684950291097215,0.09956497991485078,0.09821523283649516,-0.08571336795680692,0.31953183482330066,0.24159191835336363,-0.27032743501666545,0.0029165368753508634,0.2007384426764778,0.08659666797151597,-0.08040257505122259,-0.12140331263682595,0.2730885650383141,0.3788541691595512,0.45656205623834595,0.22290928573754237,0.026401210954554492,0.17144828699156006,0.46400881657661663,0.47817072728650706,0.45872519849503574,-0.07014059543467978,0.45053571356863653,-0.10125522108921664,-0.18405637260175134,0.15061919259447562,0.24630257088525462,0.19948144886372068,0.09808191721935798,0.24660232733885248,0.028288916972266345,-0.06160940968191172,-0.06797077173117701,0.2690651490048046,0.011809822386373226,0.07633471334040315,0.16338603432043755,-0.06346022855820824,-0.24659983777624228,-0.2367953775041319,-0.1729195057260761,-0.20920535775403817,-0.30218669129765807,-0.19002561704188173,-0.15107567354509113,-0.21488394606258632,-0.1295773066544007,-0.0962989126449362,0.0786986832538216,0.04466510451642599,0.12472670975731252,-0.05240520983598099,-0.054812913847344207,-0.02737949865796796,-0.009197575773906286,-0.009446727416418653,-0.061695739572148474,-0.002215108386973092,0.05508423147779333,0.3103565565053215,0.18918436123617996,-0.005864243393130184,0.0008783467601521086,0.0751980325804148,0.3635031701271366,0.3852332574988906,0.3115187594809057,0.2381281411776048,0.036838170207153555,0.06252828611015171,0.08534231214771752,0.39911845568364535,0.3948381102560521,0.44265432105281355,0.35219399238993715,0.29589079677457675,0.08904681560585188,0.06311832783612856,0.40650227906205516,0.3390637548157975,0.42635093718210115,0.031130249670610264,-0.041223547985006694,0.044287886727028054,0.0033990724685991082,0.003675472701929817,-0.03599000746401991,0.027819028869765925,-0.08924513101295324,-0.09978048883546112,0.07997650526415077,0.08250402069136832,0.10173068025401841,0.055122433900272924,-0.05269895643658246,0.011358408201405322,-0.004564281139993643,0.06119072686740278,-0.01655745765697776,0.06641095348558469,-0.033935272424300195,0.04343069475258767,0.0828539394209525,-0.029427944802518133,-0.06160060501656734,-0.002951912281191231,-0.03519349984876887,-0.14532896461193368,-0.01294065814687157,-0.0625405136798494,-0.057730536899663155,0.007050676046478709,-0.029452690288326512,0.014565199752865458,-0.011661104092700337,-0.05014506567510336,-0.011986525427221967,0.0257408661052428,-0.018778940427015705,0.03687857714800589,0.03949298840534001,-0.04448615167956513,-0.054967109035293435 +Hexoses (HILIC pos),0.05116369208774605,-0.049025172482323714,-0.3760934532445331,0.16279820256719793,-0.014430174599426422,-0.24534105467186063,0.23937701560830468,-0.02029582877895823,-0.5807324171083694,-0.032343851403160144,-0.061110491946484206,-0.5955139886424344,-0.15526057892298803,-0.28967018901503266,-0.3379366262731483,0.16371919159340878,0.1053205352200337,0.16854498671470264,0.8546996016928374,-0.23604915691728307,0.18970779833331058,0.028220805872955536,-0.14253048990190312,-0.4880696029639424,-0.045024449476245544,0.5899753244428012,0.02589487607240083,-0.013683117687347169,-0.028243348936533876,0.15946150434335143,0.4285428999320845,-0.2279539629793906,-0.23174323894484605,-0.04131680645653196,-0.11268362366940206,0.014966474126467186,-0.21438857850709434,0.1923753223271783,0.4954595679217729,0.4337228545566843,0.31124732135100686,0.1940693198200285,-0.5636993417392346,-0.1751016794826981,0.46743823146300945,0.2874932049563604,-0.1681425334759167,0.5649331206429514,0.18860207921921193,0.5849086916705415,0.3412716282382193,0.17259302814034888,-0.003927584552206173,0.13152767525472625,-0.16510738414783563,-0.13864040940947395,-0.08438976483875847,0.0024003293117224028,0.1235535458335946,-0.04735681980370168,0.48200808596441325,0.43250255323965037,0.6169196795234944,0.07336650799128538,-0.050558557448618514,-0.26094943783845814,0.47414181802088307,0.5248140333672999,0.37564113420445555,0.754689045792865,0.6454100263803815,0.6123235707837102,0.4765350722918025,0.5773164006058422,0.4865659806849059,0.4934149151186373,-0.13136840773645825,-0.3387480920933719,0.3254804476121744,0.3638353513801907,-0.19219254696001314,0.0034966166117473842,0.023438879580231442,-0.155018281221156,-0.11657620219541696,0.49383999755813607,-0.08505165645943528,0.3799207121932614,0.39406956260943304,0.5528677383975881,0.22038969735614986,0.5359888710258186,-0.5623375592500691,0.5623781613994919,0.0173411380767832,0.587913518294709,0.5072820955133565,0.26947447295545485,0.380178539512459,0.06235414134123581,0.020190161440958317,0.015527455306603093,0.4776646560458965,0.5323941335263737,-0.07945836353353143,1.0,0.1817469968468551,0.23779832092064881,0.3914629424216775,0.06442443723420437,-0.005141908395215896,-0.22182500404797895,0.013638990723360658,-0.15605191863612344,0.583557595475834,0.29847546613193104,-0.09356034935418085,-0.06570529184321498,0.5736459404777015,0.12257084364574573,-0.10753336344177533,-0.033448035209326044,-0.14944666968687506,-0.18580365020963513,-0.021952171107921196,-0.03663931039840952,-0.06333162708572371,-0.13769792022385485,-0.17398615118498884,-0.152185614708634,-0.05534800996546828,-0.05721282172929777,-0.1667987843227621,-0.1357823057873626,-0.14186111972786924,0.500493187689406,-0.08962680216068754,0.06234590370587922,0.16328586401225542,0.1268326908864705,0.23983549252827913,0.17055115760450815,0.2057604609357906,0.10451837216489987,0.5197807913912014,-0.2065163831229216,-0.2406541074035323,-0.32502033835215915,-0.14210041420632735,0.00047054711346862765,-0.21080556853794066,-0.3722537090565498,-0.3674783926432415,-0.21383837180453769,-0.1808896556072492,-0.3636671969541254,-0.40675769226759884,-0.11718841965173318,-0.14167137586327397,-0.23675753789450182,-0.37743836025677363,-0.35470786566508006,-0.07673959594196397,-0.06747745946629402,-0.1627704056733324,-0.32994034119827587,-0.0957844740565239,-0.18908960262604727,-0.1548613684275913,-0.3064211434160817,-0.2685491634433715,-0.18938825528310266,-0.17484551318226613,-0.2963020250698678,-0.35263898331497956,-0.2252523852417215,-0.1836920968320982,-0.18585946670705691,-0.3675921763813129,-0.3071694051430093,-0.397320059577769,0.11768359003120434,0.4526828414656641,0.42976976519919124,0.46382376130539527,0.5475573086321821,0.37161153195695473,0.13548446447636547,0.4978554428534691,0.5624131280649795,0.39987421213256985,0.34634295380098445,-0.2838758785030818,-0.42060846513252426,-0.3819708995837084,-0.21349845733413986,-0.3453535457863295,-0.42286721116145304,-0.35482028093275647,-0.28422563672398726,-0.40441606010273645,-0.4154554544983629,-0.3705709838187121,-0.26611115925451556,-0.2674260613631475,-0.33210236208875626,-0.43716018235037774,-0.41952473473961094,-0.23759858000569206,-0.22495204896782325,-0.2209786307277277,-0.25439153200584946,-0.32607802613641224,-0.4339830143646444,-0.4202698236358086,-0.12966040332878967,-0.21852483142925058,-0.1637769791603611,-0.1842745216626763,-0.27893405805024274,-0.33925956794325485,-0.420681370573809,-0.1527042374303706,-0.1335268894118886,-0.163634423190761,0.04448567624209897,0.1525654733056234,-0.0198119540967882,-0.031373854458975836,0.025354177182471505,0.11532297126662192,0.13602003982991606,0.19649873524216427,0.02980120609841789,-0.15310060382323054,-0.12829022846022498,-0.08124795937201208,-0.044943498411140446,-0.023110533650229033,0.172715256850352,0.007988879200291076,-0.09725989379545417,-0.03725679159205991,0.03494753680027417,0.03627069036803935,0.0712217189581964,-0.04122979184960897,0.02016803860597132,0.02101259670822384,0.11822883954289967,0.0674102282698747,0.10124849823583534,-0.023789536617523505,0.09130243860479635,0.13160589186962657,-0.10416442604894405,-0.02223715635974939,-0.03667933613389063,0.015724026626185956,0.03943985250426331,-0.00029939817264768183,0.1682416637196581,0.08052827774985112,0.011437101699960317,-0.016406999173551193,0.09079173949527043,0.09396494345144132 +Adenosine,0.0010434149049999238,0.02331270675750366,-0.0831972015079783,0.28332884648711537,-0.015591317849870853,-0.07449119808261558,-0.011414708408639581,-0.009024094460126355,0.053070715602754205,0.058472463072502506,0.04205992931680191,-0.049773635595320796,0.025159571816109325,0.05179820142991384,-0.1008630139582754,0.10223188264515225,0.10693200154651814,0.10162614595223474,0.007366175470773733,-0.036450818305281,0.1707423051426461,0.10709458467919225,0.08988607513135032,0.12427572276941756,0.2681252897468375,0.030512573520778703,-0.005511179020487359,0.2391385923199452,0.03847430355353157,0.19390646288472865,0.00761988489746047,-0.01710601258957258,0.1976615064604998,0.08841530241152105,0.0490258575656616,0.18904071562028946,-0.02152907500314366,0.08732241077649264,-0.05407112549690565,-0.05068468113968395,-0.022260249268610414,-0.05836210845646294,0.0696252322386398,0.05249402816928223,-0.06701577928555688,-0.09732213261469057,0.14876629266103603,-0.03509125639371504,-0.15221723034857443,0.039268387900926016,0.18328495198327327,0.04094651772159138,-0.08435256989538291,0.08751136286959668,-0.0733098949707973,-0.05365055694752471,-0.001769120893757876,0.11206770545118104,-0.0025218739062276277,0.01849293510604794,0.03179371692041145,0.15490979241486227,0.0588377999112462,-0.028642835787080507,0.07842417081906027,-0.13931160881299373,0.051324990769214686,-0.05219382828662363,-0.10320918528467404,0.0965102101826763,0.18029102805961889,0.054575939519757345,0.051092702299628374,0.09393932583888957,0.06944409921847486,0.03740869507192729,-0.051133015976552974,-0.1077266338252837,-0.14191957079139603,-0.09011206018738167,-0.04392928099866714,-0.08728744068967641,0.030286219586868224,0.004564272162414606,-0.05421574659076658,-0.10080272998726796,-0.040241904124396204,-0.03670703829656242,0.033272790478421715,-0.0427189933132362,-0.019172941239472614,-0.164683993602579,-0.016750827960471743,-0.049245731130664494,0.11207812694297592,0.11366564572158762,0.06403627762108038,-0.15810766771587792,-0.037559286238145424,-0.0076857483604261916,0.1392067979531538,-0.03882208932612454,-0.07933725371969733,-0.10476119038280549,-0.07048242351902169,0.1817469968468551,1.0,-0.006841301206874599,0.046200802333878306,0.15347021787939266,-0.0057195559457629275,0.030348285146719188,0.2904777075803997,-0.14098983597688025,0.05458691200338489,0.262232431138357,-0.0504887025500924,-0.017638696822216384,0.047970236671822035,-0.029713079445848577,-0.07692861349363024,-0.0716888314383529,-0.05204474943964731,-0.07119252821059471,0.013465821869752679,-0.00540900009837662,-0.08042469775472107,0.030533524286441373,0.042450358426867625,0.06177705999043919,0.06989879105186383,0.08626884673453074,0.004781168172620747,-0.09867907159759429,0.05091457398572726,-0.08141961447135841,0.005365665003079696,0.03062358572329958,-0.005694844433407451,-0.04076841759531744,0.05315246481407335,-0.0021802663124965344,-0.009482620599315525,-0.029152050347790375,-0.028405960860378544,-0.05180101752469224,0.015429067480034385,-0.042716672789777074,-0.0835929686886294,-0.018652634475468496,0.0032937576596031672,-0.03639877732170796,-0.011084384040680993,-0.08988127576209848,0.030909094831994666,-0.007617600524970282,-0.03451120790616032,-0.03053873225740924,-0.06742069794787266,-0.01230309186969034,-0.022862229639030753,0.00022902275147588193,-0.05201087202747576,-0.0465675620966797,-0.03453219804035965,-0.0464438357018948,0.024573644986235894,0.06725041819017258,0.06213906219405995,0.008820846505586068,-0.09537660593247727,0.015397486052589296,0.015541237715714412,0.010183952206725893,0.00023390495558254715,0.02398124993679185,0.057833617282228696,-0.01217780850111777,-0.048038152138179704,-0.062378142927706125,-0.07172529417542883,-0.11763170261523775,-0.04467702418939651,-0.06161456558514306,-0.04327023500393494,-0.015475624359317328,-0.05529186244470219,-0.03286708239839325,-0.02245375684765996,-0.014336611456104075,-0.010610566095683534,-0.03506740184056928,-0.07030439834709618,-0.08041080926641203,-0.06920050736416608,-0.04329738789469978,-0.07644035936716732,-0.07328934855103045,0.0009395879035943736,-0.055082656085507366,-0.07227917518598086,-0.03624810755369771,0.008461388820498086,-0.07637465729754059,-0.0493835043041841,-0.07851335331096848,-0.06714512019786034,-0.03500424254553361,-0.11759873065731233,-0.1167330808906766,-0.06738994538756048,-0.05621107725222332,-0.09379208969993706,-0.06542083640647568,-0.05579271498258629,-0.05595363918993789,-0.0686588906749424,-0.08187567419480403,-0.027523766828368865,-0.07816394369116193,-0.10315630464482643,-0.10391488212724159,-0.07371680248542316,-0.05841340593102494,-0.05403264610275721,-0.010843568744421541,0.09040546366196302,0.017306301578291102,-0.027775788788109542,0.04538973679544273,0.007670550278397888,0.037813736640961514,0.07906127450951207,0.0651341492296704,-0.03748606348142473,-0.05805825354418298,-0.08214099394359126,-0.044139479629257836,0.04729491388424789,0.035300147507197864,-0.035386054153462236,-0.020604257841422533,-0.027494804045578206,0.05092054619454915,0.026181875400671628,0.01889030347315452,-0.019486202473257854,0.0227951391928967,0.03243344172523875,0.041259488661590106,0.02567869009616127,0.07953917677606193,0.030215057919367582,0.07635600767698454,0.05896824961842298,-0.007687518928043022,0.02006235243534166,-0.032997938381698844,-0.006107965233737167,0.009578085207774862,0.00687645480793922,0.0439550095667313,0.02599458686668589,0.04630395243019367,0.03514337678217606,0.055617087447956355,0.0815394228556072 +Thymidine,0.16093910257665717,-0.030116251000525104,-0.11271332116803157,-0.015546722977142184,-0.007531323613711022,-0.10448646147973815,0.046369528966965536,-0.02074419589879484,-0.22739830939981173,-0.03976810389038309,-0.06579155236282153,-0.1925354651394286,-0.0019799400150673644,0.028418410847234527,-0.10270772884429161,-0.0656898124603751,-0.08677785933673994,-0.062286394559215794,0.267711953305273,-0.16609614752349056,0.013438606374859432,-0.10592289487750153,-0.15578367642622878,-0.20246726357121309,0.09930327091812426,0.21486265782126393,0.0028525356986756735,0.021169571006593363,0.07779100449554757,0.022425365927190646,0.23902928324008452,-0.14079054499639254,-0.2002554547098199,-0.07340886296628038,-0.0467284097205977,-0.04369294404810266,-0.09756890916281057,-0.06120321005442703,0.1754803457117139,0.1527800208106378,0.16932871274778577,0.3399050507408573,-0.2374844226590621,-0.13112961839378032,0.2028069072194656,0.13124705395090513,0.08170812418415942,0.2632895237210608,0.06708191862575831,0.24879169154544178,-0.00831480850591195,-0.05620417158129947,0.044206663519323806,-0.0667733480738508,-0.016214729463345536,-0.01760393383312658,0.030063123088260903,-0.03704006272348312,0.0757724815622759,0.1370873672561106,0.1463722427406054,0.17623284833596617,0.20682195463466602,0.07966200619055275,-0.024318071867500856,-0.06127370947791618,0.10346025411048065,0.2447951694812322,0.1229331435753271,0.27062147201673303,0.21034328305716768,0.1888548134719758,0.12093936568765827,0.2166310589092447,0.18088272449885676,0.16852360303563718,0.04101713710740656,-0.05416892525464265,0.18242850087097753,0.22828357586973552,-0.07985646438425889,0.11896529124284633,0.0932965714664948,-0.06860020626399624,-0.018606421334329368,0.23386632812471259,-0.0471486606160991,0.2170353113478824,0.20906038573699526,0.26625702374441407,0.07431383798752537,0.2677576000012989,-0.2220747498973373,0.2685085204199544,0.09386056315761467,0.1674546987599939,0.14615406584974946,0.1805563682986476,0.06315709881878535,0.011210163534122321,-0.020391507940811165,-0.08536325200126282,0.17036567078042086,0.2687205566587844,0.014767173221587463,0.23779832092064881,-0.006841301206874599,1.0,0.2100562506644429,0.26838388728121537,0.28588395858401916,-0.05782586443018422,-0.10782334578856939,0.1509153947659839,0.20185739484832474,0.0608181590414761,0.04711101462521776,-0.06451220823357665,0.20235224327004447,0.08482561003624062,0.0333114071549577,0.09848809551407574,-0.05659535955193996,-0.013793929539756587,0.022999194030813314,-0.027281352630118893,-0.041943136586480474,-0.09638248201264825,-0.11891971630608629,-0.11408154176286527,-0.0914072478852158,-0.06055815644933986,-0.10922286233156397,0.08355226622754977,-0.06633944254846909,0.2627980622512433,-0.0816840692202212,-0.012127817214331886,0.019049493910372684,0.01604508818536766,0.046363936745046644,0.01645426018404555,0.04111666400227284,0.00908018030373437,0.1679162789136432,-0.1279292801167058,-0.13946324696782997,-0.1350217159212323,-0.0007781832309316461,-0.014124355945419631,-0.16409182949573212,-0.23242396390676795,-0.1985725977306261,-0.10047178357843721,-0.11472230013046336,-0.2637419790302592,-0.23107970995965038,-0.09146225261807994,-0.09180773138089517,-0.14514777103123583,-0.26565471511851013,-0.17763529400378344,-0.033387225302117324,-0.04608596975718608,-0.1062318736815761,-0.16919779026622248,-0.08695960750207646,-0.1540952345016644,-0.1483480453749753,-0.16646323616605935,-0.08028183940245998,-0.06275405898513252,-0.03933698548671869,-0.18987710155871496,-0.22647636838066681,-0.12399620377700074,-0.06635087271832874,-0.05951897479411714,-0.18053590834886174,-0.14565443906668857,-0.2056577793858206,0.06310906220509468,0.17267265311178723,0.1509998633910259,0.17016446178948452,0.21280546536026762,0.1445137373106323,0.03347413738354864,0.20714749609283797,0.2142669285192815,0.18620264006804457,0.11948964398697612,-0.1344142419762798,-0.18465390904834753,-0.16065995745791278,-0.10566743570957217,-0.20247150327071775,-0.20077373197779622,-0.16604259061442886,-0.16408593482886788,-0.20007459721492202,-0.19964375411391133,-0.15258715249903507,-0.14811815902356346,-0.12978239561125562,-0.19307406112655784,-0.20943316573972418,-0.19538167374200546,-0.11638992122662055,-0.08128984165745086,-0.07346367389334979,-0.1298268132477456,-0.1767501466379387,-0.20934420275786286,-0.17195267818601412,-0.0676476838187556,-0.06605728879766579,-0.04998716050786851,-0.09403370989756621,-0.10441358530380199,-0.174941304749659,-0.1913913917895117,-0.049043296542055685,-0.05330284759857129,-0.07564710054000133,0.03304659554780738,0.05045063920680449,-0.010999170103399935,-0.09501419094374478,0.052836530554205785,0.087992854133714,0.09843221730751585,0.11601951060422114,0.08552213159997979,-0.11568208622099108,-0.1194572087984128,-0.11631247805290111,-0.0768958757260935,-0.0039565204330600364,0.07722484415914506,-0.09842913257929836,-0.052453317765092274,-0.07327954156166044,0.04693505820510424,-0.016135618643674087,0.03884164809098864,0.00944560150427071,0.023880698090282957,-0.02105107281103467,0.03192825214057661,0.08236342557439373,0.01092057879162228,-0.07729000659577154,-0.0031053539421970343,0.05994538127655956,-0.03340961190726343,0.01242052837693322,-0.07316778376435923,-0.05047028375098242,0.004574861347829908,-0.03653002830882421,0.06037609768935101,0.038628794653860266,0.04862247300815805,0.0308157855419232,0.05981051467291525,0.07444700821615348 +Xanthosine,0.037791373590915445,0.11996511485509549,-0.14586997623571465,0.0012193681606650932,0.2666191560480751,-0.2523603236632156,-0.10178849048856563,0.16435411039790684,-0.34945974332352175,0.20653249096856552,0.16630479884985844,-0.3245136471162445,-0.17188247532228065,-0.1837284969986201,-0.3564746096653802,0.17295861306291963,0.00132149694149201,0.17155758117433173,0.48918083794152495,-0.09626969971297292,0.33545378815876187,0.08897773218560082,-0.03524378868583574,-0.23610123902855376,-0.15588060731637227,0.5234911210862064,-0.03694858136151857,-0.00711608012395263,-0.05370049953871619,0.487668833463568,0.31563233322607603,-0.014955027210449398,0.019317509554696095,0.055784474925154384,-0.42695064067496735,-0.005147976372353297,-0.034391046669694975,0.299576494623807,0.47879374679134784,0.4417595765750077,0.0666485743564013,0.10833800340018244,-0.32433786632273737,0.02417448295081584,0.5049040254096903,0.4756459684991923,0.05918805243862641,0.6739278914648319,0.09269894132806292,0.48365115628711536,0.24321656902120628,0.18972624477763397,-0.17040728683136852,0.021681836537328372,-0.31532446835014877,-0.05540357542092408,-0.04369449934357173,0.11796100323813424,0.11539256298916445,0.27309980661083283,0.1625038648105456,0.2881438094741679,0.4983668960073006,0.04766167546921013,-0.07407987676165677,0.00045326139751792455,0.12574952306361414,0.44090280863847625,0.30348153966943564,0.509531683754069,0.44059361318565854,0.5303275109677963,0.4222759394394644,0.49135194585309583,0.4545021101649778,0.42242210270457853,0.2515125554196671,-0.012930577631121412,0.3984353311296438,0.5388452668416951,0.018724269941129315,-0.08532639779262544,0.06301725439271341,-0.034563410478728344,-0.21299256493094898,0.5983856120381762,-0.014025577739746992,0.6505991493812899,0.6122133947341297,0.7104887315708429,0.2111467252923998,0.5873034448627119,-0.2585981168844578,0.5971301295166285,0.12393046529049224,0.453290792630507,0.4273109141240779,0.37946837915248727,0.1259490105756353,0.14371274664814604,-0.04044229919613317,0.16800525332991806,0.5955669159170759,0.4550054933803254,-0.2297574734453699,0.3914629424216775,0.046200802333878306,0.2100562506644429,1.0,0.027630049034182622,0.002400952847662414,-0.19879748112345652,-0.2746486056603281,-0.0946622112006092,0.4967603164174935,0.21125657348198887,0.23619545453489774,-0.0496172408751868,0.42440497405601774,0.24077776238089646,0.19277064602986596,0.16701560856443673,0.11971392241936021,0.03146521722912032,0.07040104310132655,0.1552422971422253,-0.061295764427805974,-0.15602753647419906,-0.17408043540623547,-0.15403956746809797,-0.11684186684202504,-0.10345352872234359,-0.3668023252405979,0.04700232195820588,0.14742968450833682,0.5087871427319033,-0.287849402546789,-0.06452040617942134,0.06783452714374424,-0.2071173288001234,0.22313145348448718,0.02598829904673473,0.12720879995108966,-0.07392060091714575,0.14356300413415016,-0.2561900528958582,-0.25555594423241235,-0.16129642139290393,-0.25898307424538713,-0.19811511513087685,-0.11765117661400457,-0.37685220175061407,-0.37398816902782267,-0.299772337382456,-0.19743097064387885,-0.31938416659818897,-0.5037765682457894,-0.281370043569025,-0.3292850298732684,-0.2754238473660107,-0.3450916072634803,-0.32465829081921405,-0.24850315662275932,-0.2503801834212406,-0.3503785246960713,-0.20022280391313257,-0.2903748171420567,-0.08950295120642293,-0.028139276930518296,-0.2881735458817271,-0.2662421894364537,-0.25922125597467816,-0.2108360072806294,-0.3031379351860204,-0.2772142336449101,-0.1512312906752846,-0.08048135824430454,-0.3296408123864872,-0.31272458364857597,-0.29006219199137095,-0.3799327952932752,-0.0325142259328206,0.27096127941468084,0.2887212380061639,0.2507890089648198,0.3461173207785665,0.2828231180425909,0.0764698571290961,0.31165967177176473,0.38167065701573766,0.20424363337797963,0.2278802541920819,-0.3058529355373996,-0.34035151607146197,-0.3850049855946117,-0.18675963565784315,-0.2891650383052484,-0.31467958666519397,-0.27306706912562956,-0.2751852364121117,-0.30306337051178456,-0.31686094576327817,-0.27497774085496557,-0.32760609169552024,-0.30618184573098617,-0.28772920052246415,-0.33518116809680687,-0.30746845058890165,-0.2636382005969833,-0.3100455142278477,-0.3146424098808373,-0.2947513780420955,-0.26539744472749366,-0.3058558216931927,-0.29795832260085237,-0.34097938551837736,-0.2779278827093983,-0.2865234436337349,-0.27879863262439647,-0.30420777146468736,-0.2885811404978862,-0.30545515186664174,-0.22670213218578686,-0.23384109359660232,-0.23753014676145767,0.0396197604035023,0.08954105565791899,-0.0008551552556226779,-0.06613650465890407,0.12067158484082886,0.13451848296702168,0.022178203733151245,0.15912115364406684,0.05201095349555982,-0.05750625691218786,-0.095932521406358,-0.14252448743359344,-0.08333381910619804,-0.009840399742577836,0.11500191212279291,-0.00700083725931263,-0.09385709900895411,-0.0600777559191307,-0.060027435955230364,-0.0029028666212674806,-0.06912441467135094,-0.12380238686345861,0.025374150756783908,0.05680753473753245,-0.02571608739710995,-0.05177826722786702,0.12819407856196996,0.063623495089042,0.0878161234309948,0.049013937129922906,0.04338045649562228,0.11891910399548959,-0.058623568553938125,-0.08766797814440766,-0.04391107311462455,0.0006594412542989305,0.05950212503248562,0.029325982862950586,-0.04792630691436401,0.025849068259063804,0.08271222683659335,0.10489587195279121 +2-deoxyadenosine,0.05047895184833134,0.19611374356256642,-0.0198282322917494,-0.011607752980689752,0.08021411375348451,-0.018526559680597333,-0.03727425887275671,0.06265796149680092,-0.034022726045274426,0.059941949444197264,0.04826607754949976,-0.07944255047879936,0.11478492118262389,-0.08181729424132987,-0.03247838453363455,0.1407002834791354,0.04009128372257353,0.05229293145316409,0.05280641385190339,0.08132877059852361,-0.02709790456886702,0.06423853241973738,0.07233461767674448,-0.0055485523526501174,0.05915660877379754,0.020962946717495032,-0.08687591386719812,-0.09954434945453051,0.05613948026932297,0.03518269088826733,0.04651240607020131,0.08358234205753079,0.06616479811915672,0.07519138787815417,-0.015199946294731289,-0.004112961486910898,0.11134751965320443,0.10680864698232409,0.007907866335801107,0.014517081819799658,-0.02853375012339316,0.09371484089210717,-0.06486553913721718,0.014558349468540217,-0.01948744363752129,0.00633566090292879,-0.09627659584315722,0.06846171550322395,0.021254439863343747,0.06238521462686794,-0.0035994803670105456,0.08534895722333719,0.006901249639349547,0.061201568848813066,-0.023745311665443948,-0.011071929567123948,0.04323125685207864,0.015907836735280897,0.007650647226521548,0.12507294939130684,-0.005818243653065309,-0.04735078287486713,0.012679117790265357,0.12251779836823785,0.011902907040356566,0.08355292123718738,0.06409028912731789,-0.004963991739888788,0.06014971702580802,-0.00980585116469642,-0.02866944695400255,-0.01829147965398812,-0.018204962651705698,-0.014119785478091906,-0.02740677456670958,-0.024747972765295757,0.12274091168055008,0.07717845104375622,0.029936986344055585,0.04441005903704058,0.10534571132502078,0.030064316937143586,0.05876864906811338,0.1321016587341697,0.05459679711552196,0.04198730237953029,0.12729094120932696,0.03873405177163884,0.043142244162581174,0.06315502041303953,0.04043788279151956,0.08794397524871922,0.0017924070087118077,0.07031308282547875,0.07577151646468192,0.04420554208325489,0.03380174515195708,0.048715832306282056,-0.09858150229623246,0.10176807820161284,0.02502790379090703,0.06635554974153582,0.08506513700584103,0.09133563126373666,-0.0025045993068021515,0.06442443723420437,0.15347021787939266,0.26838388728121537,0.027630049034182622,1.0,0.26074317702408056,0.07556853063814713,0.033570878167241205,0.02422753940155343,0.05863971899303984,-0.12549894019798238,0.037637489472503845,0.19757569891735405,0.05222600807432988,0.05732937640292276,0.02014869622436572,0.06687331783099464,8.410674948913998e-05,0.12818590060653345,0.058951789186106905,-0.011412753846921836,-0.05393253949245812,-0.01556098460981127,-0.07498563008654052,-0.10630910962882183,-0.09759559005965665,-0.12287304069652077,-0.017949791057682535,0.1650126305483816,0.09937978799824235,0.06034258131259191,-0.003528502367258724,-0.03094975173169063,-0.03710581673639049,-0.04109494208785476,-0.03888714132909691,-0.07828322549656636,-0.05626999336500875,-0.07266149483716151,0.06894600986575987,0.022803467471149086,0.030955468689403506,-0.019113423311885834,-0.020545843328959517,-0.04313882109858846,0.013915985859498757,-0.002859766937627142,-0.07585288371430465,-0.009550606951666275,0.005557129486199253,-0.020973690320966683,-0.05252878373934186,-0.08532003764291275,-0.08291056545923865,-0.0767822011654265,-0.06137066964533647,-0.08787205078545697,-0.09283031453057249,-0.10783771891681997,-0.09104045525958733,-0.09489682557645054,-0.05927512863630532,-0.037117802602517215,-0.06041514377147015,-0.09624383691033012,-0.057569839466099004,-0.06358548184296768,-0.07924018613258953,-0.08250277453323844,-0.05948925191141207,-0.20163202373657368,-0.135767550533556,-0.0006130277383214731,0.04473172403271875,0.004360847499286662,-0.00976728710136755,0.005128288245005764,0.05363427809110319,0.042098574291042294,0.05521437731020396,0.08233693405373974,0.01323397478191049,-0.024443801539842172,0.02766757052184227,0.06516442350246246,0.01794631632770008,-0.035997414907989404,0.018173994015249054,-0.026186492559001476,-0.05033843502446507,-0.0025707373679348896,-0.0076513768777672604,-0.037978164074135186,-0.023786962288313528,-0.01016894516669136,-0.04182318288013016,-0.045920175894451215,-0.02660131293289029,-0.052354891347341,-0.03664704246467356,-0.04078624901187255,-0.08290851638210216,-0.07367928745114637,-0.09196008688349538,-0.0691785696406181,-0.0782293195790813,-0.08427082662378538,-0.08388873040205636,-0.0941698528241641,-0.09387658899336837,-0.03670815885395438,-0.12247616878965452,-0.09892977064055844,-0.0903233908311751,-0.08685481645444101,-0.09385347099893182,-0.10252205751397966,-0.11114164995054576,-0.11690419390069624,-0.09636119121983625,-0.0022902414074801687,-0.09427555566067773,-0.048764574732777705,-0.0769500160872049,0.08381589194775546,-0.017500460434555255,-0.07305902646130656,-0.06626698538626646,0.17192954179566264,0.07037419457977093,0.008030297144600908,-0.03688704889706314,-0.09456511620797099,0.11586997388075633,-0.04873857476586038,-0.01917769758013911,0.07417405514161717,0.031928831358065735,0.11728627649269995,0.07252492476996669,0.07201385638699188,-0.0017374396179046059,-0.0029675701588926045,0.06805990635068629,0.0481976578222178,-0.014769901082139186,-0.0586608122327135,0.011848980070699348,0.005504694302296743,-0.05810754871517844,-0.002912021691019749,-0.02205512256018827,0.10796602854415656,0.09647254147103615,0.0453464882105197,-0.021924394480574285,0.03312924804452052,-0.019618618919296508,-0.032814418436253386,-0.05629220077617655,-0.07577781542469063,-0.026491581553439558 +2-deoxycytidine,0.12768803598067838,-0.08289239843079797,0.05175067682986057,-0.03161859552741261,-0.0005287149219469876,0.09642806513630597,-0.037032840411800834,0.04385878136397694,0.09007908632945516,-0.016450387272440824,0.0074219446165618985,0.042378195805661364,0.1811300504492767,0.34952088374567397,0.07032673900579417,-0.10785234861152238,-0.09354740520595962,-0.09878093804452082,0.007894505071039828,0.05783939562766513,-0.0771757961415828,-0.06698932252551679,-0.04108440818822074,0.04004335762085691,0.12204375602997722,0.0022195395717653594,0.030900588253861553,0.08613091918226397,0.04116392737124928,-0.030696106053381775,-0.045050289380439604,0.02862073317307364,-0.09325966782775612,-0.1215603976286425,0.030621055881108826,0.11305466765777757,-0.07023421213061036,-0.059540644290294126,-0.030569270230961308,0.020250753444261253,-0.06810240073989206,0.08234122244375255,0.06200086482528676,-0.07432108892819554,-0.038531977424706446,-0.018230332027606082,0.062085396258895226,0.015030383232290648,-0.016639788614446704,0.016111788321273912,-0.015447996645703517,-0.008661557084582366,0.026845230907197027,-0.009230810827484974,0.033285700631106974,0.044288945737408394,-0.033080146409264044,-0.0472484607169363,0.04663333780428289,0.07912869879147129,0.09139997558960476,0.0765966888154137,0.03046505526363155,0.15637362481919567,0.1735200563073791,0.03524208109795984,0.13087172297539176,0.024538027960953557,-0.02054319337108307,0.02360248603257966,0.04255393697530611,0.03059404915709093,0.020445996607163723,0.03586482052011823,0.03195482903779194,0.04806077702716868,0.07348986547860742,0.028153478797899367,0.050452762656742346,0.06722593806487076,0.017090004322965723,0.03797656666259568,0.06342088377528363,-0.037976280516448774,-0.007053543702413916,0.011338232683746487,-0.003029290442180718,0.03258733167250464,0.013835832246042514,0.04207688359505495,0.02078123756142531,0.03027012142651867,0.09042912442513146,-0.009745869522410123,0.01220088230142565,0.01490478228698901,0.0631695892356017,-0.021077882184768658,0.006943816438679231,-0.08536421327803516,-0.02565687874861362,0.029033178090899357,0.0033309921777790385,0.04266317371526291,0.03963352640199803,-0.005141908395215896,-0.0057195559457629275,0.28588395858401916,0.002400952847662414,0.26074317702408056,1.0,0.064074515720327,-0.05440594983022876,0.04480703479839057,0.06764103131390273,-0.08876113357965809,-0.018067042408005458,0.015437372729724749,0.02492698585745801,0.009494828462376068,-0.03412282803828574,0.014511387904401067,-0.04128198190340163,0.07774028432712611,0.05549602080539182,-0.016190675750726868,-0.04915991922080457,0.030771103649561368,0.02201700606314723,0.021978694367650733,0.0005971893298950742,0.020312607468366436,-0.03389519044737695,0.02722282217020388,-0.04999198777738543,0.006309795686573817,0.026951384103254428,0.03031604306941592,0.029338772156804527,-0.019612121156883988,-0.03961761182785866,-0.025909586753527544,-0.07438084535047994,-0.02904949598926553,-0.025817211495797993,0.024929561565714565,0.008138798384165386,0.010426271124288348,0.012758368184664866,-0.023498930781646526,0.023180162443751165,0.041942720187382855,0.04026321954002425,0.020307536531235692,-0.025403140070940106,-0.054545960599177545,-0.05794487262367789,-0.0490576448731496,0.009856711563330052,-0.08317919668804417,-0.1258892599662961,-0.12800097975263852,0.032639736216621765,0.006088819740485598,-0.02211228914230925,-0.05988535983702103,0.03286528980360358,-0.1814071215770139,-0.09470495291018068,-0.1882912699635478,0.004389080541257741,0.035130569913911974,0.01631266831322036,-0.06826941786887261,-0.12218826138195765,-0.11508414936229133,-0.20123310956167384,0.006959254548491484,0.03173348697183274,-0.017071585429081944,-0.03382332053366234,0.029865309848430648,0.03777747342957587,-0.004129104753459658,0.02577022805880761,0.03890878078438577,0.0067954439759190305,-0.03013027758859382,0.00655554074923705,0.03117149386620348,0.016072650230138274,-0.023513950440243982,-0.06249297425098825,-0.04110956380533358,-0.021892836361786072,-0.09585699424143983,-0.08309276455238412,-0.04574340493722236,0.003717267817950221,-0.08781663324010582,-0.08798356064484435,-0.04943563105645665,-0.04846718880865756,-0.08917069005266429,-0.08293221189709969,-0.11414218662452717,-0.10002863063688962,-0.09535958819360671,-0.1446115313489927,-0.09864858525361841,-0.07616221132658338,-0.07771522265634638,-0.13868594753113858,-0.14673883654065753,-0.12496394088571847,-0.06933101372865845,-0.10831366744241076,-0.06751896447066835,-0.051897947690074685,-0.05859396349957592,-0.10886733902859552,-0.12842028040561643,-0.09644976662346644,-0.08027183545393797,-0.06569368821214364,0.020822938543849784,0.07609370726447022,0.08696590742446221,0.004192439097723874,0.02274215989994379,-0.01936261711466406,-0.0010456995242294877,-0.08866975037480096,0.15520008718134512,0.07301145037001595,0.09266987558986661,0.06425326611400725,0.003236932879974208,0.15160629482127805,-0.014706801010671091,0.0016531666368543735,0.049598080408051595,0.04547260250825478,-0.005028731121963555,-0.10834932854170112,-0.017455370435090708,-0.006160073614133729,-0.04499934757074453,-0.13982220280839266,-0.041696627634644705,0.06072783294340409,-0.06882886479918067,-0.03850287155862315,0.0014068112191541159,0.0665696735344647,0.09139938646785693,0.11397726258350001,-0.030119594110645406,-0.022394798533300033,0.01395228498840585,-0.011276020420201954,-0.13834082715477417,0.003086908575623919,-0.011848977254321371,-0.011256393304847925,0.027773390750357535,0.03972895168419521 +cAMP,-0.01927484865958356,0.057233288865275914,0.09271717520261172,0.04137029231971724,-0.10513627301881927,0.19282955905600377,-0.02628270041846313,-0.0303974491944127,0.2290817660230829,-0.08124670905696173,-0.06670362837133915,0.19310267352749708,0.07492638629493575,0.137000841376139,0.25775649464963846,-0.0015285014062249695,0.1139803366699693,-0.007621683663284183,-0.23116224109987882,0.11202671931867188,-0.10034129636371131,-0.026140130267439266,0.052461392162786544,0.15663319048224203,0.12240675139766871,-0.24999134126944966,-0.025971154447517582,0.09123711317220248,-0.029693231935984762,-0.11488642132380274,-0.1295996278483361,0.056730457899530455,0.05062150829720251,-0.0007591427570466638,0.23527392811651796,-0.020959884729403716,0.13664012130221967,-0.007208334859749937,-0.20116813971046565,-0.2501849757677427,-0.0836067551541522,0.02919108545970772,0.20296993065583574,0.01192245871110165,-0.17726351877715033,-0.1534565304891925,0.046399381976828954,-0.2752161677810028,0.03561553558358374,-0.23218096138591837,-0.01998370821759898,-0.1442577743407938,0.14874585138343094,0.1002214847118415,0.17992093784181548,-0.07797098246652807,0.060416916344679335,0.06295385794201888,-0.044732341837268735,-0.061929831683603845,-0.10851941333094527,-0.1359274822648692,-0.22874437677477794,0.08062576101104978,0.054627543704364845,0.03492163538834692,-0.08295561207427567,-0.23203350689956995,-0.1575971513038898,-0.2675080907002618,-0.2152370540375234,-0.260151356557674,-0.19741944095771352,-0.24108634940078733,-0.20263216812835416,-0.21343097332619376,-0.03378773756331348,0.050020077207205485,-0.18932899829783664,-0.2071395749549235,0.06377988427380135,0.08490389463656058,0.027652680362166067,0.014244039213520973,0.23206299238607175,-0.22776029213029164,0.037636838495893624,-0.22021851651068824,-0.21719593243553587,-0.2797506864315022,-0.07243460890673634,-0.28636283603712026,0.262180211897129,-0.2716183942076151,-0.07280669451463385,-0.18617741322811726,-0.15832345913852838,-0.11922660506414808,-0.09376883602292012,-0.0035498740851262443,0.040201447782225196,-0.11618787564604952,-0.27361533983911446,-0.2579947823941467,0.17061855123842093,-0.22182500404797895,0.030348285146719188,-0.05782586443018422,-0.19879748112345652,0.07556853063814713,0.064074515720327,1.0,0.1549334863097602,-0.039955279121640284,-0.22397044823431056,-0.1528446586285077,-0.02978589834652564,0.08164170667796053,-0.21228064709873887,-0.08638278786748486,-0.09914610564753706,-0.010362125543659392,-0.07604663621865028,-0.01902802926225297,-0.056071335986835086,-0.09417229748986868,0.041669584728894836,0.08597686084602163,0.019934365105655126,0.007035251778241948,-0.03220233755525796,-0.05716784135407401,0.2223569511345902,0.07797664985222261,0.007201589471676788,-0.21394828284094733,0.2132394188438595,0.0450366633439291,-0.0512489832476196,0.026422039755844055,-0.08581303878337333,-0.1102118074098019,-0.0218697126344104,-0.07807500275310682,-0.10640186277172083,0.21897818849997072,0.2976187615351773,0.15043781624269267,0.18608649510668868,0.06126018759912867,-0.011348385369645615,0.11749936018655786,0.07654198242562536,0.058258228011067,0.002264927026138024,0.10706341314877225,0.16794397474307904,0.09500362836972792,0.10169488164627039,0.09982344467933657,0.1881975778634652,0.054835416453281494,0.0375750235082185,0.055497352685864955,0.12483250312978339,0.13930629706172012,0.10464231824969839,-0.04147453605283235,-0.07618499697328714,0.04067308262996044,0.13242307019018815,0.06992475782422188,0.07967601791215853,0.14666351064079802,0.21137030543179483,0.03612237899387359,-0.0030621720854845675,0.19193005732364565,0.16234740940470915,0.18303132884989315,0.1769955571175525,-0.05777754665032858,-0.2104498219285396,-0.2235322638803446,-0.2504529262296664,-0.24127717215652444,-0.21570039165308116,-0.15170712166538744,-0.25852467551559066,-0.25299746745050516,-0.220824708949264,-0.20837638619528256,0.08700374080018095,0.10324767881761698,0.1351584339456599,-0.02216565913353559,0.06960046122935548,0.08711614679118644,0.0730994897344106,0.04685238794784244,0.0769780181166419,0.07950578475134087,0.08632167703228677,0.06094156174397114,0.0504839530225994,0.09406550064284143,0.0938354492827034,0.06348884918894528,0.048517966860079746,0.05177987576600154,0.06441055808571242,0.0770180239783901,0.11651134488563167,0.1003172768751342,0.0800154092983535,0.1279133372822264,0.04823303411605091,0.061884815350670634,0.08540564183297816,0.09968811352028714,0.15751684253246623,0.129763602459939,0.05162748193483022,0.04098490039985939,0.0709871912168795,-0.008970595678678469,-0.08485562902685669,-0.037146178305299905,-0.03022089743890404,-0.010888588164317009,-0.03914499747355483,-0.020058923797043944,-0.07406003031402296,-0.016329727515282062,0.040404970630696944,0.04849198617546377,0.06019843934390436,0.02202711856568791,0.0004925315745837865,-0.015961130492161177,-0.03239727965418206,0.07050414172362444,-0.0010886925415472567,-0.0007910907462768126,-0.021618784811628412,-0.031092493290450145,0.0037522735674410364,-0.009072792239361764,-0.023600898385363986,-0.06829844245259362,-0.05963716671054127,-0.07366842421772705,-0.018936470799255742,-0.08915681111380445,-0.08326207668890957,0.049099997228599576,0.013997776705171888,0.004309067496141268,-0.04865385272543757,-0.038986207725614376,-0.02305957399812933,-0.05433290697784005,-0.05455687828824264,-0.06718317893680062,0.004044756430805473,-0.06907575848723661,-0.031051084129543893 +Cotinine,-0.06313921065799027,-0.1834710207871686,-0.034781230897014376,0.4242495735228326,-0.35356317868723014,0.18188487918628526,0.3515074926310659,-0.21689836515490762,0.12671974449010745,-0.3135390334550473,-0.29149380813471304,0.0929078393703169,0.04402754742129155,0.10593704339281215,0.26690304452866864,-0.09764900109686662,0.020812433396640267,-0.19928665277053484,-0.19328470407698184,-0.06118708547744334,-0.05668135184327876,-0.21168632526853262,-0.14806335058659092,0.09599288374034359,0.17591891379719357,-0.19108624574195818,0.15776385161542344,0.17888271133787192,0.08050773789853208,-0.1891336039646323,-0.21871709749170856,-0.21280748724326054,-0.09954527027682679,-0.1779043794861577,0.5670006035056943,0.10001718952168798,-0.06980302771375099,-0.19332627518851747,-0.26059268869518987,-0.2707329196009794,-0.07921015962827295,0.04850539539363937,0.11914906806450783,-0.2339838682685427,-0.26596631948662086,-0.323026734634627,-0.030822311972771414,-0.3851970540649534,-0.08424338401268426,-0.09525790264284405,-0.014957488824377661,-0.28018697411773824,0.3363504275500675,0.15617755753612644,0.40986996121889885,-0.03935699415088557,-0.06939605627510538,0.0049210766898644355,-0.08203438107197863,-0.29453231165745153,0.06802064183417733,-0.17685188006948616,-0.30230552438180486,-0.05261760748095896,0.050958771788556304,-0.04572817609753305,0.018095039206482776,-0.3171148873081425,-0.05754942858106579,-0.24529438407941248,-0.1698760947473495,-0.3344933122751897,-0.2951994951159586,-0.3126385170880307,-0.3328942616541736,-0.25073739323889077,-0.21773866017950227,-0.007281641933930976,-0.13565698303900242,-0.25932084925923354,-0.03698399444656321,0.1794628937944009,0.06349707853761226,0.03827393640281976,0.3610258258136703,-0.31887081043455295,-0.05361255010541775,-0.3859681832375258,-0.4054095317023313,-0.33491158641659036,-0.05180624729780177,-0.454389363835709,-0.012034488055342614,-0.30753608992241616,-0.08248545205926155,-0.2933791767540014,-0.21416787683727623,-0.2361407182824287,0.13587271954430707,-0.04494471305050075,0.1048724918346998,-0.2752495064535605,-0.4087563681177601,-0.19701635687090038,0.2911170493222673,0.013638990723360658,0.2904777075803997,-0.10782334578856939,-0.2746486056603281,0.033570878167241205,-0.05440594983022876,0.1549334863097602,1.0,-0.059704852831359734,-0.29091263940034834,-0.14207798374370953,-0.34502215431386446,0.05497987762633408,-0.2573899928252517,-0.30591182617255386,-0.3398574804489537,-0.3131203687122285,-0.34434118762166555,-0.1064754857625241,-0.17349688599212298,-0.11880650207554544,0.09272417606729483,0.1703455762371673,0.1609989323220678,0.20759262833054196,0.22516280005398284,0.13947580338063925,0.47124889270569437,0.0007814016756865602,-0.17164317394236558,-0.21378783616570254,0.3088814816655065,0.07685075464939307,0.010022542581183725,0.35175618236070044,-0.13180540778479594,0.1358418189883566,-0.053821575579764046,0.2370091480375886,0.05976346058862786,0.1318436279374279,0.14586107950315502,-0.03108956362149887,0.25546619635191314,0.25682906430507924,-0.15691195316203752,0.0477183400093623,0.2089623714775132,0.1169267486359541,0.038192460220673664,0.01199572574162868,0.3101258173253833,0.43121339509923595,0.4190215505853758,0.24192204156356342,0.13161061717546124,0.15119597793493197,0.34654965689599954,0.40733446359520287,0.4079120570715855,-0.0485666418613793,0.3789005473237075,0.027871491697696576,-0.11191598652608267,0.19703523819605803,0.20039643755331735,0.1256656805909585,0.1404584187698951,0.23369944535038226,0.08091557568911847,0.00505093576319898,0.05000184274009716,0.32571868089155476,0.02463009056012542,0.11127744408658428,0.16328652657817727,-0.03598969528601669,-0.20408491462388278,-0.21243385228867956,-0.12119848791111212,-0.1792348271363727,-0.24081252526669703,-0.10755777370280212,-0.14341244156628047,-0.18448604502489677,-0.10658855657578908,-0.13253804798289592,0.1244009157200431,0.05783131535888715,0.14744272212640214,0.0007458191401842999,-0.003986678516950655,0.007765273815792051,0.03322190578454925,0.029853224954096515,-0.022781635119324708,0.024410082990669445,0.07717693413786626,0.2679827876328289,0.18338797392003692,0.01668591913065181,0.042079859433489256,0.08832028217386996,0.23007099754355406,0.3218136271808578,0.228213855134888,0.2185769193738308,0.07647451833259053,0.08091728022128308,0.09294008836070237,0.3967563087527684,0.315407205946705,0.35475457111224107,0.3145591240960651,0.2213371338887337,0.11705076279629725,0.08351241468081808,0.30317415477246024,0.27785034055402685,0.3226735830007814,-0.04194854814533545,-0.07452555391235755,-0.02223689807283639,0.06560912551847718,-0.015948140884828328,-0.0853389719039557,-0.015034961598709588,-0.0971436040184169,-0.06016631895759089,0.06593159472992952,0.037563234943993655,0.04021298683414096,-0.000539214157555477,-0.016754233859435242,-0.033822312587017594,-0.03185502157133854,0.056088833884164614,-0.020870722033142275,0.10402059921648081,0.044757917601594914,0.011469293300119386,0.02284600284098972,-0.00726069349398308,0.05713684118643154,-0.021387558782905193,-0.10467938669666992,-0.08498406396026834,0.0391169617696439,-0.06784147985985561,-0.09571118407461134,0.017805113967086107,-0.05979714024170307,0.05043966420808704,0.0022022244717112274,-0.04971120693192848,0.009415088949582375,0.032606668712977786,-0.023785319680144378,0.006728953503686267,0.0012291161934761825,-0.035423491183321415,-0.007502787565012846 +Pipecolic acid,0.36035445010071765,-0.1008987355458066,0.12712343241578633,0.030230353136283413,-0.017452568802769724,0.005776609345665009,-0.041693737218522285,-0.013328661205441177,0.1324841326834537,-0.014666707174244127,-0.0016250117468274408,0.18326772480607445,0.1298634560908438,0.0994091860938074,0.12439332475930176,-0.08298175511011914,-0.13324058684736628,-0.09702606763266682,-0.16230705955406094,-0.07601924873365645,-0.08002413373736873,-0.10734383524997117,-0.0519870050238505,0.11811485574307574,0.08231043157037364,-0.004305702219983048,0.09017289357126984,0.08062990931573566,0.07942393483341031,-0.13405873982537111,-0.021203857827090465,-0.0025184406504174485,-6.802056446203132e-05,-0.0884000873174719,0.03848637911080017,0.05132870987686889,-0.01584336737482044,-0.14044314870652405,-0.08448930949917716,-0.03253711224595852,0.12723888067027067,0.007805372955411731,0.13347198870187119,-0.0011471707992200644,-0.07081470345336799,-0.036120568183284255,0.09624038684776395,-0.07978367431572217,-0.1888733925478661,-0.06965216586661098,-0.35415297742734947,-0.034278168388682334,-0.041078198215470596,-0.1198962513450134,0.14354532793233432,-0.011634954086344981,0.03062604632314152,-0.03541171583172166,0.09782715763736051,0.08731599448611721,-0.19240957444021517,0.07018837492840209,-0.07765716363482615,-0.0464626858979741,-0.00759445897605092,-0.06546735533162304,-0.15616614368518025,0.042283854579002085,-0.1903545828029512,-0.049692996111437966,-0.006618365353388704,-0.1298250546630209,-0.11880077033517475,-0.017688118258963097,-0.02567367793670621,-0.012615821908459614,0.03993797089566956,0.013673541316287742,-0.07989054818841333,-0.017828689620276346,0.015550205757626416,0.13339606958702527,0.19227639254691292,0.012375359496063824,0.0557881803673418,-0.08772339797810341,0.045501370381710836,-0.01559849751315358,-0.013273236174928461,-0.08887190369622257,0.010962930271447369,-0.09604289674571571,0.0690686568918243,-0.10881995215773797,0.1012412626824376,-0.14602997338139895,-0.1298460990649662,0.06506604801576812,-0.12145779260257822,0.06721954567413264,-0.19584760533073936,-0.11489060090070355,-0.0941099902916066,-0.0433573114761401,0.0015420179594711643,-0.15605191863612344,-0.14098983597688025,0.1509153947659839,-0.0946622112006092,0.02422753940155343,0.04480703479839057,-0.039955279121640284,-0.059704852831359734,1.0,-0.20167678359099614,-0.06380660327987875,0.13651962349967076,-0.04758384891093503,-0.1899365391179365,0.039855963743601446,0.0849019203094931,0.15633785582442597,0.056035139751620194,0.17515040164581255,0.019884904306468713,0.014840672388325869,0.07695759053532114,0.027841203304790833,0.021983792285762617,-0.02992557202878328,-0.05642588029331565,0.0315120174024223,-0.0044027371348901185,0.12058841773614615,0.019530214850448948,-0.07587090503544072,-0.08979983885915806,-0.03367340145459259,-0.1252755423227451,-0.01845088830828292,-0.11150834365573067,-0.0836945966267536,-0.05978435364356498,-0.05993345172825165,-0.0705883776021068,0.007664848892725845,0.033170410214855325,-0.008607004232108001,0.05453726485518311,0.08522237262014044,-0.07012813836562015,-0.04896648578522256,0.052714362106572495,0.08690265057907302,0.10827071571675062,-0.04150399599306061,0.004087184366695395,-0.0059710684959879134,0.024792577024387627,0.11812149990308228,-0.010044352862867626,0.04046679401646381,0.04286612338400432,0.040709622401389034,0.031017209512823548,0.04701582345225897,0.0023489023015244924,-0.08752712957734325,-0.07831349944789845,-0.0005829466186699564,0.23217514461613428,0.009702194309698285,0.06764360781212703,0.0247876524532357,0.009635881262301246,0.02587390615088186,0.02323846731544835,-0.1262618806497671,-0.03458030443306806,0.03787690457006182,-0.03217953124350983,0.03943127871047512,-0.07893090397203191,-0.06302679669515913,-0.0511364498496191,-0.10124885143570529,-0.0716261099386655,-0.03902481336978615,-0.07709115913184296,-0.09932784850869743,-0.025434909315376855,-0.042364456979359984,0.08387315449130654,0.07931431400761972,0.07785022081025791,0.06709882858131816,-0.0307028535462871,0.033738299634767946,0.008124957058517523,-0.008751807721300938,-0.029187004670665023,0.010216444928135523,0.022308517552657767,-0.003022604017286292,0.025799384686866125,-0.058177796655385396,-0.020880697190394003,0.03430532525893175,0.04532122527561045,0.025959620563250112,0.10604711374540055,-0.03135477611070734,-0.06556030573202355,0.01516089136662533,0.11669234828407915,0.060168404399170664,0.08593589501534497,0.05343557558861319,0.0180019350837668,0.012955115447059197,-0.023086036831739504,0.052583254652733905,0.05809740208881739,0.04413768658690583,-0.0074553820926965405,-0.06465639681161846,-0.01796095898988231,-0.02396277252367801,-0.039984055688731625,0.006287897486872248,-0.024309985219588368,-0.04655634848614494,-0.04244745013219003,0.03832827611351291,-0.016853270418421953,-0.05412323503169817,-0.05270736877847892,-0.06394923174519566,-0.018537839937101275,-0.0374063902775775,-0.018263965175762127,0.003980193618598559,-0.02681688604530264,0.11816794450401465,-0.0030031507009767554,0.06768962718953882,0.10950517982293832,0.025866898617490967,-0.04301940596278539,0.04244799488742374,0.07584596493581065,-0.05827525490251453,-0.06966494346900727,-0.023288328652838763,0.014797713895610753,0.001560373972145049,0.009045423994893182,-0.015737940656902153,0.0559864252506645,0.051435255519974084,0.05413825094898037,-0.07804677588224915,-0.014756361541498163,0.08355899876552492,0.020350620530421484,0.00508897133011089,-0.008276970684028979 +Pyroglutamic acid,0.05945591231993733,0.13702472256910178,-0.2671232568665814,-0.1370750660603983,0.33511948971099953,-0.31055034536445064,-0.05129171786909202,0.23143345155591255,-0.4889410186076844,0.29284739102023255,0.24515133868247843,-0.45560895278306823,-0.1534121859654005,-0.23744742401828847,-0.4124062958528691,0.13599313106450056,0.10504906595014285,0.2123630908920373,0.6798909071153074,-0.019527220748629535,0.2286556540094577,0.24444313580971538,0.06414373161990246,-0.356351013125897,-0.08477858193711268,0.5745158976988748,-0.18910897398156912,-0.1962222461291568,-0.04666207155601085,0.4613764112202769,0.3743412801668194,0.06786964325414034,0.011759977513037973,0.16048871491712097,-0.49570469917677873,-0.029920231192334317,-0.10908765293427711,0.30067298198748127,0.5705117076488636,0.5085868281446018,0.1499044346387411,0.05694673631095526,-0.48031376012076427,0.08194839582797217,0.4907890757879319,0.3977292681814346,-0.0898943601865244,0.6575764042454442,0.1769944110958927,0.4347561171588701,0.40742361550775674,0.2862726034849539,-0.27194960540771457,0.08715101162679395,-0.42164570036881377,-0.03662990095409638,-0.01979157678745904,0.10966462278081407,0.11868959661325403,0.27152140163138544,0.3447703482499054,0.43142970082207827,0.7164339009863311,0.22768962498589165,0.11305165374267233,0.0011115498890371905,0.5692409969580525,0.6121216167422477,0.4778924222471022,0.7119157549456273,0.6023693996595493,0.7740243716072052,0.6857448153898819,0.6686275421249033,0.6553835837476337,0.5668670776188077,0.1899328526003117,-0.2128509556720856,0.3500626962011035,0.4753997610592165,-0.03421706330318374,-0.23465695656469857,-0.08017255142239975,-0.17542752293654235,-0.26964322234774357,0.6212314517113418,0.10110567503644591,0.6148099484684016,0.6432058910376219,0.7031860917218177,0.20399535983529526,0.6891604702212317,-0.33826673527825546,0.6333325700465633,0.16858440714989872,0.7236521425533686,0.6325360062458227,0.29087064950739405,0.12188317146975733,0.014070187911944287,-0.0456934994482189,0.22016987460660664,0.664823372243142,0.5402360768951493,-0.3718795443609658,0.583557595475834,0.05458691200338489,0.20185739484832474,0.4967603164174935,0.05863971899303984,0.06764103131390273,-0.22397044823431056,-0.29091263940034834,-0.20167678359099614,1.0,0.32961785438198493,0.11976604818216902,-0.013682687498305264,0.6088792920741272,0.24910172922771032,0.08513037013837953,0.1686014837969976,0.07865187334305923,-0.1505255579242029,0.03249346101730443,-0.015085343260288295,-0.19867267993477297,-0.21227167609856554,-0.2517815991827124,-0.24884963616925687,-0.20601217558010415,-0.1373430828396879,-0.4391953918757549,-0.016737886851941566,0.09568919837498534,0.5067414077268132,-0.2591764337050345,-0.0015943642133745273,0.10466233647148665,-0.1459201410227384,0.27904566617729964,0.026082379455609758,0.19341553340984474,-0.08572786063729167,0.2945305419887897,-0.23344350608020728,-0.23548756556841494,-0.12052971051187643,-0.3019202174884057,-0.18273171488038165,-0.034063699236350276,-0.2999098371438525,-0.4006007400064227,-0.27901788863458343,-0.13217996112836175,-0.23738554145670945,-0.485698989658907,-0.4008620475158386,-0.4342352492386878,-0.34408296693164414,-0.2951257456486744,-0.37261896354509144,-0.38419747692560297,-0.37222276695692585,-0.40613187788116367,-0.19152999755286937,-0.33515913183154417,-0.10006046773125879,-0.015353099037812536,-0.33898588724736184,-0.2991302544467164,-0.2552203672834585,-0.22596627263492627,-0.36345753469000336,-0.261434997534594,-0.13331982356230312,-0.12502186093947182,-0.30758754302153674,-0.21366286811797452,-0.22009979266236865,-0.3581422298880299,0.09431640338944555,0.42648560570489236,0.41178563295738335,0.40655625960698505,0.49940576012169696,0.3960848038847303,0.1479878714870372,0.431523296675419,0.5247140029031017,0.30613123947259235,0.28785368691560076,-0.3306958574760544,-0.3885024124868939,-0.40965255451564975,-0.2021945148086858,-0.27411038474957405,-0.3466850615504022,-0.30091971700785713,-0.25887602260182413,-0.30835850517980384,-0.35541607561977356,-0.3488110997172145,-0.44139151019577905,-0.36148184699510805,-0.27199994590035637,-0.3664500250023734,-0.39269501207261776,-0.4104396980924416,-0.4265827538698404,-0.4180259398449589,-0.3743951615911864,-0.29508103994095614,-0.39751287342209635,-0.4031843198884757,-0.36399213049417556,-0.4106190911756674,-0.4176814354210338,-0.3879193993867986,-0.396698973049613,-0.32584276843244553,-0.39969474603017796,-0.39030391261217207,-0.3528802477689569,-0.4000354860058617,0.019315221925391184,0.10912296546512225,-0.0319480555982779,-0.07844414032706083,0.021718247643301283,0.07302616849269027,0.08043189176576822,0.1475638958415688,0.09708998074518943,-0.14081175758493372,-0.12889825329575466,-0.09878691118344586,-0.06990717173558685,0.006151123153613472,0.08228402805528046,0.0235465281792774,-0.08301227901577184,0.0101920113922361,-0.030225357608832958,0.02702372819192733,0.05461506436921384,-0.06942865068345444,0.028299884267374682,0.028611524624593574,0.1224363827950197,0.10741423556685749,0.16059781638605075,-0.03043151272259346,0.09764921970436674,0.12478251782532819,-0.08430820199719473,-0.019935866249596652,-0.024327864512897267,0.02268257864933618,0.06401501661184608,-0.01858950240830286,0.08735169343689905,0.014043309938729194,0.0021879103081342993,-0.03726593910052041,0.050632445273065575,0.058827937554155926 +1-methylnicotinamide,0.176536759432296,0.1450880893681232,-0.21994296623496437,-0.07003510601924223,0.229857514878079,-0.16254490777426508,-0.10142449855752296,0.2205377576321407,-0.39969978910003806,0.18312352064408782,0.21606574281174803,-0.36997537139875697,-0.10775455070630827,-0.19721337937901318,-0.2886304175951627,0.25129259687489686,0.05910723645636632,0.15873538956616592,0.3379724889671498,-0.043201629591173775,0.17726875597507438,0.1587234940598317,0.09741171536959148,-0.3080583130440444,0.07520561093163372,0.2607272600131139,-0.21112286832082697,-0.010832943521456648,0.03755455392634376,0.2517071438195076,0.3008755648687211,0.013963906048017977,0.09668043291679804,0.06064679141448869,-0.29510268313970034,-0.03912530345055338,-0.03084036537300327,0.2361987552516206,0.34076762525766263,0.15339924121808216,0.12956153256970612,-0.06198769542302337,-0.377758169278114,0.15358856349913363,0.19412809202443507,0.2263445915005619,-0.05693169278435167,0.30590258316787017,0.09754295877395076,0.21767987675130027,0.14623868906143325,0.15057379691067294,-0.19097270265084768,0.12076138937578212,-0.2887414921863106,0.052497681939309905,-0.02759709935917403,0.05716362541336346,-0.06893383703598635,0.036403326420987696,0.0597741566360181,0.23103700331740462,0.38902806206778673,-0.012511816861144049,0.10774358924007782,-0.12971619965175185,0.16337711410474698,0.32407353849520565,0.21179771496290753,0.3930045541796846,0.3362215856014831,0.4241074858603996,0.3734415961547879,0.37943531065833486,0.3536300331590635,0.2803090849126716,-0.03347273193486689,-0.17561541599935457,0.0472915021900498,0.20877195979604138,-0.13061188300895782,-0.15625850438342265,-0.030197586266989235,-0.14552089566088583,-0.309190681249997,0.2566242850533114,0.08409521789457927,0.2661646248867703,0.2983656009582262,0.2994199909005012,0.1917220351759761,0.34746525542315365,-0.19519734899237817,0.3078495983078877,0.29525705662062307,0.34581546490829884,0.12260977687184729,-0.005940063940566008,-0.00972664267277301,0.08239616970853199,-0.047347165083560835,0.09348146995431943,0.2911771908171035,0.2545458234739979,-0.2343863209371983,0.29847546613193104,0.262232431138357,0.0608181590414761,0.21125657348198887,-0.12549894019798238,-0.08876113357965809,-0.1528446586285077,-0.14207798374370953,-0.06380660327987875,0.32961785438198493,1.0,0.050285930153132916,-0.08246023101872185,0.30281705221594307,0.19820788749734727,0.04108826670471733,0.12847466776642566,-0.0008184320790730577,-0.12851965982173696,0.11756539307220876,-0.1133341035791624,-0.19090910109132794,-0.18362539217556997,-0.20940875915519114,-0.18212131083561955,-0.08641018706576045,-0.06274063306664042,-0.26661079374106145,-0.17718029218905734,0.10134192896336264,0.2399804076713475,-0.2152506869713843,-0.08515783365910562,0.018606086090810298,-0.08966340794253402,0.18960513489926273,0.01720989764143435,0.14076121236673345,-0.05362460299045893,0.22268446681231555,-0.2191969808089037,-0.20010699981809926,-0.10999989462280257,-0.1707867584837966,-0.1057527381101677,-0.0506208380630208,-0.2151858389131012,-0.16335087184000754,-0.17373289381078866,-0.042084173010200045,-0.11577575474166796,-0.2346430967059514,-0.1782279881426391,-0.24927638848501613,-0.14225651287188248,-0.1008314387020479,-0.1316536571887549,-0.13500587637873507,-0.1533176868584163,-0.2293045258035717,0.01649404814496476,-0.21257459852432922,0.09488306405967312,0.15856419513465303,-0.10620485723193335,-0.22497410794876319,-0.08591792264597489,-0.06572143107826676,-0.15838748784009568,-0.07851956866023259,0.1596922202860136,0.16281155599274197,-0.1979648944212986,-0.1726589196655621,-0.13211122741380765,-0.23875176144319643,0.04281766004850587,0.3089572024135689,0.30971773717820317,0.31228956755037696,0.35293407416935074,0.31576963070059866,0.1780539718270898,0.37315675603751586,0.3705181583293465,0.3281365721368873,0.3554754741003086,-0.3322525556672301,-0.36868030398506685,-0.2857958031410387,-0.23830298907547376,-0.3316095905000282,-0.3122832239673611,-0.21857931400183678,-0.2989207757386396,-0.2917642989158656,-0.25161753648472474,-0.19671384119885568,-0.32954395602790415,-0.29198732433144736,-0.25583698097638413,-0.2581744851623605,-0.21047454336240756,-0.2819742617591984,-0.3057867572685379,-0.25923185977387436,-0.26626773743168963,-0.21546205044916628,-0.24759453108802634,-0.21064096112915548,-0.24325318007549449,-0.23989987210576197,-0.2437890642991561,-0.23596713384447973,-0.2787919796580566,-0.2291299875848455,-0.252895144621424,-0.23138249348475298,-0.2034547709319776,-0.22575286766660219,-0.02726376688502604,0.1439244800894163,0.07738944686738783,-0.04635546801825181,0.07226962280003724,0.0815351165148192,0.10630999104951508,0.2336885558086425,0.0718091033038161,-0.16257511923925047,-0.22667421636343865,-0.22918634902255403,-0.11661904871356701,-0.009276050793548788,0.09051884135171571,-0.007220845174863913,-0.180244114146252,-0.04263616092105548,-0.0164212558720653,0.09944436993773213,0.08314662548716582,0.01911200245853018,0.11254154369438266,0.07319670313305865,0.03640635495730317,0.06400464447984143,0.152866196127777,-0.03546007941333772,-0.0276944663221125,0.04295523097641179,-0.08299729796358228,-0.040975129019784076,-0.03017198761624033,0.03177179784667251,0.11269981339484114,0.05011824377420706,0.10257131623649125,0.08150268802249795,-0.00508598219258467,0.06810624370947164,0.13977083858732728,0.10722164687424472 +Butyrobetaine,0.006337674787831366,0.17031180248583083,0.18015554520799756,-0.2220346007940294,0.4287726948247653,-0.09636177163677655,-0.34130186291835923,0.28329684283406303,0.11017979174979467,0.43386690706073855,0.3783340423428472,0.0417850077068309,0.002830824707242207,-0.054115603395509866,-0.23471676913663927,0.032267007568556674,0.14602522428221423,0.31204058078961233,0.015362392147086065,0.18210377834275332,0.11497955259252282,0.2861025780266109,0.32018802710251815,0.1729115643020838,-0.09260325596868876,0.10054459367647471,-0.16347250161676805,-0.1451083950738904,-0.08094211182672338,0.20453857853034077,0.004364453684111362,0.2865065326393407,0.4019409465663748,0.23940546717284777,-0.46314824169774,0.14047284578552335,0.12131362075230226,0.13854676828445533,0.168013095375242,0.18765952163881694,-0.0973993203554038,-0.05397183473545681,0.07040952764940316,0.37827104343251955,0.1607410925029976,0.22066153888496987,0.10422798970437339,0.260329479169407,-0.14623009688684516,-0.011565439087325942,-0.09651968048418699,0.37528568541761737,-0.3617698731420286,-0.11685328128740281,-0.33338033469803197,0.0596399770994699,0.22200642260569595,-0.02786656995672211,0.32506344454465635,0.5558325861577587,-0.1858711877868479,0.20375329591975042,0.17866769330325577,0.17204174789143223,0.14568014317935285,0.13359154216201352,-0.14496418388140583,0.2382433955772158,0.011074562043534731,0.0937965548616481,0.0993657861121193,0.1837050366594275,0.1411729137176298,0.20522816416094036,0.2496949772397624,0.1697912508588962,0.552537353691705,0.1652181402398116,0.12695333702197312,0.23094390688752178,0.3865106111472816,-0.14525214492278016,-0.015898873591926013,0.19424552093031655,-0.19612825012082558,0.2809590599055372,0.13246833327416518,0.454842546427248,0.44334333932585923,0.27340016401270967,-0.10025323371185987,0.24627500229528781,0.1592097722681512,0.24439888066773924,0.06628852728667935,0.21539324394052026,0.04215226295094862,0.5379137348142734,-0.1432960294334497,0.22068987043166025,0.026066220779473348,0.41993501340453104,0.3592650045385318,0.02896111314361623,-0.3311547641013159,-0.09356034935418085,-0.0504887025500924,0.04711101462521776,0.23619545453489774,0.037637489472503845,-0.018067042408005458,-0.02978589834652564,-0.34502215431386446,0.13651962349967076,0.11976604818216902,0.050285930153132916,1.0,0.10514959547463178,0.1390147527417969,0.7767960384583074,0.7841887282260944,0.6126632181790017,0.6757635407673883,0.4326283764089324,0.39097030718694364,0.40045502097812136,-0.07231050893111847,-0.01400363646591547,-0.03477710221486639,-0.12759784614047512,-0.16674321186127114,-0.09292979049673918,-0.34176427545107846,0.27618936137146266,0.4670680778659816,0.1471682129879433,-0.27409272674688717,-0.11271539528680638,-0.10585892146682005,-0.3703048429576298,0.0421711424600103,-0.2693666196073923,-0.05872995572117451,-0.32604596059877017,-0.17640146425856965,-0.05163750397827519,-0.037674380140607255,0.05650540062489107,-0.24267482521062805,-0.25074632485978,0.19878372550329593,0.039838176470708274,-0.16228168402954782,-0.10670874129268729,-0.010280550266467351,0.09112130745120242,-0.19227982997687582,-0.30906783238149466,-0.3613151600218343,-0.19340382019636193,0.0005165140217658889,-0.08002628981479068,-0.34333863997638586,-0.4069596503665389,-0.3963024408860186,0.08600371426201908,-0.4085439709473982,0.029653062212015534,0.13433693480970418,-0.10308565149421774,-0.13895430060355243,-0.2195189353192475,-0.16103018117366655,-0.17954445047632356,-0.004290061892108717,-0.060898185380401815,0.0015618446933966165,-0.21118733128052905,-0.09252300047850631,-0.1754760089396903,-0.20178902724022052,-0.03884084909883656,0.03669665517190316,0.07424068927448961,-0.03400203546337997,0.018020343502094097,0.0867225778836642,0.027741627042104082,-0.03866725140766253,0.03093129062429116,-0.08300677050671194,-0.06123107129549114,-0.15582083963980087,-0.09551987474841553,-0.12883463981010368,-0.09455518367391137,-0.07320842626184834,-0.029625638216188865,-0.020224573918682483,-0.1367949881873995,-0.04487996826001027,-0.04190807362552013,-0.0628484222069846,-0.3733125388987731,-0.3241338858838036,-0.1244498653427244,-0.08837871796266207,-0.10329616814191574,-0.3379659988039908,-0.3881320620231063,-0.35330191564047947,-0.33518254751584753,-0.13115827032411845,-0.1008994885901459,-0.11332052623254874,-0.39872603844063703,-0.3841045868837584,-0.4519799970005856,-0.4075964146210642,-0.312400862101468,-0.13609185210260363,-0.10346074825991548,-0.38093665845711355,-0.3692051285432931,-0.3788881651946855,0.026146346063163236,0.05949487350492445,0.0057428153534439,-0.03133778234010276,0.010492830146069299,0.03179248755694254,-0.020561757431684143,0.03883269628091546,0.0793177716471312,-0.015244523127304193,0.014903317419188095,0.018723512287102107,0.029427176164667807,0.058970247027881915,-0.0004819625418698551,0.0688332064932565,-0.009277537105295266,0.03964081080328738,-0.0880877131343397,-0.12705755918266548,-0.1292718865599204,-0.10507785573176723,-0.0705450843378417,-0.09410928171577279,-0.05779784662722389,0.00920552818836187,0.04553840351422051,-0.016246716127827698,0.08458765015882248,0.09579358605725483,0.0030063040406506695,0.05422697327179585,-0.08202634762093045,-0.06750351097803811,-0.050252573901263656,-0.05629121011417895,-0.0849935979388771,-0.020051190038578248,-0.03565330570977429,-0.050691415119984796,0.024633109722634352,0.04284702614553131 +Putrescine,-0.04488998719297401,0.13363464116649282,0.018239279944646223,-0.04220732418423644,0.06139302573789276,0.07250437159202544,-0.021326522718071568,0.09318501829707007,0.13690004836451117,0.058399874701301875,0.06209221238018883,0.07686023542684858,0.06476718923375055,-0.04457928995244804,0.030133243039506045,0.0856466844354972,0.06422045115992803,0.09800981990833667,-0.05214545259732851,0.2663690277989298,0.0005255240011394705,0.16836640568603556,0.21239883909434334,0.10080111682500704,-0.09317541666878139,-0.08186443758803799,-0.13496226413999335,-0.1448066336709773,-0.050287989074584837,0.06967406547111707,-0.09062690938471828,0.23333466610789239,0.20147341451787676,0.15007484819893455,0.021237298225724125,0.045735683636400175,0.09161306445135582,0.10551584736083988,-0.03835166640012575,-0.06912836176556786,-0.10920313912991607,-0.03373058806417058,0.11704555278464723,0.17174022574617767,-0.09988751395378802,-0.04768437863315265,-0.07178754666892637,-0.07828228703954371,0.0022959361519295333,-0.06773050228703154,0.08418045474121987,0.0576384970455517,-0.04719254412847842,0.02354831426026846,0.014866643880733301,0.06545134745646009,0.08909900130175831,0.08543183028136903,0.08886251527387412,0.11134804295659995,0.0016002481248396571,-0.054714305796345244,-0.025027721886936624,0.1469774804119658,0.14588557034819388,0.1819053830912534,0.002544746843972554,-0.2322205113140114,0.03586423723647702,-0.16475169271314213,-0.0996466005714227,-0.04523047033103129,-0.01343152528470546,-0.052586737874198444,-0.03825476576836542,-0.04110087958236478,0.16536321107693794,0.17365400707439754,-0.08797851509730847,-0.005631529745893135,0.1785623727962167,-0.02940900715862987,-0.04681725120758288,0.48658764586220393,0.07505659679900235,0.0001441795442729648,0.16385526432562542,-0.07453619085551563,-0.14536764007121358,-0.02379679242369724,-0.011386173137673948,-0.05000901876053938,0.15811042785268448,-0.06437353690891677,0.04342172007844375,-0.006567173112595033,-0.009031640429776656,-0.0007622802401726908,-0.07583995055344947,0.005610059231249462,0.10028090610266518,0.13201197535779724,0.008821164230745644,-0.0872780700800498,-0.04404690984448798,-0.06570529184321498,-0.017638696822216384,-0.06451220823357665,-0.0496172408751868,0.19757569891735405,0.015437372729724749,0.08164170667796053,0.05497987762633408,-0.04758384891093503,-0.013682687498305264,-0.08246023101872185,0.10514959547463178,1.0,-0.02040461462291271,0.022743233831428587,0.056468724745086546,0.016074477975234133,0.011112376603501322,0.09363443526466877,0.043889255263176066,-0.010248120538725949,-0.021285099793232076,0.007420736261392652,-0.056784484073247224,-0.07879667754362729,-0.09787769820947934,-0.13486828008207896,0.015727317249198913,0.08029148596021413,0.2244176560261437,-0.05317320409837851,-0.032990663884270556,-0.10149935016082048,-0.17324405756880407,-0.06693021609083578,-0.17130209637216176,-0.15635325010051432,-0.14592718000645577,-0.12699938898610852,-0.09539727799859754,0.06480454580226541,0.07928053794725955,0.0711982004186651,-0.004763662090256953,-0.02933768350766609,0.10535201551363978,0.14024638798348138,0.06287192445870358,0.0012941527532392158,0.051380401190501516,0.13138341547129592,0.12407073432762716,0.014081704689499057,-0.015585474218872073,-0.03655877368354646,0.12025165558216355,0.057102635170295,-0.03183230320633422,-0.027613786535586583,0.007477809462163648,0.06477626211030516,-0.030944943389515263,0.06954341548055334,0.05876921097096356,0.04076864718174302,-0.00018610701324698654,-0.0031742128640271958,0.021040668088914156,0.03284245221865203,0.11625552371393544,-0.06278130524019178,-0.015482959612912154,0.06937482784119009,0.03734460979994751,0.007636321078847261,0.05933945488807707,-0.012137917328611528,-0.0719947529499764,-0.07886959999398786,-0.03224670024264863,-0.05833432404169537,-0.11077670226597057,-0.05509554301977991,-0.08538110102200189,-0.06460032628442394,-0.07320092945643657,-0.07257898023365376,-0.04035234495354953,-0.01541470693716837,-0.01171895780828115,-0.042055370608112506,-0.042714342257744516,-0.02252791630939442,-0.0017714496347298514,-0.06755690677483797,-0.05324051099222572,-0.04278981651878759,0.01799798662136228,-0.0751578603560666,-0.10522239657983155,-0.0813898146766144,-0.0642590644603497,-0.04402122963048352,-0.06404953294965152,-0.05854531694283316,-0.11624174533432087,-0.1157731723994452,-0.0953035094630061,-0.04888818165984742,-0.016795439242109887,0.01294708076243351,-0.06286010317447978,-0.08811659294667165,-0.08466154672718326,-0.08176683142273378,-0.0444648488206535,-0.023079696113869255,-0.08065041957036531,-0.0899020375008706,-0.0838483825374748,0.04027628493265828,-0.019018974670974,-0.011986371918645362,0.01657901066866884,-0.016569039348650387,-0.043411874000275553,0.0008071132159723592,-0.06782412185452145,0.012858711405082721,0.06930107826561151,0.09497537960570852,0.09621574863228606,0.039324801665899634,0.05312199397534542,-0.04288061790006562,0.05617714991048761,0.048955339941165965,0.09603844136215678,-0.045027965071084704,0.047266006828654034,0.003009327815889987,-0.011908512815335259,0.0003806196921880695,0.038236547138880854,-0.00495914210140062,-0.009293613743236747,0.0029849728471055405,0.04637811792659944,0.0006901354996205124,-0.052469581156451714,0.01875525621746644,-0.05547792326429264,0.08180625793010203,0.07440437567504073,0.0648254876257861,0.02256679430735264,0.004087460646427429,-0.012797262343517076,-0.08571954358044508,-0.012801040432321175,-0.08788244878454271,-0.08452570794856441 +Methionine sulfoxide,0.04193139421827026,0.11817915630276905,-0.28896180022789947,-0.1335412260260881,0.20018340879717894,-0.2257452136544512,0.00778039246178724,0.1026248018226759,-0.47182696037701327,0.15410919624613545,0.10073372201530341,-0.44412983824338487,-0.12483291074518385,-0.21508881091155937,-0.3631769686175233,0.18792226275029275,0.12203626070075002,0.22542597617721666,0.621564597120331,-0.09261530816962833,0.16072495891217037,0.18878112623631466,0.014107498393377564,-0.3608006395830759,-0.0242195409718903,0.4354246177757938,-0.13719316455757288,-0.09900290387258788,0.0013271047211488953,0.2940735950155016,0.36685060498605576,-0.05150317197802512,-0.03856977779891282,0.11915856609702183,-0.39890412527589425,-0.14178918172741065,-0.050636408171667896,0.2636480645002137,0.45868781327784724,0.35756425913712153,0.11613792092030181,0.0702088764443324,-0.46386073873753897,0.047273509202965594,0.4834367678481318,0.25158935043608827,-0.05220297875977412,0.5641524431117547,0.26837753780249163,0.48197635652886206,0.3012964910397407,0.27053148631745283,-0.16975081162244035,0.07507030424125788,-0.32794376042499984,-0.08489720713303853,-0.008791292270713957,0.06754474181674636,0.24343371062421668,0.230445597758489,0.3255502799073352,0.36624002916655274,0.7183724142294013,0.19096429268875628,-0.030298063078072257,0.08863088443825706,0.2389787666129482,0.6252714357604598,0.4382876516003173,0.588000049737631,0.4802467780208966,0.7093791915639771,0.6301474742733771,0.6026760141307802,0.5918466004574603,0.48640257097042777,0.17794267042429462,0.018146379057826068,0.3475355840350652,0.5081264791504556,-0.11001677808912232,-0.26208345486847634,-0.2138151450981934,-0.12013446078853425,-0.2393155428122942,0.5463715676818129,0.07372887417655954,0.5957820221161235,0.5847364640506011,0.5906139320641252,0.2738484559458327,0.6402224573751227,-0.30953704284201394,0.560632862608417,0.12314605542262816,0.5200185347391968,0.4397381436547196,0.3298620390100751,0.11580478375889207,0.05662645116545111,-0.008213940626368186,0.17259714607921953,0.5373163976373949,0.4973996869014224,-0.23307591806836622,0.5736459404777015,0.047970236671822035,0.20235224327004447,0.42440497405601774,0.05222600807432988,0.02492698585745801,-0.21228064709873887,-0.2573899928252517,-0.1899365391179365,0.6088792920741272,0.30281705221594307,0.1390147527417969,-0.02040461462291271,1.0,0.2189604611196094,0.10742473328298824,0.1755409013059718,0.07572844864451382,-0.11613379284045565,0.13979912474386524,-0.021143432834838646,-0.137716334022909,-0.16123016803672596,-0.20216104588938938,-0.18827255020197164,-0.12447745822446261,-0.10067422248879809,-0.3609454059645851,0.07311965702461175,0.0614861973887838,0.4801979497937825,-0.20287260060009235,-0.006224295096350012,0.10294720757687241,-0.10513137399831576,0.2578496002463518,0.03488744766197006,0.16835704103100146,-0.05366640716862174,0.27427714659115987,-0.25516437451076435,-0.20976991469244244,-0.16896734881131076,-0.2487867582353241,-0.16431563910073807,-0.033428377202556966,-0.2699578410873987,-0.39798442636052883,-0.23384563574345044,-0.1376320647794383,-0.19699369600540784,-0.41481417338847976,-0.33377873540639497,-0.3849765426354259,-0.3109546658929529,-0.22418557238708947,-0.3300514304038905,-0.3681442083465606,-0.33640868609084984,-0.34600607137891226,-0.18162730187644877,-0.29641422978373083,-0.1048904018631424,-0.02559220888948599,-0.3315483076891662,-0.3144975582388636,-0.2412112046571038,-0.21820599604756513,-0.3479768720257066,-0.20496900191227518,-0.15460692926931274,-0.13426014338637082,-0.17438279358988443,-0.21640899370767858,-0.19593427719234666,-0.3402479115514914,0.11028788329549158,0.426669123207113,0.40544661993837117,0.3862027942229534,0.46571077260417876,0.3826477978590046,0.15924257884934687,0.4009532736548488,0.47080026375466205,0.30545517216437595,0.2567833886531035,-0.26537821808158857,-0.3481481660759804,-0.3658863003176677,-0.18170604579644734,-0.24400285107172612,-0.3329494344991887,-0.30042118607935886,-0.23085853370515083,-0.285575833487679,-0.33925454372618813,-0.34792190443303994,-0.40988254049747175,-0.3491089747784489,-0.24760999855284005,-0.34397894242000615,-0.376616584640795,-0.4109374249577883,-0.40776224881214257,-0.4172579678247785,-0.359362109151506,-0.25714507341965526,-0.38257884100448253,-0.39456149780868965,-0.36159887110886496,-0.4190544427584419,-0.38754626294515554,-0.3662680228404079,-0.38159062191407633,-0.30341286887175273,-0.38274064691579923,-0.3879710776622534,-0.3540439278786169,-0.37091494868436026,0.03016968270256899,0.09942786279485992,-0.04742024622320255,-0.038979993833231655,-0.02529945024536223,0.08469620248399007,0.07550050507551402,0.1619719010847051,0.022533574997065646,-0.13794703122188068,-0.08992364354145142,-0.04137780301371342,0.019005332380886555,-0.00869374773048012,0.10277690052347724,0.03721973237014679,-0.10734108984175544,-0.005867745444299632,-0.04455705462009565,-0.0170911198047172,0.028858233450703742,-0.02824961651397183,0.035498197429530025,-0.03258016363827496,0.08204080053355715,0.10385274528845259,0.15577531298669026,-0.05544864678843939,0.07966569628626098,0.14280041611567443,-0.12420834354187721,-0.03020919398464397,-0.06729361043474237,-0.0010519600726052341,0.05497455629542903,-0.006670095574497697,0.02722484243851236,0.020482077933338106,-0.0025947266156644017,-0.025162632564321767,0.051970921553507195,0.08429646801757933 +Carnitine,-0.01780972873636492,0.1543550523372918,0.0015354452564297924,-0.17824161112114806,0.3328981027280812,-0.13500984680563835,-0.23107559804847724,0.24991929455499615,-0.13085115975284609,0.3211416152215337,0.28996416838692896,-0.1596210671393521,-0.10024836366199762,-0.17230640203688474,-0.31731283539383015,0.06162890199949825,0.10525484277544199,0.2706187606766365,0.23624487856338186,0.08230335102885686,0.15110046442293626,0.24492506251559754,0.22399272760231234,-0.03801159299710829,-0.12070818983139575,0.22810139241976302,-0.17064308348321414,-0.1765680215782684,-0.08195687058164937,0.13124699821774008,0.13276063402508922,0.16050834339466163,0.25224070306095575,0.208586915798964,-0.4120458077181818,0.11396110794664739,0.053229883020577524,0.1618560996818205,0.3082446831595353,0.24094608334120993,0.0027866006482363203,-0.04049723698881697,-0.149415377265623,0.22805748872186596,0.2774671771208313,0.24249937323894827,0.005760921557679322,0.3539486175231132,-0.08522911742894024,0.1243421859478802,-0.022221189241885035,0.38200454184336136,-0.29355251305133356,-0.04094209043576509,-0.3774093391408916,-0.014249811769033794,0.12132290885325023,-0.09547404443801484,0.20773985388282393,0.39695929375356737,0.01756729640761274,0.20238938579062218,0.279919465958169,0.19455415099520149,0.09139629569676387,0.062427328490364094,0.07372715248115155,0.34908994223749457,0.17371246569439103,0.24702591734508347,0.19185317282267106,0.3074842371170762,0.23627111023313796,0.27857226713027594,0.2968915167924141,0.21811060293923484,0.36232090949053775,0.03432244164266555,0.2139003413847138,0.25817958172695055,0.2985137789109928,-0.08699600501718142,-0.03397667297842261,0.07219040490004008,-0.2372367069807191,0.3678325564354195,0.0690626697287619,0.4448502596029935,0.4222827960742225,0.363205320045983,-0.004916118680105601,0.3781131413306756,-0.004510215215534376,0.3650672856920178,0.07514677948764024,0.2977461013129273,0.06968302912914416,0.4477392827100254,-0.01994830195094566,0.16505732873628218,0.020152462251718656,0.41655546754289646,0.43364921540802803,0.20149818137483538,-0.32667276251458444,0.12257084364574573,-0.029713079445848577,0.08482561003624062,0.24077776238089646,0.05732937640292276,0.009494828462376068,-0.08638278786748486,-0.30591182617255386,0.039855963743601446,0.24910172922771032,0.19820788749734727,0.7767960384583074,0.022743233831428587,0.2189604611196094,1.0,0.7274756104723041,0.5942554377070364,0.6558102605312681,0.31962790115620393,0.34596959400960536,0.38759456542856563,-0.10484907098429357,-0.02429580990249119,-0.0635810767864796,-0.12666277005842916,-0.10377174907009083,-0.05980101478372377,-0.2973116603093488,0.11906758713764946,0.328662297197278,0.2798132258888159,-0.24026251161404744,-0.1270290342673784,-0.04731009598663565,-0.2787341844307588,0.05496784458167983,-0.1897580195818276,-0.01643874772707544,-0.24597772301614831,0.010181376575221177,-0.10204207486636405,-0.1160330833474344,-0.05444147794381708,-0.24139749983008285,-0.18339896537325626,0.1303718922831916,-0.01400895992828564,-0.20424846736604094,-0.11250511291711313,-0.04344576288069081,0.0185331697446656,-0.21124529488710975,-0.26227691590368046,-0.30679470418418237,-0.19474060355414416,-0.09804494697026724,-0.13791121686935331,-0.26875695706884817,-0.3490288313640279,-0.38131478439086197,-0.030518266342169083,-0.3425711979247715,-0.02503541733008003,0.08715167994565559,-0.14587514181834124,-0.21200387529760675,-0.23551867055058934,-0.1583633597459305,-0.21433209110889329,-0.11616315555262034,-0.09201490232603601,-0.03739326772826805,-0.2300181559218609,-0.14647234860080602,-0.2081896336769928,-0.24082659372794255,0.01734118405661761,0.19789812609967422,0.2201183919700459,0.1537961096069262,0.20972386805990637,0.22280956306133587,0.0886535675108255,0.164928134071667,0.22635665136686586,0.09486730831313613,0.11724445164576952,-0.22477600603582043,-0.2057452059619588,-0.19973327952634995,-0.154635858286162,-0.17190718576599676,-0.14404368498323916,-0.09668239375734032,-0.1909819873558225,-0.15583270941771332,-0.13248775194945342,-0.12796879717269605,-0.3919590925891895,-0.3499195331009382,-0.18083458339941025,-0.18368319574805736,-0.1775800938672944,-0.3360394401476178,-0.3702550300335474,-0.34710906508489664,-0.34491040421505886,-0.18564937767556294,-0.19723633955425598,-0.19459785605372393,-0.34357175668279305,-0.36721066954355286,-0.4086222185621584,-0.39656134978794605,-0.3457579350165728,-0.20376861969728466,-0.20151067457766406,-0.3442084554928147,-0.32789101931313613,-0.3543465428708383,0.044293927396734246,0.10989299048630899,0.00634126494989037,-0.028046193997366107,0.030428445845072337,0.07668231620508963,0.02254911969975563,0.07886676638880101,0.09844233600561109,-0.09614559374524469,-0.07109266205044328,-0.05389181592053276,-0.04178732417804081,0.047575274504443994,0.04269367943662378,0.057960370143474715,-0.09683044474216504,0.006627887385216992,-0.047406590462040855,-0.10127001413147595,-0.10438256372068425,-0.13186713279430468,-0.0768893704964857,-0.04101510542179181,-0.004908294058887946,0.048891031415479375,0.07347164653656045,0.017675179095955895,0.14736239424535827,0.14177768724793124,-0.006536850213227648,0.06616826116516071,-0.09200802210271648,-0.0718528804354757,-0.040447021594720765,-0.07669435214259145,-0.01596694882027272,0.009267954246265309,-0.051696242551573325,-0.023783382670629658,0.05634484977023566,0.07841633832978007 +Acetylcarnitine,-0.019093611538448556,0.13577364921816304,0.17784068076506873,-0.20948934344261796,0.39312230201444587,-0.11809122919599085,-0.302485967008924,0.1668250692758067,0.04391516485438947,0.3789018849051566,0.33331713812373737,0.006872920263207819,-0.030797044972441984,-0.07101683376765797,-0.22021258136196198,0.034331503466633745,0.09913297192483586,0.26046087849029453,0.00745338848670047,0.07916278579374972,0.1511614077411586,0.23678652605154846,0.26593711576163714,0.1153606748580773,-0.09987702505568928,0.10894367182338788,-0.1565399605817001,-0.18721380854209596,-0.06188739368111659,0.22313677746929703,0.0013313908923841176,0.1610661813126245,0.32154622693314994,0.19400635751427422,-0.4406343600664771,0.10725435992497523,0.07080272593228049,0.07272491567935863,0.1935221935650926,0.16589179566361476,-0.11287266995236839,-0.03601753326058361,0.01837242370734961,0.2990180903047873,0.181175914010799,0.23198676339442592,0.07181003162068042,0.25202023661865836,-0.11672359944421394,-0.011591414409420834,-0.11702011908342477,0.33402849101665005,-0.3484891932512532,-0.11746421346249136,-0.35163982857048826,-0.009596720455375869,0.11945056344332418,-0.015957855003928226,0.224447785315513,0.44242528019539173,-0.19024940094284612,0.18485679518328643,0.1602059615145457,0.054505694899688595,0.033957297754060915,0.10813610448421392,-0.17596610404217747,0.23100185700915662,0.03701659116431307,0.08459915076627857,0.09854742787492123,0.19069028411214034,0.16198291336083603,0.1990249569325188,0.2446368556813777,0.1468678715200642,0.46117253118156026,0.1104713795021645,0.10150888943401325,0.2134489232037592,0.33517649204973116,-0.16281997464334869,-0.0346997584533868,0.12534306879658305,-0.21145391871357938,0.26868825138269814,0.11473060806913318,0.4021235285659925,0.38394831029844556,0.256203173388307,-0.07990029451089603,0.2454173458273787,0.13207558892504723,0.2336718395968802,0.03946551111605233,0.16131069450984523,-0.00949779085382373,0.36642511563447316,-0.15553190812007278,0.15941839152130974,0.021302007392435655,0.3822225768819757,0.3348183911838993,0.03648860110692295,-0.31335735544800253,-0.10753336344177533,-0.07692861349363024,0.0333114071549577,0.19277064602986596,0.02014869622436572,-0.03412282803828574,-0.09914610564753706,-0.3398574804489537,0.0849019203094931,0.08513037013837953,0.04108826670471733,0.7841887282260944,0.056468724745086546,0.10742473328298824,0.7274756104723041,1.0,0.5966435595528888,0.7821694956623338,0.41129518879678956,0.3148668635407772,0.45127655800323097,-0.05724211732945114,0.03840476080511977,0.022390160085443693,-0.06505204436717085,-0.08948396835231362,-0.026826222490523927,-0.313495641356316,0.22412365485919078,0.4078382786159806,0.12818494855336401,-0.2502673209454193,-0.1107335180659831,-0.07844064379534525,-0.34761737279903304,0.045373057433790165,-0.24908211833515356,-0.045877920995647914,-0.3087505214382631,-0.1392047705747117,-0.022487043388873012,-0.035769281945855734,0.06142090694367195,-0.2407864845503168,-0.2141882685095072,0.1782505256821741,0.03800883468123253,-0.16621712867714564,-0.09955750447443353,0.004204273907070471,0.0842572184491514,-0.192175189225179,-0.26739431617485676,-0.3389695980902902,-0.1754675406393831,-0.01879701480120869,-0.11559377961958797,-0.3018805343057098,-0.38265198115904114,-0.39518285685628524,0.05523647788061885,-0.3560134551620352,0.02660635211049899,0.14958293391654465,-0.06309104360363599,-0.1662614095036336,-0.19137708159425165,-0.11628606591201203,-0.1580161451552128,-0.03278406069509209,-0.05278101126098392,-0.001397030377012089,-0.21969075264307397,-0.0453186441983015,-0.14487057362371097,-0.1667455454381277,0.01764689980665645,0.05911287799160807,0.09890494538168754,-0.02225245793175275,0.03316897375725862,0.11222439765576762,0.04451568103753722,-0.015251455832492973,0.04965797209565858,-0.041462185665431785,-0.0022488034221092496,-0.13084954026046022,-0.05011054713943987,-0.06861627910520372,-0.06134111685891689,-0.031608269109923245,0.012556387412336348,0.03383432351029294,-0.09640035768665818,-0.005651667112608689,0.014450724948989099,-0.013869853974979212,-0.31160801103056884,-0.27940329777930284,-0.07786870590756331,-0.042981560623508074,-0.05224582498552505,-0.2847755371038527,-0.3336945363924727,-0.3097642960891765,-0.2766973016892624,-0.08498664336840923,-0.06536300996057641,-0.07425789912405455,-0.3525691003614714,-0.3326737398819354,-0.39871513762018157,-0.3639197599270271,-0.2754645246882334,-0.09875756514208692,-0.07611619324338315,-0.33270219698924147,-0.3208908685361041,-0.3480340324084478,0.032077078193739034,0.02127850664529436,-0.034165959788278195,-0.030745393028088267,0.03707635949762315,4.387138035445849e-05,-0.05311548883545445,0.040182043281307624,0.054239179958018746,-0.012713497394946314,-0.001989834949938042,-0.020687396698975447,-0.003976824852380889,0.05067910033383987,-0.016576311528485113,0.047936438736648906,-0.03439769880626449,0.021797811128189935,-0.10442694039730964,-0.06582350102531435,-0.10522401165869494,-0.1032252573857511,-0.05811701263577131,-0.01566828537630941,-0.031079731563505224,0.023794394341087304,0.0747820172543865,0.016414399518308535,0.10440883997618454,0.08899335597318536,-0.01576664644744588,0.03395325499802932,-0.06388290399895295,-0.06283204094828608,-0.029702174879456377,-0.04731735752820896,-0.0647354874183672,0.0045593689236368305,-0.03577401156801115,-0.035862703711029606,-0.009160238049917672,0.017639713392020293 +Propionylcarnitine,0.1286988380314451,0.14217251776494544,0.08710937360791757,-0.20131504576749035,0.3225968634993026,-0.10232305664749292,-0.23663410795860887,0.21399643936273569,-0.04049509622538554,0.3098640707170036,0.2584775117320867,-0.03458193045588493,0.06311842694330438,-0.03693044724916564,-0.1620590311440104,0.02608673394291313,0.07159111081482519,0.17542177329545194,0.0737283901642324,0.07553745440851573,0.05711323288397828,0.18866244809156849,0.17972277571984677,0.031795064678282296,-0.01460050316995469,0.13987213440743668,-0.25618927441028166,-0.1916293667031051,-0.05374789063938578,0.18879245178320758,0.04061829303187408,0.1539162210401668,0.23171006642268718,0.16873392135734874,-0.3834366001061137,0.08887718587859304,0.10139205901263626,0.06523439690447702,0.19809851938552026,0.16240423079147365,-0.07050206469701477,-0.07052267894393897,-0.048383289875540775,0.26166027242436246,0.15772868255016453,0.2456886238523985,0.09240110512668345,0.22961127773710213,-0.04685817543467917,0.03094075587160556,-0.059424283089390725,0.2912750719674496,-0.27691164953752356,-0.05534125057133567,-0.256141353284434,-0.03695965300736361,0.027944204401467932,0.007659414854171635,0.23297561548211632,0.37524475657400264,-0.10476192391724057,0.32092570443216345,0.27518563243719385,0.09698558378690675,0.04615569423715348,0.02094150755068677,-0.07297994663273666,0.2939519689228248,0.05467557657205483,0.19767555126572145,0.2334584336363911,0.290740988144057,0.30248649619163126,0.3212794802578536,0.3703774360027843,0.2843196860831506,0.3127727218114261,0.013808335988122998,0.054737667736807605,0.24655344500646936,0.2141818126574735,-0.09027404241495623,0.015545372092575728,-0.011371287699134239,-0.11994409373755117,0.25542315870743143,0.1715610230873092,0.37249563388316487,0.3868656245567958,0.2709806238998104,-0.022347236843604776,0.2555644133803759,0.08208242925427288,0.22991107532260258,0.1124203611631095,0.2622547094482824,0.17641499415497328,0.2550454277060271,-0.2934006108823735,0.08858037087603027,-0.06121910602413742,0.3002154966862377,0.3217675515754108,0.11165272821697977,-0.26412130987879573,-0.033448035209326044,-0.0716888314383529,0.09848809551407574,0.16701560856443673,0.06687331783099464,0.014511387904401067,-0.010362125543659392,-0.3131203687122285,0.15633785582442597,0.1686014837969976,0.12847466776642566,0.6126632181790017,0.016074477975234133,0.1755409013059718,0.5942554377070364,0.5966435595528888,1.0,0.5363373717730447,0.30818529229497277,0.40106763460061023,0.30289831230651,-0.023052518182335734,0.005512323179525738,-0.0302172478857133,-0.14726902743476689,-0.1969446191147682,-0.08722375252008976,-0.2968956255172048,0.19508056989800393,0.28019292040847077,0.16845111585144953,-0.17941435469746608,-0.005654033342436919,0.012826673471441424,-0.24617129000609558,0.11833502603258013,-0.13604012090368015,0.054787810478754854,-0.198510816520169,-0.04298751555769405,0.008890905289670981,0.023882923032120782,0.027587980421699524,-0.18170224604226692,-0.13680463458212647,0.11820609821048389,-0.027337457578071198,-0.17494630137457312,-0.08166347405018563,0.025854773861590723,0.020074825321379903,-0.23370216590281892,-0.23765237347361684,-0.2991712938111948,-0.14620390362008667,-0.06388807493689616,-0.19579043661486867,-0.28289312175964887,-0.3214567371440388,-0.3306536034274743,0.014372537919673124,-0.31012801439412596,-0.009983016861096634,0.06465511869529421,-0.15185253899504997,-0.1553170661271486,-0.22030519947292515,-0.16486336715386884,-0.15759119894706328,-0.059762530806801085,-0.040264547915754414,-0.017142468668297148,-0.16004926486767018,-0.027661210366229812,-0.0774226036586742,-0.1796876709454082,0.03249277647338812,0.13550546722730036,0.11634750285967496,0.06377595408633573,0.10648143225002249,0.1566062838333345,0.045904869320506095,0.05773705647539702,0.10707501343869576,0.03834388929641814,0.04803374736208683,-0.13345642187032206,-0.11773970078124708,-0.12718297066638123,-0.08086945764347393,-0.08235840381806503,-0.07284382506184474,-0.06056920890999472,-0.11940339466470244,-0.07860861938860672,-0.09481347816734478,-0.10357329739925378,-0.32446142575180387,-0.26836629078642676,-0.11941854164891856,-0.12311656937896555,-0.16422310393615988,-0.3267865735794609,-0.33610342956451295,-0.2904745198508939,-0.2970670806788587,-0.14606706315200788,-0.18438347706648436,-0.16582992641045857,-0.3279423694627953,-0.3385191718373337,-0.3955849453089235,-0.35649360962291954,-0.2917352367284668,-0.18338590616470546,-0.17242202492798842,-0.36483959983003617,-0.3457828411123315,-0.36488939107877977,-0.029769815757888132,0.036751321035948505,-0.028336662362602204,-0.025181230227162774,-0.005709238444429922,-0.009860676999132938,-0.025481300273937146,0.02272449669516716,0.07631141299186026,-0.06728500611292292,-0.05767444811493911,-0.03838103466779771,-0.028681759585205278,0.02849305542297674,-0.037312726403439,-0.009581573750627381,-0.03700512476199113,-0.015644244798039632,-0.00015017521737440548,-0.03244870021877962,-0.03917753006793228,-0.016454699765438723,-0.01787729187938679,-0.03099692479789666,-0.0661444422973369,0.016023085943625833,0.01451099800713423,-0.02206264995937706,-0.014404496655072584,0.016660500645000458,0.012930275769253425,0.046241945415905046,-0.03489200888708791,-0.03135414647956673,0.008639888382069251,-0.016820494920431108,-0.07091731721151188,-0.032221904702397566,-0.01811363138755648,-0.03397186875152316,0.007773182412491048,0.030662150547552912 +Malonylcarnitine,-0.06698116798778955,0.11213848795608355,0.16744045579713757,-0.24503500928531352,0.32346896395763397,-0.1032025584788162,-0.36416115255221276,0.17273820246809815,0.10681907224987977,0.33749285572856774,0.3045710802106396,0.08098239709629185,-0.030154396389245792,-0.05262012187974649,-0.19974475324116706,0.028854370461244585,0.05322360987428445,0.2192973536790716,-0.04829540601753135,0.19960087783226022,0.1267746541703749,0.22612559796721926,0.23864514743076304,0.16229384351538195,-0.1222915992137691,-0.0018151058383276872,-0.1296850015553441,-0.1744799664704546,-0.08039734428540878,0.19026557514964093,-0.027502197110295692,0.2932331472918994,0.3120365444751648,0.18183888683109356,-0.435475266935235,0.040666890437333215,0.07717656162636516,0.06313849575308156,0.08544693110306839,0.12303730526968741,-0.12203064020356005,-0.14515128922354173,0.08165328493031584,0.26694053693039954,0.13727222310163717,0.11926531838587959,0.10011963498941828,0.19058955158646393,-0.11802112503505566,-0.09233876331422003,-0.028260675789544724,0.32660755967516103,-0.38171747328644234,-0.10146417407125073,-0.3636377497981286,-0.03036603115256119,0.07570454888182686,-0.019387867839664005,0.15279893382145363,0.40167117315953804,-0.12007593601774973,0.08009788511571128,0.11924180556367686,0.1298261662985523,0.01121710156549665,0.12953074362407055,-0.10389368612404733,0.15182402916640897,0.02933231376127009,0.01924344722533067,0.025044730470406205,0.14966266048461743,0.13876046975132306,0.12857468787944337,0.17265138851734144,0.09267097157490199,0.37612433496065467,0.12701845296113992,0.05594792789840654,0.14466703194672353,0.26829148441941786,-0.23202906160207015,-0.07409871806138695,0.12980055124830722,-0.23058767532583566,0.17940264072839776,0.057501612659473886,0.32623832048591384,0.33928558308138845,0.1800575986675459,-0.09975922830432468,0.17037477309754231,0.18987093174617928,0.1743042681713983,0.049869224688412594,0.13292845034873635,-0.0010118192735488981,0.32438786312872003,-0.14061568476150235,0.08136826367525488,-0.012167570749782407,0.37791519675669893,0.25467442944784163,-0.016859889747211323,-0.3553324654717302,-0.14944666968687506,-0.05204474943964731,-0.05659535955193996,0.11971392241936021,8.410674948913998e-05,-0.04128198190340163,-0.07604663621865028,-0.34434118762166555,0.056035139751620194,0.07865187334305923,-0.0008184320790730577,0.6757635407673883,0.011112376603501322,0.07572844864451382,0.6558102605312681,0.7821694956623338,0.5363373717730447,1.0,0.3318660807992,0.33846507122103614,0.5663038424860469,0.029747330719031347,0.1555228556415311,0.1534589410224748,0.05803047690272164,0.011896271287151755,0.08217577301259459,-0.2921820943294469,0.17400714633186262,0.33510260557311916,0.06608399221234444,-0.2121809635875444,-0.06998768736556442,-0.02870340839081666,-0.32443605103938683,0.052165901282428755,-0.22655526077941018,-0.04514718369556804,-0.2774264800645423,-0.20199126555244581,0.0013857707535188913,-0.046585976502186384,0.0848667081108781,-0.22719522145483526,-0.19078252899135717,0.2429459522474694,0.10303476206833491,-0.17493838597813288,-0.030970605789298947,0.06780670286461664,0.13848818180005582,-0.16466572875580737,-0.2869869987258548,-0.34089675333052005,-0.1958092399743337,-0.0068708912310914815,-0.12038186497782363,-0.336629510256454,-0.4176426450046544,-0.4008561362368768,0.03052814696361957,-0.34669319620408384,0.053261618625716475,0.16280142961047958,-0.05992893325563343,-0.1328699967869095,-0.2024084690734855,-0.13410080192959764,-0.17513941049271542,-0.012965859566082967,-0.04997345581375021,-0.00290831688928566,-0.20641346264561963,0.03005569526353209,-0.07356645257920578,-0.09965359501841299,0.008617439460813208,0.04642649222115576,0.07798354148984674,-0.035704439787120894,0.01330372642426626,0.10801284867578809,0.05444562943125705,-0.05268729520806354,0.012698391923593842,-0.05181581232394235,-0.03319807780888048,-0.056533215740858754,0.03134934544493388,-0.005697152450057853,0.0102261383991991,0.05204003515151647,0.08363644607085141,0.10768828761982424,-0.019734949118071103,0.06232018082840767,0.06475224608810647,0.03572099359930305,-0.2726685671704876,-0.23288677093644664,-0.02714089841034019,-0.010267150795685426,-0.028237834936947225,-0.27150562514948523,-0.3267899681491561,-0.2937342104645883,-0.2586269107529319,-0.069982964401767,-0.060808914777069484,-0.051719345234485674,-0.3301734583725461,-0.34160689735439315,-0.398757319594359,-0.347182707444171,-0.2638911294993827,-0.09960317556402645,-0.07500108916145895,-0.36558485500628923,-0.3160477064554485,-0.3578122063391648,0.01705504610962546,0.038845454562032436,-0.03882555797946144,-0.02508997100427936,0.00723684193281672,0.008035751979335252,-0.03471279887557916,0.03021763947222407,0.05360784995983644,-0.026522902989233568,-0.005330842726696967,-0.00492606930246779,0.002165739023564,0.023505548555420194,-0.011448208589837538,0.053055851940288105,-0.04470584058891262,0.01369496610602891,-0.03331259965294742,-0.09234242342920111,-0.09724874906904019,-0.07404916593863921,-0.042182395454876745,-0.055738503328859816,-0.017259696972836407,0.037801774790726904,0.08207009473905084,-0.017423479494685437,0.09908278002513246,0.10236800367751436,-0.03703136841842177,0.029190118887121873,-0.06324859937232219,-0.05742840607304539,-0.030111396057095535,-0.021172463316865665,-0.04507150485121289,-0.009159548988544852,-0.05454417776054421,-0.039368594430968115,0.013343863909507876,0.02159421527973285 +Butyrylcarnitine/Isobutyrylcarnitine,0.022683970020059226,0.07972590383980542,0.17706189643545814,-0.07645598273443784,0.15784294366491913,0.08022017540048164,-0.21628467841168136,0.14040851327864323,0.24013960053994812,0.16441341591610248,0.1597248880523779,0.16420157260279528,0.043901287636539325,0.049756389351103214,-0.018308303642599524,-0.009451514941170672,-0.004779015437296167,0.04413175289516639,-0.1771542918593379,0.15874954443152697,0.005568070607139046,0.15091211074260824,0.24088673026887591,0.2372188513821131,-0.12764512974343006,-0.12922640911239006,0.010386590106756953,-0.10051391240788093,-0.037554914915926725,0.049444519774320725,-0.11827962761625344,0.20005388184017778,0.2149829961415633,0.06566353700563915,-0.0872862577161543,0.08683896124424469,0.09057342793441162,0.07926202006179425,-0.07570749156582321,-0.004754344179811299,-0.1724843353565678,-0.08820004100971743,0.2142900503296314,0.16585158801630778,-0.06888357454697305,0.04220268058753612,0.09705515668496052,-0.02420268687985701,-0.17352641824922418,-0.10257013784860049,-0.31701556020809823,0.07375626921708688,-0.13242385068970852,-0.08392129094008517,-0.03298166086889276,0.12212032510934022,0.05436979930126621,-0.039784921866068836,0.1515849756433468,0.21390297990246074,-0.19644438973877537,0.045310151297908906,-0.06139279797162502,0.012843911773703426,0.06327518898448549,0.07114672225979708,-0.14481298393795583,-0.012190887190573554,-0.16009034362707375,-0.1016826468221931,-0.020720106463191695,-0.08787846807783796,-0.11459388243977119,0.011330341382467224,-0.008180422060403026,0.025246772730526248,0.2913886733800081,0.12118375784996395,-0.09363455040728412,-0.034559456235736835,0.259292654097423,0.022182259352081773,0.08015295125963065,0.1588930861612248,-0.060867663051633394,-0.040386016631475244,0.05632151216646535,0.047062698427126834,0.03453485079561762,-0.02490556739966327,-0.12448800877209555,-0.06359037509274171,0.25201004960288276,-0.050910559915951156,-0.021409812666651575,-0.059327003581943004,-0.10172076216998578,0.11008422605278398,-0.068625518305982,0.08985754712835044,0.0660146058383082,0.10655356342169316,-0.0040157644903643505,-0.1408754118642906,-0.051671731491433816,-0.18580365020963513,-0.07119252821059471,-0.013793929539756587,0.03146521722912032,0.12818590060653345,0.07774028432712611,-0.01902802926225297,-0.1064754857625241,0.17515040164581255,-0.1505255579242029,-0.12851965982173696,0.4326283764089324,0.09363443526466877,-0.11613379284045565,0.31962790115620393,0.41129518879678956,0.30818529229497277,0.3318660807992,1.0,0.38283493322386786,0.4630128954902389,0.15612183566703683,0.23390663332837675,0.2263266037082708,0.09604425164322432,0.027721900984744148,0.07630719396775126,-0.06523582862233207,0.17779790217687377,0.23410730448248865,-0.0772027189320005,-0.059226902544721106,-0.042651531362205404,-0.07243972764732982,-0.18019443999293802,-0.05243240530277701,-0.16724375201747793,-0.08798089755068382,-0.16583273257227313,-0.11993435061540278,0.12890434304817086,0.04287714007667031,0.1016512031488062,-0.057602841833382254,-0.09816087207616658,0.1671161900247903,0.14204306536059905,0.01791748316524054,0.06160938322238102,0.048775347358660445,0.09165753499408921,-0.02717903341474182,-0.08301991344112501,-0.12789853413678004,-0.06346517743807713,-0.0004715529354864731,-0.05121701308422825,-0.08971723934619719,-0.15715098183414705,-0.19718176885972935,0.07770181671488599,-0.1623618183401355,0.04281024413163826,0.026593906995555135,-0.022744533273564165,-0.00997403454180413,-0.06983851736911088,-0.05721218096921905,-0.02357003182010885,0.06410392032180846,-0.013553783349941463,0.016372834953725737,-0.05238322215183679,0.012628353312344503,-0.03522971516457377,-0.04873132365440732,-0.036147134864237915,-0.0776844969893243,-0.044641212710869224,-0.09407985934742435,-0.09208137445609407,-0.0682097143107714,-0.061304882276592046,-0.11105418226978832,-0.08509115198883646,-0.12346225901750932,-0.12077032686548989,-0.0034964252330505247,0.06871148359130873,0.04008676005792899,-0.025745050687503674,0.034978411620822186,0.07456802905566047,0.07751830564642999,-0.03760928831115497,0.013321493709810546,0.03337976875789547,0.035830509484304524,-0.11909398509844259,-0.14321321229693387,-0.09869841957667971,-0.043392425818780285,-0.04170479715349525,-0.08739533964751256,-0.12636567199182658,-0.12158036132800804,-0.17454069134044992,-0.1086067594671363,-0.062118269592392895,-0.02528693735729263,-0.07627616841181539,-0.12363671077489953,-0.17164343415058944,-0.18335574710879943,-0.1543340423778258,-0.08622588765393821,-0.021392900479237906,-0.13964309353644347,-0.15959136716759934,-0.1569468666003872,0.0782519905551281,0.007598409855497367,0.013870158927652906,0.028181137456792824,0.08512114865294902,0.014928121302900764,-0.07086944945653804,-0.03342042289029343,0.05185883780241388,0.0865480490843634,0.06781361195340452,0.032456033665034814,0.022936539003119875,0.05955911635446277,-0.038716606796561526,0.10327353958065846,0.07895386844357162,0.07045658484978072,0.015469056547987142,0.030256574201875802,0.05556212006125368,0.050903528599515274,0.009686196209779842,-0.016864385030327063,0.036458222268935254,-0.00424894819759886,-0.032017994156771264,-0.00609616289373899,0.010678155141183001,-0.009687509541623934,-0.011160280915381586,-0.026182747560736217,0.093022849404175,0.06431096780337035,0.055428959731489966,0.009770070112422176,-0.04975880608500022,0.014413532119420727,0.0155672231420307,-0.006910001853053636,-0.056915171885060144,-0.06389067353695782 +Valerylcarnitine/Isovalerylcarnitine/2-methylbutyroylcarnitine,0.012211739374643066,0.06633670807523034,0.0765223763156876,-0.0742863758504737,0.16661683934805002,-0.04539099106835637,-0.16725680686433023,0.06716186438004954,0.001163285494212192,0.17745950481241854,0.16558362870682028,-0.02076835255638772,0.009192439649243146,-0.02788523273929332,-0.1915718904942336,0.013729776728245645,0.0157197349933512,0.0958220071175187,0.02777280197926756,0.040657046932492454,0.06103062946105159,0.15027235159124966,0.16939528593672376,0.037762079737952335,-0.08641950746067618,0.05433232234165164,-0.12445378443203421,-0.13420088514372464,-0.024446004402676094,0.032633154786064655,0.054891347588174925,0.10799106344862468,0.15112002495800692,0.1321301651928901,-0.14910921710601527,0.0007684049901242534,0.01480758399239436,0.023088984536183535,0.06915285154955285,0.061921040942941395,-0.024213503357013236,0.009392474846280313,-0.01631941202541383,0.1386374886929492,0.1063149139705066,0.11247695733148397,0.07413238278952271,0.13134635190183594,-0.03722362300892806,0.015302010683544764,0.034698505366408144,0.20174647487925573,-0.14499748507156252,-0.02940831229941352,-0.13047716782490365,0.14292921914694529,0.01878576090472189,-0.08303073025391991,0.10999577044350131,0.20881814807260077,-0.025631956039249726,0.02333693807735913,0.10968125786891945,0.07151739504043388,-0.00474431100576203,0.17751676588196125,-0.09617088231341188,0.09556150865148959,0.10562829916411569,-0.022644174386546624,-0.023447784970227578,0.08810111258202777,0.10382350646694712,0.05875308081523595,0.0878341614156804,0.015180403062833322,0.20118593393401316,0.18034278398140405,0.07956016916209006,0.06669851235086005,0.15465632319193484,-0.08508438616161185,-0.011282581408661506,0.09324023035224643,-0.09593408858506439,0.12289978589095611,0.06988561422699419,0.19408340419194375,0.17276603683371616,0.13100172831737936,0.08167212086657201,0.12162938059345284,0.07291073620234427,0.13001301881146848,0.06909490400232916,0.07190034971092467,0.015241026473921232,0.15868905954879797,-0.05833892589168609,0.014136073927433674,-0.05358857284117395,0.14522935786873314,0.15022305509360614,0.0611539963400215,-0.10322217707769397,-0.021952171107921196,0.013465821869752679,0.022999194030813314,0.07040104310132655,0.058951789186106905,0.05549602080539182,-0.056071335986835086,-0.17349688599212298,0.019884904306468713,0.03249346101730443,0.11756539307220876,0.39097030718694364,0.043889255263176066,0.13979912474386524,0.34596959400960536,0.3148668635407772,0.40106763460061023,0.33846507122103614,0.38283493322386786,1.0,0.3101884199956054,0.1578273829406165,0.21064191971975302,0.18113314410281053,0.09353266990724989,0.08128273530743252,0.15548434695701646,-0.12772324295526485,0.13771579333272346,0.162037207535324,0.11575468058639131,-0.11400459239796673,-0.061518051374172704,-0.013675841263256472,-0.17408524829478744,0.04886163326431338,-0.07762063752152935,-0.01753646040066713,-0.11080317878603295,-0.082974513775881,-0.032735218307505295,-0.06504190482432692,-0.02996244508002109,-0.0906093016386534,-0.10205807683376175,0.09374765842240129,0.012550239958116851,-0.10199334463472669,-0.06083240144191211,-0.028598223415249154,0.022252330218517805,-0.09176807500305152,-0.15139067044021015,-0.18139625093996864,-0.136010249369722,-0.022205130708483182,-0.05994117995590707,-0.16508397612671008,-0.19311629219271376,-0.20993712061193395,0.023045858428644032,-0.20907080846178577,-0.005718303112458891,0.02471456796286646,-0.09948985944366132,-0.09813493533202271,-0.17185017852952644,-0.1657975257477157,-0.12169351643349663,0.04824345273173939,-0.03810001074568981,-0.009395361939466943,-0.13341259453134488,-0.08229729068806796,-0.12793989656116123,-0.13200854869720527,-0.018318472046229793,0.05670145169430173,0.05087266000004544,0.03512039531963351,0.05918075680852568,0.0495337003341852,0.02391558946780839,0.02810268123646933,0.059718578589580386,0.02410957408146125,-0.007150584961856241,-0.09096325996000519,-0.06036230454271628,-0.10068651369381662,-0.05454093669857458,-0.04879554013550601,-0.06932040477744897,-0.06431223099970335,-0.0911440321136458,-0.08249611518970135,-0.10140878797337642,-0.09622637654369247,-0.2142896099147186,-0.19895512104698676,-0.13602252361877326,-0.14610401340044696,-0.14306474450887022,-0.2234865596938711,-0.23647487590861213,-0.1825020273719858,-0.22276245876907355,-0.15199250333078843,-0.16303187729866528,-0.13928764732598597,-0.21669060743024604,-0.23777455088874974,-0.2591335413669336,-0.2675461397297991,-0.21283916925312715,-0.16825257591789616,-0.1616806737666207,-0.2577342606587202,-0.24718885252158138,-0.2476477249149221,0.043844264417330164,0.07457160739837805,0.030558290284398527,0.013314102046846774,-0.00995469466594595,0.021111585641581665,0.029356062420125062,0.017147784809783184,0.05660292200742487,0.010741021672976215,0.039929296820528024,0.05855317699664249,0.05675004199940047,0.059428065118929854,-0.010140673633890061,0.10223858947900424,-0.01549031877038643,0.061262184011370825,0.05217448430764304,0.020552567571108613,0.02563408142808304,0.04654986580479689,0.0063957494608436315,0.005188316747912733,0.025617477559397844,0.037108744115882004,0.02207405883683954,0.0014070994252610466,0.046115415433190206,0.061098710760109094,-0.030399813539415056,-0.015868918886110722,0.05422841836500046,0.05737648460241763,0.06494925976259405,0.03584890942772847,0.023746662571743644,0.038101143888356025,0.010759139875964321,0.006810239631447387,0.04907088326174302,0.05123780297582589 +Hexanoylcarnitine,-0.17944036499830532,-0.0552515091148723,0.07520107258057109,0.030129172098340453,0.07454362522862085,-0.042939405158789544,-0.18604309929748664,0.020480934901605612,0.12632303041147813,0.11785479755564286,0.08914655867111891,0.10380308289800172,-0.07264845273564755,-0.039023026372939175,-0.1149349290253403,-0.07644691052061688,-0.06465801120419537,0.025258700639230337,-0.02895775864581334,-0.01646437824921562,0.13388741295463644,0.06653877915547729,0.06325212900648168,0.16185158161506621,-0.18049962694627575,0.006552304376873112,0.04990189122514178,-0.11092408640684993,-0.10817981214624764,0.10675274497489597,-0.07508605934609411,0.08220854473670833,0.089825235826809,0.0377020821936943,-0.19530537233786033,0.018668825747673246,-0.032475971058627144,-0.0027984075611312657,-0.01010451842366231,0.1633091288927741,-0.13614709425124302,-0.08360549164837033,0.1242187495955425,0.031629288625573126,0.10133690894262508,0.07401493237267442,0.12443427557386977,0.10227639835977323,-0.10933771358183518,-0.03941900868684088,0.06825364112922346,0.13755292490557278,-0.1509046472166067,-0.05761439985623892,-0.1874989810062051,0.016558686956295855,-0.0391249841686252,-0.05928997446868868,0.05836770754777465,0.13768233460226637,0.0027168199887085535,-0.01814664877508258,0.006944368548831616,0.007936406484061164,-0.13701275696262394,0.08015542536469002,-0.056214898591597236,-0.011881365705309845,0.0016824030303994597,-0.031178755089989327,-0.02141712982838338,0.02999133497258553,0.025428339891502436,0.005591672189458498,0.01828332056286427,0.023225074474470538,0.1745539760835812,0.11422321572594747,0.07920515087504922,0.03347782821494367,0.1334144648454863,-0.10425843779682327,0.016256957633159867,0.12128674851037602,-0.07569071744156655,0.07495489536039278,-0.06612844536289916,0.14714551640214793,0.12079466784585641,0.11180541433021918,-0.039363702621812914,0.03566142512679628,0.08019737919845427,0.07767928859520118,-0.1275716784635044,0.05595046200923036,-0.0016474036208985977,0.20109714887607347,0.023634603301892987,0.024175663253577968,0.004771655244116068,0.16359291163861783,0.1095308071307714,-0.023594840979776707,-0.17083608089942853,-0.03663931039840952,-0.00540900009837662,-0.027281352630118893,0.1552422971422253,-0.011412753846921836,-0.016190675750726868,-0.09417229748986868,-0.11880650207554544,0.014840672388325869,-0.015085343260288295,-0.1133341035791624,0.40045502097812136,-0.010248120538725949,-0.021143432834838646,0.38759456542856563,0.45127655800323097,0.30289831230651,0.5663038424860469,0.4630128954902389,0.3101884199956054,1.0,0.39211664564977666,0.4409502138250825,0.4276728901391976,0.3347075565190094,0.2485559540082367,0.3458383817675764,-0.15803551362877336,0.04802369786769531,0.10597963054104123,0.0349300484286046,-0.07247745354823856,0.012358973904679367,0.0019591244323497333,-0.1692760640127767,-0.007876888233000317,-0.11255680870013736,-0.07065957439612684,-0.12960720503316206,-0.1372122031893963,0.02012210663974571,-0.0652735831867966,0.03742816358858046,-0.11864231802901519,-0.11546564749148781,0.14484999548402297,0.057042580124397745,-0.11134287353028055,0.026402927344919443,0.019292923274042792,0.017732348191210934,-0.12270003632581133,-0.145366453079809,-0.17579224811574615,-0.1465975454868487,-0.11653178268700605,-0.12784817480028426,-0.1687135685425271,-0.23131779368240654,-0.2801200713177146,-0.06141366750824554,-0.18555335784713126,0.008172503753912366,0.023182998080099774,-0.023565066847694143,-0.04700314970948206,-0.14851637801616896,-0.09545382477766037,-0.1552966044688657,-0.11450507959743689,-0.10114026188288902,-0.015889694848558344,-0.1110797872296056,0.004579360351212809,-0.06317482030486976,-0.07349243963880497,-0.08295790617393053,-0.037946496106303254,-0.010202856102604674,-0.06714512058660273,-0.04501544897345216,-0.004939372992684381,-0.06858087993184575,-0.07216574879247029,-0.034698687983155986,-0.11013128508686708,-0.08638420185200808,0.0906586343443587,0.12955578009984248,0.03177250421882323,0.10979959805842099,0.1378054330092475,0.11490969656893711,0.09047207633459943,0.07945114552727592,0.08650429306455926,0.05534877092312135,0.009930987650086069,-0.0860322807161875,-0.09101345306242636,-0.014708155111539587,-0.014381553010354412,-0.03137233539902605,-0.08081700999984612,-0.11316750800895288,-0.10234649165605486,-0.13923142839645233,-0.070596857586286,-0.06412946178839897,-0.07237079085246728,-0.1596140079809416,-0.14266041585601838,-0.18477050393853975,-0.17825991130693944,-0.15526937270446714,-0.09366300857699443,-0.05010351743906088,-0.1577030098031826,-0.1465939667444191,-0.15960576837878943,0.03142137731200367,0.07923754403679287,-0.005186153588561305,0.010621736393225716,-0.018884581646138494,0.01210253100573337,-0.03999268682198307,-0.02997402674972334,-0.015509888926674553,-0.0022002724081307185,0.031973013350748744,0.04613533166250914,0.026418139876432982,-0.005686720339742057,-0.028909583311907208,0.03908738342872463,-0.025812661612883512,0.007907009199975985,0.030892636829143096,-0.08152263122717952,-0.09009600593083032,-0.08786431439523928,-0.08326372049611655,-0.05951251529591781,-0.03794487942349044,-0.019666021659491308,0.03235928100069522,0.011598829958411914,0.07040489043940165,0.04578786275188642,0.001955214725764123,0.030913780490240222,-0.0433450643521746,-0.03382615808008913,-0.052901110813090506,-0.05486448754305637,-0.07137251240155991,-0.01466010132537577,-0.0021475183624719354,-0.01582878173335863,0.0002242559560362049,0.006786445329295845 +Heptanoylcarnitine,-0.02245565032420671,-0.2351236363281933,0.10897198444250995,0.18409592202317113,-0.23212495352510704,0.06808584773814601,0.12296896603371865,-0.1793870341101451,0.16076006476777624,-0.22619021054402758,-0.1811628298574565,0.16799145720995676,0.015868425186505584,0.16340789809882614,0.14808309995619037,-0.12345154445853909,-0.17207717578479007,-0.23264637761139506,-0.15865078588090759,-0.09750934136000364,-0.06691848797355958,-0.19104432799599086,-0.19195518166313558,0.09781580186029787,-0.04071838059329892,-0.03583130408967848,0.21407796646931024,0.054981866021032076,-0.008881622745253594,-0.1516265643666056,-0.06536208886527915,-0.11260705091013698,-0.14617854540418593,-0.1660534918977097,0.26745038953259825,-0.03606280728366149,-0.12196326130779096,-0.15897640949475533,-0.12506597416768273,-0.0074375068723982,0.02364713450666393,0.05940010787953204,0.1661994538526979,-0.185060768295098,-0.09636294614072895,-0.03335495805587413,0.0526812862881606,-0.15468310867110427,0.019339944473171035,-0.022604642156286978,0.0011086066860908446,-0.1935783887720901,0.21971402934030895,0.007730983468559335,0.21914724205609262,0.08611226492014411,-0.012225208101635718,0.03051798362819063,-0.08586924843936378,-0.1667654471764388,0.022392396237208127,-0.1363225532714231,-0.17380386487577773,-0.06320514942387392,-0.054589350243258936,0.041950745548680765,-0.050751057729580724,-0.15639708182956935,-0.04947208406494348,-0.18761783126951298,-0.14921927779692845,-0.1925464641232589,-0.16844671755518623,-0.19122970410876391,-0.20423469065579442,-0.12325054538442183,-0.06102514839406044,0.11171583310471396,0.05683231031508669,-0.06943219106849492,-0.03597690359588622,0.16963941294645687,0.09841142109956097,0.040668996818327426,0.23384091087909323,-0.10268949359328934,-0.057590727255483,-0.15234784676845367,-0.18525438859497995,-0.11935930247012165,0.0025141002643852893,-0.17510706071460053,0.060607129408995104,-0.15237032353519808,-0.09135802249705094,-0.16795114090092184,-0.06804760389090447,-0.029065332117868763,0.16558906810408824,-0.07144910104089564,0.024016384792765667,-0.18116703718509716,-0.1963845685575669,-0.05440342319505741,0.23871496119722668,-0.06333162708572371,-0.08042469775472107,-0.041943136586480474,-0.061295764427805974,-0.05393253949245812,-0.04915991922080457,0.041669584728894836,0.09272417606729483,0.07695759053532114,-0.19867267993477297,-0.19090910109132794,-0.07231050893111847,-0.021285099793232076,-0.137716334022909,-0.10484907098429357,-0.05724211732945114,-0.023052518182335734,0.029747330719031347,0.15612183566703683,0.1578273829406165,0.39211664564977666,1.0,0.2860039709632756,0.2501699059039656,0.23144749903424375,0.22816362542540994,0.21544015260874028,0.1755464287409602,0.011871725276649195,-0.129708380832485,-0.04656832845781159,0.13054157559887028,0.007586971005248084,-0.043849397079719854,0.09892254938470685,-0.1394947758457664,0.02142207504076891,-0.0871560417157014,0.043907474585172176,-0.07619702439424623,0.03680773733056669,0.02452142557464704,-0.009766710088724411,0.12870369813311824,0.06185970265667125,-0.10491835929624717,-0.034980978122216816,0.06239646278714285,0.014288373158294272,-0.05751661107047351,-0.09216883817163067,0.04524156158175001,0.1177470648653631,0.11722116166072094,0.055460083196390994,-0.0405563710399738,0.0251605500754303,0.13622170655150062,0.1261571655396556,0.10625718395814761,-0.10465929228249193,0.13492744096786846,-0.09020125870187228,-0.13135273928247834,0.04222166190741146,0.1452273572487575,0.03652371513181724,0.029278562270141372,0.018427763804496188,-0.029548370722669984,-0.07813835370072837,-0.06172496652757696,0.034372337913585176,-0.03526600726331161,-0.027596456757380535,0.016931119514634337,-0.07914982344673094,-0.18039489619368432,-0.17356704409861787,-0.17655589359273152,-0.1767912097000795,-0.21012881193870736,-0.1665205383406559,-0.17033744489529823,-0.17166535012668174,-0.17727475463373982,-0.1570977350581055,0.07184428366949876,0.07361940679201041,0.060153189329124286,-0.002110714913543797,0.002567681618134479,-0.0022028185913432023,-0.003550446597345892,0.003142755668638928,-0.02424994686858891,-0.028242619544631347,0.0004978974406005237,0.11613091491109599,0.05728237306319061,-0.041232817489722066,-0.04325025443520717,-0.020282705655350036,0.14504169509124296,0.14161355862048705,0.1373444340935061,0.0462839995258833,-0.05558666006447989,-0.01891089965358336,0.013810112740400145,0.1618121327538436,0.1374252580469671,0.1447978962880217,0.10720080143948083,0.07306697171298406,-0.03531942657854092,-0.00969308589516733,0.1517872431347279,0.12466756756631014,0.13566077895578443,-0.006980157171664499,0.01030372331223554,0.037693150289436726,0.10173338455604579,-0.008387861184139223,-0.03696814696941117,-0.021615894361342685,-0.04397970909831151,-0.061062974999894194,0.048533259454126065,0.0475947405833443,0.08006037534536341,0.0528376228054378,-0.024573036403790837,-0.024096015469529046,-0.019666750798178635,0.05378860460783497,-0.0203277566784667,0.09662625546461212,0.0135939500582327,0.00527629431772828,0.023491855126509947,-0.02525321986495318,-0.01405416769704945,-0.014496250821296009,-0.07618215674244087,-0.06572697919200156,-0.016440769684899513,-0.04262606708918515,-0.0356327782019625,0.000718314759775062,-0.03232903132439242,-0.0142791369989784,-0.01492565917584114,-0.052689745926969025,-0.03243987865620032,-0.017740854620544914,-0.031099182670999946,0.04130740257936318,-0.04184917777364568,-0.0839282369862367,-0.056953732108418066 +Lauroylcarnitine,-0.05179196176796955,-0.18877464155158466,0.022008150709732107,0.12432982541024157,-0.16483504403658386,0.06913990094564419,0.04789175132340182,-0.22647954627562716,0.16875816156461176,-0.14215265818297868,-0.15349529144938384,0.1340846603524088,0.009748770527734832,0.14150688525611724,0.157188733527693,-0.22823587314065427,-0.07994554167990896,-0.14779256954185072,-0.19941919890237633,-0.06514434644186376,-0.053105036021924706,-0.10010867604295053,-0.0698828227301878,0.11782251915555156,0.034580050192169566,-0.14687455145178338,0.11670196938296777,0.08686545808458347,0.005634514679343658,-0.19141593413897656,-0.15169366801317555,-0.07665939982621525,-0.07806277609982404,-0.03604978503744643,0.22810073759562746,-0.0005902384616154395,-0.09587971907892838,-0.17831621562484976,-0.24066028640678,-0.163676274744804,-0.06288544030514806,0.044278308069852175,0.15367613107000105,-0.14372725577389175,-0.13306762241441986,-0.17318389060972916,0.06798818184197794,-0.22645432773474058,-0.03844221993151538,-0.15812474754687592,-0.020278338551574748,-0.035348729111182114,0.17524939457873126,0.0961671433902365,0.14834771183956022,-0.062043809193522856,-0.09185030371098835,-0.09090688431693111,-0.13467694225185425,-0.1658742236037297,0.003443471041734456,-0.18757040510240333,-0.23239274356776782,0.013658404730888914,-0.1783799963516536,0.060227408407121895,-0.07488154872942711,-0.1926432241408089,-0.06702138712248018,-0.23517992175659685,-0.22733669752971142,-0.25205810404606893,-0.20529742902049905,-0.2549739567008835,-0.23093988591966585,-0.20410538077446758,-0.1495248846691626,0.08336015545083615,-0.03154948189587109,-0.21168270673661507,-0.004589612037809978,0.07100306223541794,-0.015857244837464268,0.017898491699180407,0.18133256323842437,-0.16996530390557912,0.00146925157189713,-0.18330777925587868,-0.20325556766247363,-0.1898895739595261,0.04582124662388137,-0.21674730030463604,0.08547588268679644,-0.11347152684093235,-0.11768197010018357,-0.19230736789142558,-0.21018146779958236,-0.07978397143001012,0.02270768703893448,-0.04765906078361054,0.08073660321687155,-0.060848402330548924,-0.18537402499585975,-0.13007953097957922,0.14233216154688835,-0.13769792022385485,0.030533524286441373,-0.09638248201264825,-0.15602753647419906,-0.01556098460981127,0.030771103649561368,0.08597686084602163,0.1703455762371673,0.027841203304790833,-0.21227167609856554,-0.18362539217556997,-0.01400363646591547,0.007420736261392652,-0.16123016803672596,-0.02429580990249119,0.03840476080511977,0.005512323179525738,0.1555228556415311,0.23390663332837675,0.21064191971975302,0.4409502138250825,0.2860039709632756,1.0,0.8444191440855281,0.7257206731210646,0.611367487298817,0.7081589917159188,0.21188965561579606,0.02807278978921843,-0.1618882305094839,-0.04640924549263027,0.21151344219435828,0.042512635591976024,0.03587738746685431,0.048539810797138996,-0.15629730223798438,0.016909922132988586,-0.11975964629623721,0.05024471830487283,-0.13496541474350843,0.17037986286146914,0.10655068023232943,0.04208901833356099,0.11873719652915803,0.10517366052987233,-0.010471748343941158,0.10949580478014753,0.08529047506199636,0.0768080921022852,-0.042605292945049854,-7.965425491710304e-05,0.16007037172799085,0.09148026414958596,0.15206499003908927,0.019215638313354273,-0.01827119655018044,0.010854714516471135,0.05644645965520955,0.06796419371169865,0.06567272392171687,-0.08464642891440198,0.12927370249464876,-0.07551515911214117,-0.11569533641451561,0.02710158035302414,0.11128675499820767,-0.020527870965806088,0.010477786871597762,0.039884980085486466,-0.01668458043414519,-0.08344881668342986,-0.03576375567600062,0.09804821910708798,0.051255417281933204,0.02215460718281949,0.060530296666880305,-0.08074383484621565,-0.19883822631756398,-0.17875471119987288,-0.18565189554487233,-0.20042636378021175,-0.21400410214179055,-0.15789471267177033,-0.19571627613096496,-0.20232985195704872,-0.18496059094631676,-0.1942544495573897,0.23891360210504087,0.25292978243141667,0.23235962803151533,0.1404028575235626,0.1891473889105764,0.16440245395395722,0.14877008854690332,0.12161747141673124,0.11141230413355199,0.10475524914221482,0.09940951271632283,0.13681241242988826,0.08208616990989083,0.04634706268625099,0.05991657935070925,0.04900202730442046,0.10695464387936657,0.13334224094314515,0.10551400036555152,0.0604352841919894,0.00997270758568428,0.011858976050475537,0.017816153011663213,0.1302307646623913,0.10226563332614255,0.08586731946825622,0.06936129116929567,0.058426654429791905,0.011438844215095815,0.006495341241383117,0.06636156185572016,0.07233584607844375,0.06910636813974368,-0.026013455748852953,0.08313937264805996,0.04363738050069994,0.017901330149478104,-0.07828417188399366,-0.08574758430492292,-0.03074140701779017,-0.08284912463952511,-0.024965737844715345,0.006894482273659167,0.043395229657837306,0.08001088101446224,0.08000237494626163,-0.009958025914910261,-0.06999431584152638,0.023086866322476057,0.015209943535483236,0.022979514165582183,-0.01775267630382342,-0.10570603132242119,-0.07451435375801045,0.00172925961389506,-0.10080518138206462,-0.08436498340564466,-0.06183548073616731,-0.03891839429334038,-0.08664447136276299,0.014230395430556597,-0.0036323577282893374,0.020472711913836955,0.02880870034987375,0.007717004137406541,-0.024026233179157523,-0.03900711063454399,-0.06761344140593512,-0.04927914541380921,-0.046514517645559514,-0.018293898918908463,-0.004752470173911596,0.018675423494757544,-0.043392500812610854,-0.06597072776542603 +Myristoylcarnitine,-0.10653741483685486,-0.21556811404347676,0.011377614573011362,0.12249510128798097,-0.20713868738819913,0.08694614589882192,0.035770927010936086,-0.24779051686108614,0.23846539944749684,-0.1629866133004974,-0.1746293890299645,0.19607492322313613,0.027926452084944795,0.16143856689986177,0.1810695762487972,-0.24643706780038133,-0.13466691381185875,-0.19503078465999973,-0.24510673333748947,-0.07225716629620874,-0.07070117572412646,-0.12726966367488457,-0.08787292465950364,0.18528774541745877,0.03370560052688168,-0.22024637929730737,0.18790198208491962,0.1020261098419103,-0.0030248574018012643,-0.2188860176130655,-0.20729170026336569,-0.08144829728745058,-0.09539064020714544,-0.06284580086885905,0.2120769683782341,-0.014107886416419864,-0.10154081022199134,-0.23956188498225622,-0.2869160887445522,-0.15897779831286662,-0.08723322638044519,0.003434014904261125,0.22405599807983556,-0.15464261432269025,-0.1565411858441597,-0.2025752262782307,0.13649527651487686,-0.26135558199934483,-0.1135433431125146,-0.21478049278932274,-0.09082507091141312,-0.07592416446481971,0.11551921132639136,0.001195448620242792,0.16324058417681192,-0.07776752978415459,-0.08311533632060294,-0.1333844260611806,-0.11379055226771033,-0.15234357355197084,-0.00620709342431341,-0.16458829128292013,-0.2605028951134449,-0.04849797678524318,-0.1935195761090319,0.020096773213517275,-0.08583513932254941,-0.21156247711826023,-0.12683316681090048,-0.2354676264601841,-0.21208823985777295,-0.27149827859141307,-0.2300215969445975,-0.2494062226580897,-0.23654641579945382,-0.18397270522341555,-0.16368838289813778,0.0721928756986109,-0.07147682992484475,-0.2307794520979872,-0.04149117065755673,0.03964947958056066,-0.012336730746620585,0.03937820627980682,0.1484676653744366,-0.21897303756357253,-0.09826277065177356,-0.21782085587857752,-0.2388912697996725,-0.2392062382152241,-0.041106603711798466,-0.2628888312982248,0.10802677797969783,-0.16228613981438458,-0.1490242723556823,-0.20682617019633093,-0.21787158541426932,-0.10761238279421918,0.06642763489099028,-0.07017555249851688,0.09443234863924256,-0.058157601657356874,-0.2306549417565342,-0.18952498767943715,0.14025263969540622,-0.17398615118498884,0.042450358426867625,-0.11891971630608629,-0.17408043540623547,-0.07498563008654052,0.02201700606314723,0.019934365105655126,0.1609989323220678,0.021983792285762617,-0.2517815991827124,-0.20940875915519114,-0.03477710221486639,-0.056784484073247224,-0.20216104588938938,-0.0635810767864796,0.022390160085443693,-0.0302172478857133,0.1534589410224748,0.2263266037082708,0.18113314410281053,0.4276728901391976,0.2501699059039656,0.8444191440855281,1.0,0.8930199819042057,0.7424993261013338,0.8579153068177956,0.18578936289368744,-0.009769109654008403,-0.20414016203463548,-0.1236964840700462,0.17690779887039532,0.05380703468839088,0.0559163207312438,0.006113814361841782,-0.14898964748667815,0.05347659816847627,-0.14139483308716158,0.08862423585011985,-0.16706489897777005,0.14999030235465158,0.057648288916094116,0.05443982591654136,0.10961055998594656,0.1104961610923907,0.013001247401898893,0.12382478787433296,0.09279960411615619,0.11063455114087252,-0.017923205031847654,0.011990409031881815,0.16015939195866136,0.11309139972517127,0.1938868089027119,0.0377981346004934,-0.02519249547274304,0.058456822533448874,0.10077626111858419,0.10091097900148174,0.10681610732484824,-0.07407041481495596,0.16755999687571504,-0.05295359479965243,-0.0738932100454433,0.0842423941640498,0.14310714216788173,-0.016222059546965657,0.03231502021011384,0.05839792786624221,-0.023983014169973775,-0.06333106394123765,-0.01268350400740311,0.1282858753987978,0.03647259953858033,0.015919482470821974,0.07277639932112574,-0.09137372825318463,-0.23688812798462727,-0.2058767081326161,-0.20661474674061903,-0.23930825437331782,-0.21637614787222598,-0.12314803999554193,-0.2279868665710736,-0.2424894306915935,-0.18459184594654698,-0.19733217150384103,0.25319364002572464,0.27286689476501125,0.2576786800115457,0.1738727943273617,0.21848434646740955,0.20286353369493235,0.17518882747193806,0.16344112286272433,0.1490625051585906,0.14286659948886862,0.13845504533435093,0.20233279284217934,0.1375507577186875,0.08254411686067627,0.0959234700476593,0.09790461689758752,0.17545530897054837,0.19050130125441783,0.16054707264792273,0.12041659949769072,0.048256592789197576,0.0649132543086033,0.08252324597132202,0.16527754404851655,0.16577549322043791,0.14363502898640726,0.128798391400604,0.13270252657984677,0.04514252005062143,0.057541447289767865,0.13292935363111283,0.12463611203683186,0.12865358981384345,-0.021563557828219164,0.08935085023249831,0.06008909477252423,0.02037494365200692,-0.0691390576417389,-0.07390447566116706,-0.04099229332699068,-0.11457668852516989,-0.031755866017745826,0.03153019849291743,0.06493444133526871,0.08785512158043943,0.06457441229016299,-0.004440940239496339,-0.08462137594914491,0.023817643120009262,0.044322770928796426,0.038465072288503724,-0.06075729907315894,-0.10810704872011397,-0.07251611479976074,-0.008222704833146447,-0.13055570541607894,-0.08685530306148843,-0.04063975108352611,-0.043117691147513466,-0.10691118759950065,0.0003091604421606396,0.0026576480701213908,0.01596631167429351,0.005772797293053595,-0.011036104905264492,-0.03404846371127523,-0.055113585418318185,-0.09568039738874917,-0.07153029413231753,-0.05323380044267658,-0.033709679262335694,-0.02137746355157532,-0.0019205203713085325,-0.030348003079162463,-0.04658858252521665 +Palmitoylcarnitine,-0.11479126382711088,-0.2841679343560793,0.006965093052314127,0.1524947403934204,-0.2591879639333403,0.1110070836735584,0.08890895960547072,-0.27832896038473004,0.23101948971952302,-0.2276591750883394,-0.23677195833483874,0.19865102551036634,0.012343872730400529,0.16491933663588745,0.2083113582127216,-0.24891934452363595,-0.18257720682185244,-0.2502289344488993,-0.2313901445202339,-0.09188766566636729,-0.033752484388853574,-0.18975439602719607,-0.15060687972739842,0.16742197488410715,0.025917111710604943,-0.22797636322282402,0.2239817305898093,0.14852527661376283,0.020852472780021978,-0.24986008964418918,-0.19039852339897273,-0.13165723980044033,-0.1551005461638312,-0.11186917423698924,0.25807233004826996,-0.020833009813510276,-0.16681353743897287,-0.26420508449574137,-0.2971646907198534,-0.16982254716825682,-0.08967769334281474,0.03129401166917008,0.2256863013991008,-0.1979408200543891,-0.1649547936713712,-0.2130686562744938,0.15397029652235086,-0.2711882351229328,-0.12012014728856778,-0.18822003294748682,-0.08010477264733078,-0.1450428595787809,0.15344673401420697,-0.021522878440843964,0.19615373326938043,-0.06516861793331133,-0.09851548118123282,-0.15148506787089716,-0.1454011281033511,-0.2044952600113616,0.05205452427294117,-0.17148066551940686,-0.267066703681695,-0.060769855716837885,-0.15549994057771768,-0.006520913166359766,-0.04819092866474789,-0.2090656352509978,-0.11159432254453487,-0.21784625521922144,-0.20125255623046095,-0.2593916353110025,-0.23994960503012336,-0.250906997438574,-0.2549718172818355,-0.16584584402615954,-0.2270321338116189,0.041941215760200046,-0.03331676848711253,-0.2096804798664348,-0.0781608050915142,0.045484163877643806,0.008107715316353918,0.03676369069431583,0.13115548709653774,-0.2139962162009397,-0.185955338097954,-0.24112276333338692,-0.2703375356305768,-0.24686606173437015,-0.03239259169066861,-0.2665462555180735,0.07095112070379934,-0.16529052058216698,-0.16271276173635874,-0.22150079011750248,-0.21548142174294527,-0.10216013298168289,0.14200474586255912,-0.07014441629393936,0.13216558833396763,-0.11045183985635375,-0.27710541637386077,-0.18330870783415532,0.20407016174703344,-0.152185614708634,0.06177705999043919,-0.11408154176286527,-0.15403956746809797,-0.10630910962882183,0.021978694367650733,0.007035251778241948,0.20759262833054196,-0.02992557202878328,-0.24884963616925687,-0.18212131083561955,-0.12759784614047512,-0.07879667754362729,-0.18827255020197164,-0.12666277005842916,-0.06505204436717085,-0.14726902743476689,0.05803047690272164,0.09604425164322432,0.09353266990724989,0.3347075565190094,0.23144749903424375,0.7257206731210646,0.8930199819042057,1.0,0.8864311259113173,0.8955929890160451,0.21525968190731842,-0.0684959127045407,-0.2477729723033851,-0.12202240741955256,0.168740782536727,0.055236503214414326,0.07091783437917949,0.0660926108869931,-0.1332565082749863,0.1256610903018044,-0.11296689376680104,0.16636712333564987,-0.14066236929508277,0.10420186222681933,0.03394546859505975,0.04974874564100956,0.12133647534494818,0.14391749843437573,-0.07475391420155823,0.05462053291989896,0.10008378781207034,0.07508852586490031,-0.06887807354992885,-0.055536385468870644,0.163753533891957,0.18055061310135007,0.24531888522782683,0.0536097449110893,-0.0388856424889582,0.1100037097931486,0.1878193032642145,0.19071809961726657,0.18775829482474848,-0.07748336581592519,0.2682645024514383,-0.07956827037076507,-0.08267767992560904,0.11824756878565923,0.14061694197893798,0.016986926498571746,0.053960836794815475,0.09453050111040234,-0.05230992331696194,-0.06095574403900206,0.008529666840874153,0.165837590889528,-0.017689524235148375,8.033708822574899e-05,0.08235107881528204,-0.12685370293707088,-0.2677289329353093,-0.21905976489466283,-0.20947516444197797,-0.2543732831332644,-0.2347653781392196,-0.11381111775338963,-0.21406006285289203,-0.25115129959626065,-0.18157123034507544,-0.17497604383898016,0.19103858064105458,0.19569091643087855,0.18010726625737522,0.11333901799225876,0.14152265388310112,0.1334703407740253,0.11527272861868541,0.11091137525953446,0.08801664252165856,0.10372621455407194,0.12585644551591021,0.2288026994529421,0.1538256021156553,0.05383032060331003,0.0804517915847772,0.11665591633526048,0.21987080263305597,0.24430791329500212,0.19212407292657702,0.16962422438787728,0.06070677924211981,0.09030817615644077,0.1036821448478403,0.2266101422132236,0.23340859789032029,0.222883405546341,0.2132494297436048,0.20486421755549633,0.08086399012011769,0.07559829544243589,0.2105777359208064,0.1891787249262876,0.2460271342596339,-0.0016361871926363427,0.0763755998790059,0.07072721770279605,0.015788552187902857,-0.04730145176461333,-0.02548280342881493,-0.02415588832824572,-0.11078387960090474,-0.04266572857444854,0.048660879127971894,0.08674277825084291,0.08882531678361491,0.04726381858215104,-0.012598477917298548,-0.04692722869863943,-0.0010418624865595096,0.06261153467985554,0.023048691867939727,-0.03704935956062447,-0.09590629815695603,-0.06882763334790502,-0.003458402650663029,-0.10613829390606369,-0.060512081451165135,-0.015409943908257302,-0.0442366590339897,-0.08343192005195493,0.028753444582146848,0.03223623018926825,0.023484953820769882,0.015305034061356788,-0.008400248515582343,-0.04600783075898502,-0.06534858247425843,-0.11199860802186959,-0.06314744608902685,-0.043692284896815696,-0.020709022458637864,-0.01120001917616759,0.0007800663898291946,-0.014083262374689428,-0.02796967718516849 +Stearoylcarnitine,-0.06957510345342413,-0.312330703514338,-0.029310707182112934,0.18096139359345803,-0.26213067144021346,0.08223785047180154,0.157921229713019,-0.31003631378721724,0.12228302237098822,-0.267391774702896,-0.23696618424623467,0.10456852676001448,-0.02217439345430321,0.1242895865130969,0.17065117529423598,-0.2143006852357388,-0.19845911637350483,-0.2630183327690666,-0.14837823986050078,-0.16366216886517435,-0.041892713461343475,-0.23918007624568377,-0.21142643932226832,0.05120150357670866,0.01682514337808658,-0.11888009822347452,0.2183029680326648,0.15634995590925982,0.03764196808829893,-0.23754263319485142,-0.1350856785326751,-0.20209822348484122,-0.21031052945895884,-0.17147393744944459,0.27822581223536663,-0.03414155355671411,-0.18720914972640929,-0.26908969443146674,-0.21488372138977666,-0.11369560435598913,-0.06863436109585051,0.07163945945706471,0.10604455598332542,-0.2535584612813638,-0.09906333312552396,-0.1627258598881302,0.1114296139028986,-0.20656956414249944,-0.0779111140880691,-0.07481666931306487,-0.05045152931659208,-0.15195765888812848,0.202613768874228,-0.012591168275062375,0.17413783723789977,-0.05216257458674395,-0.09996556310851082,-0.13432387535521856,-0.17930209030762798,-0.22608887565351843,0.10656663883395298,-0.15105887807164647,-0.2103753392070958,-0.06875836748585622,-0.15932988413075844,-0.015426021736764235,-0.01809172004222513,-0.1369317010544154,-0.03245445355712658,-0.1460248708311142,-0.15052603787414334,-0.20048037530291893,-0.1961748583874123,-0.2016898429281099,-0.22253303398911087,-0.11506648620213493,-0.2529517893293535,0.017734544337626723,0.04863921837287525,-0.13892249228666825,-0.10813043899879904,0.04880669418103756,0.035827011463069394,-0.004112495001227638,0.11869363497637316,-0.15385784125882987,-0.2092849310230771,-0.1915199367296794,-0.23452033338395115,-0.1762121039912854,0.00407016614373892,-0.19569761352833315,-0.028060050846963204,-0.10115211965080777,-0.11700546535085833,-0.1980491833850103,-0.19686127117901897,-0.05129483610087638,0.20604458779176257,-0.06343937542504735,0.1126316804484629,-0.13767981115122072,-0.23194330931476967,-0.08752247254824977,0.23383049748007073,-0.05534800996546828,0.06989879105186383,-0.0914072478852158,-0.11684186684202504,-0.09759559005965665,0.0005971893298950742,-0.03220233755525796,0.22516280005398284,-0.05642588029331565,-0.20601217558010415,-0.08641018706576045,-0.16674321186127114,-0.09787769820947934,-0.12447745822446261,-0.10377174907009083,-0.08948396835231362,-0.1969446191147682,0.011896271287151755,0.027721900984744148,0.08128273530743252,0.2485559540082367,0.22816362542540994,0.611367487298817,0.7424993261013338,0.8864311259113173,1.0,0.8274409653469472,0.24161382609318435,-0.10176313957097652,-0.2658845247582044,-0.0479881046593873,0.16013329990277175,0.01989490872995139,0.09207443652639798,0.08607261888208569,-0.0934908885249546,0.19764843132016346,-0.06222207914002522,0.22917943719543057,-0.05535731606199898,0.009813451290531563,-0.043407211971943464,-0.010117208857695936,0.09105308361357708,0.13638144282080505,-0.15568931922260382,-0.011768516557200504,0.08701162015876746,0.01235094875187586,-0.11990777949800521,-0.1168032195694612,0.15952423283329295,0.17811871000881319,0.24776607874576076,0.07625966235623129,-0.05951663299113111,0.1530539591212705,0.22626601873067914,0.23157198477041194,0.21276969177407162,-0.08783206768296171,0.2759493726289946,-0.08239659696988996,-0.04402607552551297,0.10792945280433419,0.11481771098375626,0.0773375794388408,0.06186808242536912,0.08886426993721877,-0.08353392461222234,-0.050613472655863856,0.015924588575973713,0.11807201969854304,-0.09707262239905268,-0.058505352513247594,0.062492526555769964,-0.12595108187252665,-0.1851137993217706,-0.14549933375405807,-0.09980919574462854,-0.1582789548443414,-0.17034347691111934,-0.0776266645775444,-0.09834321869742399,-0.14516206679937727,-0.09117319564200262,-0.07973225179369829,0.08323448206280085,0.07478459566975816,0.0779590965695111,0.013638949821143902,0.00822649241714636,0.019403185014176493,0.029271018283461556,-0.0018419304196730557,-0.0271272812399288,0.016551967372021366,0.07478162010609368,0.18742859773036774,0.09636648842378448,-0.029830849918858246,0.0005707750576755975,0.07355831852058022,0.19789381358192612,0.21158974986924534,0.16608259388419033,0.14407862980839137,0.013778210522802274,0.04983409371881119,0.08259862375290776,0.22786766837414638,0.20641923125663045,0.22997543873737908,0.22107120461913318,0.19403491676362256,0.054913794561794745,0.039473429218128624,0.21189181229757803,0.20935327293122877,0.26868646667600565,0.0007317914542480606,0.08155106862555812,0.07943030131916129,0.023129291355721445,-0.01887398419767447,0.005500123373864975,0.006113806984793847,-0.031148581700494532,-0.02008423066653139,0.015981621010778636,0.03682572635228077,0.055272122326949606,0.03750634519693048,-0.013861249320750562,0.00014958245558025163,0.01288736430603897,0.02328903563212347,0.011242610070939381,-0.02949435250322004,-0.06836164064896205,-0.05168078062662787,0.005669961709499803,-0.08433563521963498,-0.0369665087453869,0.003097176133154072,-0.030408826476303406,-0.052720851148604864,0.013659036450276748,0.02559229507822696,0.043227280997680854,-0.00623215819382397,-0.011638906715433666,-0.054567706650233874,-0.05014577915490861,-0.09247486943683518,-0.0379901404348827,-0.0035118536775281843,-0.011840865939253415,-0.014140359422574215,-0.006723453123063783,0.009420197973247111,0.0024943140706427756 +Oleylcarnitine,-0.05085311482249885,-0.2585687259372222,-0.06129999839690777,0.13381958591768156,-0.23265865202997113,0.024220449580231423,0.07250806676934887,-0.27092804696293976,0.10394891528337592,-0.19812604613567686,-0.19579818367160595,0.08545054544815096,0.028893856924689484,0.11209541845086081,0.13093682516386332,-0.2413358508187742,-0.1733499483772131,-0.21724153500725676,-0.12910851087701722,-0.2029322480484536,-0.03128890246910448,-0.17426934231249983,-0.14310874268019885,0.06291401395967441,0.04866813726037987,-0.08953918705256107,0.18102949349233488,0.14115715147660543,0.018019764106263894,-0.1882752086753434,-0.12306944316944828,-0.18206052443326595,-0.17534938816484624,-0.10338151851462969,0.17216861954833934,-0.02489475104216635,-0.17731870545715375,-0.23621218500871483,-0.2064220341142363,-0.09122126667636996,-0.030417168526462215,0.02881443392478931,0.09091312790635854,-0.21815757785203907,-0.06806255077443316,-0.1654990271458615,0.12999186059108836,-0.16840466467394227,-0.1150962009217667,-0.11120457429643632,-0.0473256631094109,-0.07110380098617494,0.09458431704002111,-0.02404329240001689,0.09985324559371274,-0.07120449228565326,-0.11431392838737509,-0.14449106157757732,-0.14029045859633021,-0.1626022818550719,0.08012876623842793,-0.08066009102331809,-0.14450159939319818,-0.08372826094799142,-0.20602282546013348,-0.027430775891699285,-0.029627087406961617,-0.09189335864507038,-0.059320966097125824,-0.09782821989190789,-0.10161779571847829,-0.14276803188862244,-0.12087180879039708,-0.13979554403698413,-0.13843692788470924,-0.08834932873162457,-0.23572618436891077,0.0051982769564324766,-0.01624159033037274,-0.1758968491513228,-0.1194062546113829,0.039369482083123644,0.010986626422050295,-0.03370415112742696,0.0660000705787471,-0.1600394072443955,-0.13304388258849953,-0.14346016864718045,-0.15623311718999916,-0.14721339065076572,0.027495149146764986,-0.16982550770727237,-0.011229422083458241,-0.08791466241976469,-0.09882612313299466,-0.13322504521046405,-0.13382195419786025,-0.09707002716049386,0.08862913590448436,-0.0735590892442144,0.045876615114106255,-0.10026929299629093,-0.1859260378395524,-0.08650281746449025,0.13172031517735625,-0.05721282172929777,0.08626884673453074,-0.06055815644933986,-0.10345352872234359,-0.12287304069652077,0.020312607468366436,-0.05716784135407401,0.13947580338063925,0.0315120174024223,-0.1373430828396879,-0.06274063306664042,-0.09292979049673918,-0.13486828008207896,-0.10067422248879809,-0.05980101478372377,-0.026826222490523927,-0.08722375252008976,0.08217577301259459,0.07630719396775126,0.15548434695701646,0.3458383817675764,0.21544015260874028,0.7081589917159188,0.8579153068177956,0.8955929890160451,0.8274409653469472,1.0,0.14495208523166653,-0.06713574166795347,-0.24255825987797391,-0.0547742955609536,0.07189177416816746,0.026264489358284907,0.015079571563061868,0.013512386397477002,-0.09843477028063531,0.08994607407597105,-0.09669304487134034,0.10133885355274269,-0.09528790463691965,-0.02579192613923925,-0.05573586144528146,-0.08430728903112027,0.07416276501851911,0.08993773693917764,-0.051665804837451895,-0.008481680198983831,0.024345120949064946,0.055456461217240065,-0.0362099800240508,-0.051866246579709355,0.07470594488934679,0.091832294925537,0.16706983908636366,0.041512900125339036,-0.03981379401534374,0.043943964414753,0.10160868813767106,0.13455134452590903,0.15318766473952936,-0.06522160807541577,0.1943153558570911,-0.08061795610413515,-0.06597289693499318,0.06050698500343821,0.09088195521477391,-0.02311628127528433,0.032042557545005665,0.047251368566702166,-0.03466522577925126,-0.030928934302775178,-0.0054101277971801386,0.07429400658854692,-0.056658532456104437,0.007027701468538838,0.002914723035009754,-0.1164669261994218,-0.15241435348165658,-0.13968808929033805,-0.1107477081560088,-0.13554192439497884,-0.11914937002816017,-0.08973199140885424,-0.10624652061032372,-0.1395356690902394,-0.07511741486407161,-0.08145243974380545,0.15137060129558177,0.10197308679298589,0.05984992879614012,0.11914162638666745,0.10322448534744143,0.030497198527995435,-0.020681986151435645,0.11026288345321084,0.045428040224109026,-0.008866625764296057,-0.01907008591989048,0.16434581821569916,0.14169721278755837,0.055295906617329985,0.025018840859006478,0.00018308428194850805,0.1513446353178813,0.16200792396992006,0.16771573739270895,0.1497499997210975,0.06654179259535672,0.029287876996782577,0.01575846941086862,0.15819628388380905,0.17731184626563642,0.15618705484607182,0.16212211585728642,0.17529951287611478,0.07667701141808043,0.018190722174576686,0.17165503057869794,0.16709933895482848,0.17909259674179245,-0.004586025631812739,0.12321132965257262,0.0706524574737523,0.01563036741908945,-0.05892313816012087,-0.017828521949561568,0.010962415108980012,-0.04085101702069879,-0.02111326406702834,-0.020545692110051153,0.01891633136642174,0.03919523621606897,0.041616666769875396,-0.02060648670775662,-0.023292317542960315,0.002255094636547564,0.008653860466116558,0.013542851352731684,-0.04378167468242207,-0.06562854534093131,-0.025744150663095045,0.013899430943400648,-0.08899696525674013,-0.05089091167658601,0.02792731148776709,0.011617753261560945,-0.05450033626159963,-0.013754901417206589,0.02528304946059309,0.06593343666162622,-0.04027111916928379,-0.03630035339720538,-0.05000973275409514,-0.05108273917923685,-0.07403706291120256,-0.05397463311178279,0.002012602134907874,0.004554449238157469,0.002904335845522529,0.03150057517338357,0.03285717008791201,0.013485542905116166 +Arachidonyl carnitine,-0.03722469692827083,-0.21005742392227392,0.09036580560741307,0.27919961918952724,-0.4289860732475363,0.24129625056615797,0.35920335748460297,-0.29614086459821765,0.24081840790375178,-0.4073654406050253,-0.3528931755502197,0.22218883979161413,0.04770978795875517,0.20362321682267157,0.4382880505240457,-0.1667835919872652,-0.0811630852383464,-0.2695442508360478,-0.296104776835106,-0.010708786081812862,-0.23188413225997903,-0.2794937334583568,-0.20915215010574967,0.11796773121257212,0.10741001817611062,-0.2838131070266113,0.2088537837893316,0.1940336594564124,0.02324569752328451,-0.37453374194391564,-0.2683519329597964,-0.15455123431471057,-0.19182789030242955,-0.22390512542917834,0.6966952799693419,0.010104977988839586,-0.01815945741919696,-0.2577609517522891,-0.3301950485879087,-0.32319639165781444,-0.01089630982741059,0.10054868456686057,0.2227813627636964,-0.2596568261314349,-0.2882239510115568,-0.3146099576095423,-0.03110477408671894,-0.4517649341566551,0.007314624722756267,-0.20889314564148603,-0.1493197097510917,-0.35238363056850713,0.42560287423348514,0.06092911531225802,0.4859133789664834,0.01650623136247048,0.011688343390210073,-0.005954910257592093,-0.16023533318501698,-0.38105954831137934,0.015928426945127177,-0.29562147276454726,-0.4612087708677588,-0.07687398790291243,0.007276206093795125,-0.03285875815151815,-0.08229245022990252,-0.3901470275327921,-0.16974555820898327,-0.386250137750529,-0.3411476156725873,-0.4886659219894223,-0.42911062692992274,-0.45701670907238706,-0.4766389763330424,-0.3644242162026993,-0.31522898093360247,0.05185249951870994,-0.10721250765656151,-0.338850812524137,-0.038961154875689,0.25710847739949877,0.0945926180027297,0.03198604580443576,0.40573486689301513,-0.38534371906754633,-0.1127476371020232,-0.48768746154214493,-0.5412656761403236,-0.4410717093011312,-0.09909055009010445,-0.48097808881953413,0.0868122011448947,-0.3775707649246742,-0.1778209182753736,-0.4415345518617988,-0.30403036882392187,-0.21270894244419786,0.2185602928508031,-0.08097156586594935,0.06737852094608056,-0.30176701849597504,-0.46655498016550406,-0.2775490506779048,0.48277881540859446,-0.1667987843227621,0.004781168172620747,-0.10922286233156397,-0.3668023252405979,-0.017949791057682535,-0.03389519044737695,0.2223569511345902,0.47124889270569437,-0.0044027371348901185,-0.4391953918757549,-0.26661079374106145,-0.34176427545107846,0.015727317249198913,-0.3609454059645851,-0.2973116603093488,-0.313495641356316,-0.2968956255172048,-0.2921820943294469,-0.06523582862233207,-0.12772324295526485,-0.15803551362877336,0.1755464287409602,0.21188965561579606,0.18578936289368744,0.21525968190731842,0.24161382609318435,0.14495208523166653,1.0,-0.07541662715165266,-0.27781731861266107,-0.2203997891886844,0.367007615524959,0.016273166537535577,-0.03887292168101682,0.35474347243662263,-0.2417060092388688,0.137396979520407,-0.08992842844268513,0.2627394163837933,0.007193127989678816,0.21532217036459242,0.20074582987562348,-0.024966899432219167,0.41643154739252825,0.3498840655309119,-0.15886886207794115,0.15149522979573338,0.2819841702098951,0.21773798237022016,0.06776867984521978,0.06957927333518131,0.43883599996150446,0.4674512714196291,0.5669480757304655,0.34120260847631,0.17756629792550668,0.2802971832451531,0.49234527043658893,0.5441631602944773,0.542837938762161,0.0020604895523475054,0.514929336786752,-0.03063449306854062,-0.13235470117003315,0.24231115177547993,0.2889938707507093,0.2632697504967266,0.2164680407116328,0.3367989171727618,0.1241171646483745,0.004317063402078872,-0.008910817084480726,0.2996221250298388,0.0602750988060338,0.1261142367818969,0.23963320463481097,-0.057131181919280884,-0.28551025029414717,-0.2922072206673709,-0.21339299221348634,-0.2663569072659981,-0.355760521288736,-0.19629455501173293,-0.2273520580248936,-0.3007455067334494,-0.17447440044006607,-0.1862126237098672,0.16866516130502568,0.12776082663364324,0.2445090637723274,-0.0062942027432032616,0.03348320391620572,0.05547132243493707,0.0790263511187892,0.058838570267050395,0.005644439814439567,0.05622856462761687,0.15565018562030494,0.3713686406872669,0.2609646717530098,0.03884505483453564,0.06867022236515541,0.12116160208375107,0.3454991395461843,0.3829321947083819,0.35005772981974353,0.27255302186141933,0.08551155484290279,0.10269627915025585,0.15613140684923346,0.45055222580499477,0.40426590877380986,0.45919939528514725,0.38802156930092047,0.298835237608893,0.13134369947559912,0.12518904420671476,0.4233472743336957,0.3791973191049761,0.4039953922782836,-0.019846309814904883,-0.10188925638616733,-0.015284018085623482,0.05885695271558822,-0.03384387700653266,-0.07726456632363557,-0.020964757423058127,-0.10537664482452666,-0.100590875959817,0.09045411581187707,0.09112327080948539,0.10476766325457144,0.053100922154247505,-0.03974607795626981,-0.03898607096290366,-0.0010887402395809783,0.07840839168225262,0.0021253950424678144,0.09181467310261975,0.015418987669223084,0.006811375296697135,0.0808158955355327,-0.036598580765625714,0.0169139377468342,-0.04944664552325358,-0.06290778481775405,-0.15079130338319327,0.03573679679744339,-0.08399963761391799,-0.09210960088494798,0.06448583649762986,-0.020562828819932134,0.07278939921837078,-0.01032314844715707,-0.05838760109408474,-0.013402597890963316,0.009530359114050655,-0.04392187822972771,-0.028786110661598033,0.01871114089754476,-0.0757827917265484,-0.02245380074645051 +Sarcosine,0.099057479079448,0.17399723642617304,0.07116699878923431,-0.05931281207257171,0.11389696149170431,-0.02788598481048262,-0.09920344450616857,-0.011494467525615585,0.05427619856163069,0.07855411335976005,0.07034946438878348,0.03083617310537033,0.1972745409484348,-0.02398495462619724,0.00979129880176701,-0.07053711113932129,0.1045213503733607,0.07362945820150757,-0.11596370727606126,0.02674952029224908,-0.045824313804997456,0.060609801988990075,0.06931394849784939,0.07885798509520857,-0.04828594137645146,0.0165364805568093,-0.1009240725622446,-0.10327498443204776,0.11625563744589622,0.05962393702343891,-0.06960294435659962,0.021801214589828134,0.1021187538097343,0.14721051225230763,-0.11318360435904429,0.008095061528968743,0.14285850786264584,0.002513320569132977,-0.015829545381503014,-0.0593794488497805,-0.12498481117984458,0.05863720745331366,0.03077701606593635,0.036453560393275346,-0.006977692498283777,0.026996701367782216,0.010120828398005958,0.046392651302925025,0.012521725862709377,0.02199703779994273,-0.14762125186535693,0.11488206061337361,-0.050899070542701014,-0.07664656122122195,0.08536688041876966,-0.01955247163357494,0.16409304221330043,0.07453291682043323,0.2606095696740857,0.5435325263955815,-0.14034613350558478,0.10321174515840115,0.02303295392906389,0.06645424055266493,-0.062034936668633224,0.19376873308400513,-0.2389174232003692,0.11285734891556241,-0.010769296877568465,-0.05520200031353636,-0.016337521915767414,-0.004428660936446796,0.012903988877349516,0.017620598162938553,0.0814616737861229,-0.005940827499816304,0.2953021832706335,0.19670484526892656,0.028904249189518234,0.09555163974355539,0.11614745795303763,0.06945124227127131,-0.002427030119162234,0.09258669964663738,0.1261189574465466,0.11827623890977955,0.24842369369621206,0.19487225061593888,0.233530614435227,0.0771492801262362,0.016876576424823223,0.07382557326477317,0.08401912609995871,0.0342720520855785,0.08806188840631463,0.015030923493521047,-0.038139701781666924,0.2014251676047886,-0.1974456221024557,0.05735602013051691,0.08005504352451656,0.08858408893438072,0.10388265376792388,0.10445247633305693,-0.04941235024070862,-0.1357823057873626,-0.09867907159759429,0.08355226622754977,0.04700232195820588,0.1650126305483816,0.02722282217020388,0.07797664985222261,0.0007814016756865602,0.12058841773614615,-0.016737886851941566,-0.17718029218905734,0.27618936137146266,0.08029148596021413,0.07311965702461175,0.11906758713764946,0.22412365485919078,0.19508056989800393,0.17400714633186262,0.17779790217687377,0.13771579333272346,0.04802369786769531,0.011871725276649195,0.02807278978921843,-0.009769109654008403,-0.0684959127045407,-0.10176313957097652,-0.06713574166795347,-0.07541662715165266,1.0,0.2152067865249513,0.07308394752709219,-0.1097662986414654,-0.07574864030345284,-0.10383171289317679,-0.13187481209191496,-0.055830886755016886,-0.1778804644240773,-0.11076181104396833,-0.1886352672411567,-0.12534542674714716,0.03539999645157903,0.06263776601914696,0.06195829799515335,-0.02533542474067193,-0.13100516428103035,0.07138426090873208,0.041778527374536925,-0.050878114465692764,-0.021869167410891194,-0.036765202283441406,0.062805076063308,-0.038586700543406884,-0.11043852721186526,-0.13070987379642698,-0.07918809243365041,0.06534590232824176,-0.042583671977460706,-0.18390039731216243,-0.18435815472478645,-0.08838099059920139,0.02808041410204052,-0.12250843827504668,0.012480545372976576,-0.021276899461653776,-0.04753139062870578,0.008637014301968077,-0.13649362331231757,-0.06964890353752581,-0.0661883420975693,0.06703497718230515,-0.0880868476252715,-0.03421059455085482,0.03553032182510153,0.009821541129571178,0.002180224579771409,-0.048561267187526964,-0.003810909645328678,-0.05593753934008498,-0.035499540581634376,-0.09291839273642317,-0.05905601023548719,-0.06853726963406573,-0.05425118747097227,-0.10203594671177176,-0.0540055539089611,-0.1120232838801077,-0.13476808353966926,0.028147829838681325,0.015644498829721385,-0.020981743931407688,0.010789304390648718,0.025158946303890165,-0.003969862428512045,-0.0259671828666823,-0.006437200505201797,0.01559805130100552,-0.022387424545265978,-0.06683017791694974,-0.14028134965902847,-0.10183457162480944,-0.01475332899318706,-0.032228993426759306,-0.08102411892301294,-0.15973643104559163,-0.11580928146842438,-0.19418784468398068,-0.11991001936457046,-0.027676045805526975,-0.04888446737456907,-0.07420546914171997,-0.10207412975774405,-0.1489382786428561,-0.20653878642578705,-0.18999182907045614,-0.10466444957888094,-0.034479927372970225,-0.02454405559350373,-0.1763480784997684,-0.17739853453482915,-0.2019577571343013,-0.03935822480495221,-0.09929688399394268,-0.07957038618376189,-0.027222413794313227,0.0041000227597026455,-0.04010114697995663,-0.043098495616578976,-0.06443588051578956,0.012773660100903987,0.023724259362131576,0.030142055361262656,0.029934316671275663,-0.018858247075665798,0.0005172689914131415,-0.047855572780461014,0.038100293274885774,0.01929284364384845,-0.006376568284076863,0.03153693203961045,-0.026750606743898918,-0.024574388541133654,-0.0077054401514623045,-0.02178284098310384,-0.035528505375600754,-0.028287526886346077,-0.03811877867944177,-0.06864585946292798,-0.03165197184106709,-0.014904772314786888,-0.03966924896769617,-0.051742742122134214,-0.036635066405790506,0.026223093751510815,0.040013410015706054,0.03746291947038716,-0.018275818311295832,-0.04308879001165894,-0.053076339064774346,-0.01777258723689062,-0.004560669100480442,-0.022671304532213575,-0.015349535036805936 +Beta-alanine,-0.027343449814800164,0.27336076497348594,0.20199942277769206,-0.193554216590162,0.3911453389632006,-0.0052859214572289325,-0.31119873220347766,0.3065566803999354,0.1319185904013768,0.3813539226957945,0.3699703551292472,0.09299667733631568,-0.03536393544047551,-0.0488490064779114,-0.11253629355014716,0.1726494684493825,0.18210818859249656,0.2823306223717277,-0.08473346408475196,0.22119763053869895,0.14682383928001022,0.41778165104680515,0.47192744296719064,0.21314447343141407,-0.07796952289958961,-0.030111251935051958,-0.226580079534028,-0.1997465229138018,-0.01632036570667502,0.31504540544319765,-0.03292695071578803,0.2831022354623899,0.5254850937391286,0.35254200368768596,-0.36330134329361174,0.10573493491106825,0.13821106988848264,0.22531162880172667,0.1257601840088805,0.01926431077860618,-0.1616549939253881,-0.13674551758760847,0.11689310754870838,0.4483275652380955,0.01653334546340067,0.1166221550828062,0.054751215379973205,0.11191478760052712,-0.06614178534724173,-0.07363955774522811,-0.018660268063203516,0.17875832674163086,-0.35175499603762655,-0.016571482766929123,-0.26529053132827335,0.15628886726284594,0.17168655091487944,0.14238570209426224,0.14254960975156675,0.38451590429176935,-0.25074125582401807,0.05355501998353259,0.07502942752481416,0.08548997060538419,0.18600234830074464,0.14011668341138567,-0.21396229926555332,0.05041182506508339,-0.009195377520156301,-0.03362950196674995,0.014635595212401275,0.10770673251311862,0.11366543615986015,0.09571338999028055,0.13578095880166713,0.055412631960396995,0.4756111239040472,0.14632545504931294,-0.05960993450104003,0.15267263351903937,0.7424449498830017,-0.22724867186489445,-0.07780989046083418,0.2831221846708336,-0.1912343962768669,0.1415831884071518,0.25803319052225104,0.24759002206428474,0.27539736361976513,0.13081584229768986,-0.055364721184951296,0.10174750023662422,0.2985594463248449,0.04015620280606007,0.19144266077979102,0.0931297817965539,0.0014703775760629284,0.13665466657715042,-0.1884846740282383,0.1243025379943944,0.00037116568358189943,0.3241027013725471,0.19313623684202574,-0.05867954740880866,-0.30604107410523385,-0.14186111972786924,0.05091457398572726,-0.06633944254846909,0.14742968450833682,0.09937978799824235,-0.04999198777738543,0.007201589471676788,-0.17164317394236558,0.019530214850448948,0.09568919837498534,0.10134192896336264,0.4670680778659816,0.2244176560261437,0.0614861973887838,0.328662297197278,0.4078382786159806,0.28019292040847077,0.33510260557311916,0.23410730448248865,0.162037207535324,0.10597963054104123,-0.129708380832485,-0.1618882305094839,-0.20414016203463548,-0.2477729723033851,-0.2658845247582044,-0.24255825987797391,-0.27781731861266107,0.2152067865249513,1.0,-0.02895903099966035,-0.21086622798169535,-0.14770792433648272,-0.1728581018545228,-0.31955503975558797,-0.004397490901979745,-0.2844385349378223,-0.04952780183618371,-0.3212560941765798,-0.2047605805676164,-0.009997754394739319,0.02699856196425151,0.1519129424380475,-0.15903027258929378,-0.22111160781755837,0.23965588559748993,0.1357117422433438,-0.009081336207109339,-0.07129637205854422,0.07518895107475325,0.18607481599802178,-0.08520861372655164,-0.22923588168550033,-0.3314476873990446,-0.12207774532059906,0.13852063257050237,-0.030287358386972794,-0.29392470715747016,-0.3343465915401591,-0.2940233902843137,0.1747836056260709,-0.3129046108242832,0.13786944594005499,0.18280253861362833,-0.04824929417431708,-0.10324607932500632,-0.08272473390574801,-0.10954029342244842,-0.07610752743891969,0.17223048778654096,0.06188526193958829,0.037082533834825945,-0.1107544607889626,0.07112407235150696,0.0037040847597420443,-0.024796878426039674,-0.02247734712191026,0.0048858619689265345,0.011407630900231858,-0.03240687921506956,0.00456907305332951,0.03239636595058941,0.02092664604101348,-0.07124391128320152,0.013989376062508689,-0.06393098646569932,-0.03489123692422089,-0.1716562554588642,-0.08503980449637193,-0.0857549228269043,-0.09503377947224302,-0.0536651913795401,-0.019690059027355378,-0.0046034506751836115,-0.12097034414700875,-0.02301735880071259,-0.020803726026985818,-0.023993264260254384,-0.30922928924371046,-0.26226995044123025,-0.07164118010081684,-0.041099879837552526,-0.05589826977171533,-0.2862973704075924,-0.34983185579479165,-0.32661088775831004,-0.2527130646982957,-0.0688026823731472,-0.04438695650341407,-0.0532507126564538,-0.2685800006340111,-0.3209828707737524,-0.376621547124728,-0.31634649461256076,-0.23471492639595856,-0.05381984560940459,-0.03317060272419086,-0.30849898621044397,-0.3144129930759072,-0.3173155571984717,-0.006160914583030341,-0.0829006875990147,-0.0251266758853081,0.051121935729943044,-0.05257138606150229,-0.049044536222650134,-0.07717112513894518,-0.032411816126362035,0.05189471068926675,-0.0032631998545276514,0.004570678568632502,0.008429378987539886,-0.010753627289726883,0.07447046149470526,-0.09241484063897744,0.03862075489892245,-0.0144454792550926,0.03987511607732487,-0.09043925340503978,-0.026000112680969245,-0.08426454441085121,-0.06695329840804391,-0.005280285527212024,-0.00736755712066682,-0.05151880139423579,0.017252293517627873,0.04977001564942421,0.026291932093421237,0.044485139528579874,0.019135001637653366,0.009756637903734329,0.0220637481849231,-0.004568536960917405,0.007752534837126247,0.03323645681306722,0.015351335327226979,-0.14496633869803432,-0.05979481391982053,-0.029952420974803197,-0.056192702087472055,-0.009661759106665538,0.035572241311631676 +Anserine,0.14173015101959055,0.044266271824215386,-0.2737077943268084,-0.03210384520465282,0.15244561705024567,-0.17258891800388487,0.15127582067776293,0.033194891609104084,-0.5591777149794067,0.06279498341266815,0.04725414332365406,-0.5401826078453261,-0.14419510630622623,-0.26697196739266366,-0.3461806800876174,0.025869091770804622,-0.00949461702013335,0.06139885339644384,0.6030167975198887,-0.14294631170181474,0.19943432616695003,0.013865661792769662,-0.12195083527465134,-0.4942220335567947,-0.1282172821995271,0.6074146395552772,-0.056516847634106686,-0.12516075235345248,0.022887014293128647,0.17263405887823666,0.29782581271684405,-0.12096645118624391,-0.20575733086381176,0.013140451122396963,-0.2672236672937429,-0.13242216960055808,-0.1020479961223307,0.06724710089118452,0.551552022697279,0.4663514626262887,0.1364716815115861,0.17855804376465095,-0.5437297004611874,-0.1057499809406389,0.5186033427613317,0.4844161065784202,-0.12755979988105018,0.6176445307757832,0.19981299675309902,0.546759689370225,0.1784732615978084,0.20174962839692315,0.03652742548123841,-0.015866193269059123,-0.16670058323053116,-0.11553199065836744,0.052208277867929406,0.029872597386283846,0.06042172435925569,0.1359846855772781,0.25694532330511005,0.24132994138052213,0.5138984862601889,0.20488265030019276,-0.08467363583901796,0.08928648820827885,0.2795260249841804,0.5860121378044849,0.4998898608173738,0.5435527758584896,0.37448733804458756,0.5355163728359935,0.4247327602047527,0.45087486491889733,0.43663648150378725,0.39596979496012635,0.06304337478193275,0.031120105897458866,0.6081589761063182,0.5449060531602982,-0.05035395998818354,0.08950411838502756,0.04833738696790348,-0.15370517651996918,-0.053499821223605845,0.7013558396812085,0.05526551007573276,0.6382375386387534,0.5796728831522011,0.7224622032769331,0.3466584183154274,0.7174137791533394,-0.40593385431128826,0.8660142107540847,0.14989848298001035,0.43628054990149834,0.32908466277390197,0.42079217743652464,0.16913918679256523,0.10107228218843992,0.024330304326664144,0.16635540871094384,0.6614573394172547,0.6727084737413667,-0.10271604413162318,0.500493187689406,-0.08141961447135841,0.2627980622512433,0.5087871427319033,0.06034258131259191,0.006309795686573817,-0.21394828284094733,-0.21378783616570254,-0.07587090503544072,0.5067414077268132,0.2399804076713475,0.1471682129879433,-0.05317320409837851,0.4801979497937825,0.2798132258888159,0.12818494855336401,0.16845111585144953,0.06608399221234444,-0.0772027189320005,0.11575468058639131,0.0349300484286046,-0.04656832845781159,-0.04640924549263027,-0.1236964840700462,-0.12202240741955256,-0.0479881046593873,-0.0547742955609536,-0.2203997891886844,0.07308394752709219,-0.02895903099966035,1.0,-0.15397131038822723,-0.02844309809837884,0.1223053089825744,0.013310676256767058,0.1686035646264429,0.10818711068397185,0.14410071674097993,0.01271838023374633,0.3996391386754557,-0.22168551556086427,-0.2553457286075082,-0.25539808833229216,-0.16331298814063339,-0.04774464960691515,-0.21781067095096904,-0.39125219039938675,-0.3433725824381674,-0.25256419916950495,-0.19474023096154294,-0.3606101938197559,-0.41321126492214855,-0.18952025749091983,-0.14375405510485323,-0.25011120556482436,-0.36657260971168953,-0.30664123697959933,-0.08919766281736179,-0.08783184185494482,-0.21139046880184656,-0.30978566097545635,-0.16338193010679333,-0.18102972155169908,-0.12126938595582419,-0.3354023760044421,-0.24695257855340016,-0.2594564368321731,-0.15797580224145463,-0.2936384942900526,-0.34828862557992146,-0.23204774684962032,-0.1775090837743323,-0.19491204924388925,-0.37912638216705163,-0.32417777980507,-0.42516499029694343,0.06983993994171597,0.3718336886621133,0.35125070666178293,0.3948863676168271,0.45777721114278225,0.30767226176859036,0.0981210582606865,0.43436998155824386,0.4837596845066589,0.3259529814896853,0.30756663129848344,-0.2717063535650395,-0.3977839941157695,-0.3861602842442758,-0.21722778630690587,-0.3393863087110851,-0.4001949523183416,-0.3484283144246333,-0.2831808374534656,-0.3834476049241256,-0.3869450422006276,-0.3443202687431624,-0.28118450028212005,-0.27633258659423,-0.31268653719140266,-0.4054679013391305,-0.39338951749931994,-0.23802641565764796,-0.19696148130782015,-0.23251117702889582,-0.26612253239937583,-0.29182133067324434,-0.39447797780475874,-0.3833359879493833,-0.231066922492436,-0.21023989223507566,-0.18816096125619958,-0.21623683553874112,-0.2932423001826429,-0.33783463926930973,-0.4068953270144577,-0.1646911234244286,-0.1718748369142508,-0.16881027210144783,0.022315856206494712,0.09345711940819716,-0.022898854760912458,-0.0787262862485176,0.01953910832544854,0.11389114644252687,0.10344434898529278,0.16143897541150262,0.002496126199931386,-0.14162549750633394,-0.1434188750154816,-0.09832500296404907,-0.044409435230296945,-0.07582703511537081,0.1054698650204195,0.03314219365387023,-0.14249752662950413,-0.04395986807467005,-0.006052598747027757,0.010349202998420005,0.002076670368823202,-0.061110656358272945,9.422324302890554e-05,0.027633717769992957,0.026671463581923512,0.019486961081758052,0.07117852675870455,0.007441192362825175,0.046749291329802496,0.06851290884539725,-0.0563611245511008,-0.020697487031953947,-0.04702285492128282,-0.026398911253961432,0.012912932654273693,-0.029904384875305345,0.1406183106158915,0.0036389792482398394,-1.5545470891043702e-05,-0.033815572563031915,0.012419459423080738,0.01993678099180406 +C14:0 LPC,-0.05321257190822156,-0.1252500717229384,0.026171820728227317,0.16842447325170845,-0.31189751412308114,0.1191206773688259,0.22274717969612987,-0.20087151757109345,0.13397598399277433,-0.2891581620289757,-0.2773911003970609,0.15661361767093515,0.01653992561410546,0.16999900755225095,0.28498500689212397,-0.0863027921151616,-0.03451708257322477,-0.20071348406045333,-0.1551286566666741,-0.07509834696633856,-0.179861635275606,-0.23481932119283364,-0.1850021158064849,0.053311253494281334,0.1453221433096643,-0.24083289735745292,0.13922600155636758,0.1807136882550631,-0.006886340449227031,-0.2874091063032853,-0.14296304197691506,-0.18202135587994034,-0.22055738451347584,-0.1552336198919893,0.43844735541914653,0.0178849507004549,-0.012043998799998568,-0.1672357268650667,-0.24433675882355435,-0.20010405522456948,-0.02618618852767022,0.04758977604819322,0.11442647142940522,-0.23442407705420887,-0.1840992718920369,-0.18177350725254046,-0.04013032495645306,-0.30154300658132505,0.012897855757733277,-0.15721684700714397,-0.043060571949140744,-0.25015778007661166,0.32327505710121296,0.13900845388748295,0.3465000374644048,0.015611212271700179,-0.05684876283604942,-0.01333096470164784,-0.13524061008494886,-0.35254035319857485,0.038798864437737564,-0.1827332165013171,-0.29261808014925994,-0.04147288939158789,-0.022217872270385956,-0.07816415697781386,-0.012582841897023224,-0.23916593416780235,-0.10241064598763298,-0.21624463200393534,-0.18786921663767236,-0.3004267222778079,-0.2634572873679728,-0.27572227585057385,-0.2913117939365839,-0.19979651975739987,-0.2337918464300395,-0.04803232815944947,-0.1369278344235358,-0.18873609619246828,-0.05421456856457934,0.21695276596205976,0.05726295741168976,-0.08858506590849935,0.29988396039045406,-0.23217897947336713,-0.049619640724139644,-0.3379656679616541,-0.36623613700318935,-0.2983329523098919,-0.06209625192534522,-0.2991768720166972,0.03405349995337986,-0.24056127251119194,-0.16218970579223338,-0.2154241390921087,-0.16622657741541744,-0.1356071054444085,0.07825133142125322,-0.12901980865184662,0.10398212169005466,-0.17868996964307735,-0.3172801653637473,-0.16812290252621215,0.33523924193696925,-0.08962680216068754,0.005365665003079696,-0.0816840692202212,-0.287849402546789,-0.003528502367258724,0.026951384103254428,0.2132394188438595,0.3088814816655065,-0.08979983885915806,-0.2591764337050345,-0.2152506869713843,-0.27409272674688717,-0.032990663884270556,-0.20287260060009235,-0.24026251161404744,-0.2502673209454193,-0.17941435469746608,-0.2121809635875444,-0.059226902544721106,-0.11400459239796673,-0.07247745354823856,0.13054157559887028,0.21151344219435828,0.17690779887039532,0.168740782536727,0.16013329990277175,0.07189177416816746,0.367007615524959,-0.1097662986414654,-0.21086622798169535,-0.15397131038822723,1.0,0.35796942214441607,0.36258730233333647,0.34368586526516226,0.12159294319560762,0.3217226923360511,0.1981534039808428,0.37670350150656506,0.09462772179035298,0.349744372668321,0.3344724725261808,0.22067139088312004,0.33132421641813253,0.3457743108069061,-0.05478864761395568,0.15346527455414732,0.1720423731111312,0.1931949690379369,0.041159558673623295,0.03747982142981847,0.2517365884762093,0.3021506485401532,0.37790776171908086,0.16533376689267373,0.04124372906847656,0.08139100291664793,0.2854124081167438,0.30431218189995235,0.300711351010516,-0.07810914531427714,0.28643084318497064,-0.013202807414746215,-0.1001425872598986,0.06769590547481427,0.172953832995687,0.13252002833844626,0.09062525440257911,0.1469012908820464,-0.0020833239515226803,-0.1055653192804017,-0.07479438443424116,0.26841387610660294,0.16313292510219232,0.15901781841416415,0.22249499474062398,0.06632218098751036,-0.13199776948968917,-0.14017941089338978,-0.13223596760923573,-0.15926310973529886,-0.20519608365818856,-0.09116930048981033,-0.14707293430810475,-0.18387482649650044,-0.11122207339103406,-0.13038943645043397,0.17453476638425072,0.1644815018783362,0.2448250119735421,0.008519526036820014,0.06869536064615764,0.08639759709059928,0.11449267870677003,0.04281279471494738,0.020936949339355318,0.06854760983649984,0.08845429386826599,0.23614771790928102,0.11007661838263773,-0.000948574219606551,0.024960168603300747,0.05051323471004357,0.20529269205299625,0.2530433464563706,0.157656033261574,0.10565334977414029,-0.013702434383259184,-0.008679716623759505,0.05259646222349087,0.3302826722990182,0.19511793944806244,0.25828211513790594,0.1779692745131955,0.09229873027541802,-0.013694636426533558,0.014791732303425219,0.19600104178477223,0.1632856303933539,0.18741449165600477,-0.008747014142888854,-0.039035626036155555,0.015515375714480766,0.05626477314504499,-0.03944161838004442,-0.06346091078674848,-0.01295393215358712,-0.07061329138230378,-0.043200475769411474,0.04943651520034092,0.06455236857242566,0.10088401233426013,0.06905827786515177,-0.021585760202391415,-0.010900631286518159,-0.0038928679762504645,0.068451201968067,0.0034660691753702635,0.07908403283843349,0.0008572445048148074,0.0561995841886002,0.09698096513715355,-0.005852933337141249,-0.03374219003849697,-0.0019526394583685562,-0.03649872804337496,-0.08628857891909408,-0.027803021765573647,-0.07151544912055328,-0.04672903861440536,0.009897055932535839,-0.020613260520585465,0.04666722922448677,0.02668076691224135,-0.017176819598749424,-0.006918361951412629,-0.01592003924600664,-0.045060165246772525,0.02254461784570884,0.011187177479600886,-0.056319287472719456,-0.040115762577402146 +C16:1 LPC,0.034029379749571036,-0.10556414830599054,-0.08274608049366,-0.027247785487222134,-0.15578195457621277,0.021941023489554613,0.0002504034093036571,-0.14270770508431505,-0.029889669263387375,-0.12425097614252337,-0.15233325702458492,0.0025653520673930316,-0.009503418905007208,0.09312255945454533,0.07619123652931521,-0.10720042827217217,-0.04520356336965756,-0.0603656895463699,0.0728806944526756,-0.10813450373466511,-0.08667925945171288,-0.07226580404050997,-0.13240396463198045,-0.025446029885183536,0.09931367278288206,-0.030516740356596527,0.04968345193571677,0.09685900699588752,-0.043580799381680246,-0.07135805977351364,-0.007854381027907469,-0.1424173737050611,-0.19404568751466209,-0.08737165804020826,0.058210982210411266,0.011420075120326608,-0.03762505613620359,-0.043908636980530005,-0.05067457939336774,0.014416195883992566,-0.0006336286182562771,-0.005732308034174486,-0.017431918065068094,-0.17783660582638117,0.020205486525496977,-0.03110190610997391,0.02525819041931015,-0.01866061105970751,-0.02881930243732408,-0.03469280425346036,0.0347316215267778,-0.025661411695220914,0.001800958531826937,0.00832996974756625,0.04418063791538024,-0.10546430262778035,-0.1565513492018078,-0.06994176900417858,-0.023913634957439017,-0.15520536184550318,0.10468548394497487,0.08209963202192787,0.015632956469802384,-0.023417620167888505,-0.16227512777049785,-0.11879539544823318,0.0845758811373926,0.0239340485997092,-0.04956236262104884,0.07428346510098274,0.07645531357177819,0.025457346693580737,0.04309928611468868,0.0649198506997061,0.06387906684315127,0.07816258087583043,-0.17156057809789502,-0.17270892488708667,-0.0686345635494731,-0.060425669927969335,-0.08990908339839797,0.026086039874589597,-0.007312854606389074,-0.16957696358615168,0.020787039442531102,-0.06972409380597303,-0.0276806761131226,-0.058557644267755685,-0.056102188609414454,-0.058284733218773116,-0.03961544231053029,-0.042651401098125895,-0.03573312523508647,-0.009635406756737562,-0.19153191612508474,0.03303398654188675,0.10572070904480117,-0.07780239524354994,-0.0452802499299755,-0.08474876010881668,-0.030519386095749678,-0.06830688768423814,-0.048913015593887665,-0.05031909567405292,0.019914845498584362,0.06234590370587922,0.03062358572329958,-0.012127817214331886,-0.06452040617942134,-0.03094975173169063,0.03031604306941592,0.0450366633439291,0.07685075464939307,-0.03367340145459259,-0.0015943642133745273,-0.08515783365910562,-0.11271539528680638,-0.10149935016082048,-0.006224295096350012,-0.1270290342673784,-0.1107335180659831,-0.005654033342436919,-0.06998768736556442,-0.042651531362205404,-0.061518051374172704,0.012358973904679367,0.007586971005248084,0.042512635591976024,0.05380703468839088,0.055236503214414326,0.01989490872995139,0.026264489358284907,0.016273166537535577,-0.07574864030345284,-0.14770792433648272,-0.02844309809837884,0.35796942214441607,1.0,0.5990208602035317,0.37009920465537277,0.6118451644802121,0.40879879829910765,0.5508899675525025,0.3639094876388526,0.2671282580489015,0.31355826897471356,0.38514584799283125,0.19292527654226077,0.14944702482484504,0.37841288708816845,0.18156457941601323,0.09124507287839687,0.019904850206935835,0.2663271894815087,0.2001186982659793,0.1194642089335718,-0.06220591955219228,0.11404382325215767,0.09367050565210668,0.0012633608944808228,-0.06657928816020321,-0.1674512807587452,0.008410814040170658,0.03662241981567374,0.02326510444926115,-0.13818980705636355,0.06303153550742463,0.041051701807840575,-0.02309230743570818,-0.06835703833610972,0.036563566665527056,0.011495787626401455,0.0687407967557472,-0.0017799636099716147,-0.05079303572615287,-0.10564153158837918,-0.1075623740991979,0.06143249672843814,0.06832960434935585,0.09771081505057737,0.0036455648441653756,0.06156616236633024,0.09837804155779065,0.04683168153998954,0.030369618257981543,0.05945843836209099,0.045889972052791536,0.02385368458732903,-0.0088836965866575,0.011235985189169326,0.014330699721665893,-0.021694187653399585,0.16529524046754893,0.06852678764618815,0.05792900377175372,0.1267000652543848,0.08935568839609687,0.0037423077256979707,-0.008904699432835438,0.11868082711983223,0.015375186521137337,-0.03929121480668553,-0.07960301568543905,0.06459787843820596,0.06912437284928227,0.012277607330388402,-0.05594293114158216,-0.14677750097408282,0.000784859106065396,0.04160838279851213,0.049518582322466344,-0.02081325812029475,-0.09676908909377996,-0.17126521454317206,-0.18175045710573656,0.06979069730247965,-0.02784000585951297,-0.011942533134392306,-0.010727693483071815,-0.10851599458540062,-0.17639103936928124,-0.17106531467682695,-0.05414214137953748,-0.08537682451946339,-0.06421066823383537,0.06352554419976977,0.055583505464577555,0.0008194743594428248,0.014152468078012478,0.013338042788821138,-0.0007009071278209938,-0.010316357825917428,-0.03895366649009118,0.013940264668150725,0.07350967458651603,0.08290577295356999,0.0892785950690983,0.046039542961832866,0.03897177461635208,0.03688328783873197,0.0039228736302701775,0.07961752852221081,0.04421696855252456,0.06653701438028008,0.011604552168841376,0.025413646642411913,0.03490609502793374,0.015199849003294031,-0.02851499999424967,-0.01233294116192649,-0.010755683907652611,-0.027863048004663476,-0.025572364082735825,0.0005706417148399833,0.000570206003541718,0.012482747404354287,0.031069289878424368,0.027490029954265707,0.005879908213306795,-0.01912672643513893,-0.002592082995919173,0.027668500795673474,-0.007774476291273348,-0.050787823009747664,0.048530327384709096,-0.004764452735195801,-0.044478236102142014 +C16:0 LPC,0.00384935208299141,-0.08913580903264244,-0.15229312960864252,0.01687036451202929,-0.08543692297540378,-0.025522719733685188,0.03438429973694739,-0.10996506580858356,-0.2197946046195591,-0.06568486574338568,-0.09837507384238355,-0.16870878483453455,-0.1408829924887888,0.025301277817890787,-0.04025168611130042,-0.0866295076591461,-0.11444946926263691,-0.09349307648153478,0.22409864194271642,-0.1562481104330745,-0.02934146159453676,-0.08006323463782256,-0.17121738143589613,-0.21199564398385679,0.03322836563137011,0.10265572097788302,0.045293712222995046,0.05971329148876928,-0.06264366547307226,-0.05976546234351799,0.10674817392332882,-0.160632595327167,-0.2317435360547089,-0.1056154651491232,-0.024026700811624047,-0.058301044457081494,-0.09038058518871504,-0.015100172490786047,0.1434742885799692,0.14329027591793608,0.026475970181150905,0.03459212356950703,-0.22394874643976692,-0.18266324158834887,0.1653246798719611,0.14492186471715887,-0.013249249227835125,0.18056652926154934,0.026767642553325196,0.12018287410064517,0.04808866813786733,-0.0014922909356187546,0.024212522555256962,0.029463686781449464,-0.03099560841244541,-0.13964505074164005,-0.15986481594246488,-0.15353660937595676,-0.04221489508553329,-0.17222168997241416,0.17984413528705362,0.05887672384950916,0.10806887978881914,-0.02180857786134237,-0.1900476462037521,-0.0684331967049844,0.12494336990238575,0.15346511754971745,0.1348340166287465,0.16779729138378927,0.11455732218314109,0.140361596412174,0.10057504485929179,0.1228482912235522,0.10269273213169802,0.150927826800224,-0.16310982105438881,-0.10099815927215262,0.11296460091280247,0.1498475352915224,-0.11922834329552943,-0.0034169194629233516,0.026200994165872186,-0.20474690524086503,-0.06943002422906379,0.12828337914136578,-0.1340899779352621,0.08892875009514656,0.05366764739105702,0.140469903306086,-0.0039148714929588355,0.16870700760627644,-0.16203976370878284,0.15960717796014173,-0.15727866200824675,0.10400890711632883,0.09229243045852621,0.0801837874300295,0.06797268893847674,-0.047884665177516654,-0.02425151728745099,-0.03422334515497571,0.13048971560951195,0.11714863402045103,-0.0017626680291794171,0.16328586401225542,-0.005694844433407451,0.019049493910372684,0.06783452714374424,-0.03710581673639049,0.029338772156804527,-0.0512489832476196,0.010022542581183725,-0.1252755423227451,0.10466233647148665,0.018606086090810298,-0.10585892146682005,-0.17324405756880407,0.10294720757687241,-0.04731009598663565,-0.07844064379534525,0.012826673471441424,-0.02870340839081666,-0.07243972764732982,-0.013675841263256472,0.0019591244323497333,-0.043849397079719854,0.03587738746685431,0.0559163207312438,0.07091783437917949,0.09207443652639798,0.015079571563061868,-0.03887292168101682,-0.10383171289317679,-0.1728581018545228,0.1223053089825744,0.36258730233333647,0.5990208602035317,1.0,0.3548968301809922,0.7673696183482728,0.8164286908358387,0.658187744181694,0.7124206489566204,0.362117575513306,0.2976917080389784,0.1895478333249181,0.3219886976353776,0.14497870763129722,0.38416195434141115,-0.13795745289890246,-0.06849385981167112,-0.010390616770528254,-0.0888666519856721,-0.13781078086442597,-0.18261722297153013,-0.01850453958331118,0.0170237978740241,0.08571209429815235,-0.05601846072821199,-0.2301197819300852,-0.021238592739598713,0.089995133688372,0.07303625720608306,-0.03480952990723344,-0.14401488243906901,0.03988134477079137,0.03998570014925832,0.08835685005555398,-0.054040546559345363,-0.039536480271363125,0.054282024858499776,0.008267249509105701,-0.10523612880347359,-0.23703709188671207,-0.06733224219444546,-0.06215624196175228,-0.11674176946973795,-0.03987551191549726,-0.14471148122975658,-0.03240958925701018,0.1126359690243349,0.20950890508599357,0.2868157731734566,0.2229700319977143,0.2310886506040791,0.18217549437886055,0.15619763742395423,0.22731422169758078,0.2487772093594263,0.16393255051313674,0.1714193499118544,-0.080506332317272,-0.046258444088976676,0.05202531905311593,-0.12605064526965157,-0.11250095424168877,-0.04161153931392623,0.06736921175329033,-0.1574879635307095,-0.1303277325567916,-0.017145902991796393,0.022818554345051017,-0.082552049844425,-0.143450088799684,-0.2030857651810177,-0.14512635160700504,-0.07129729214126268,-0.07774801686779159,-0.04651961100855368,-0.07521759603523233,-0.17085139277655614,-0.2458877933768423,-0.1958597080060881,-0.1336599025585268,-0.05044830471226729,-0.12864229172908678,-0.04548618922828672,-0.1007858150940834,-0.204854344820484,-0.2873602819605721,-0.19869734422721042,-0.12090532754554933,-0.10912310430653564,-0.09003669306076993,0.10037305545524554,0.07363858085022092,0.02428603588883792,-0.006536856746391311,0.0672250830530411,0.1039976804323713,0.047713089863208304,0.05299882595272972,0.057022395583217984,0.05092510373477722,0.04639026065231729,0.051156487895261116,-0.011722984442141822,0.05006081077007494,0.0989811691172302,0.04363244622820652,0.05429129367371072,0.058456538380729284,0.03102545406283743,0.024001242790969084,0.016429882923144006,-0.013864011754676725,0.053907173661300524,0.006752925077736135,-0.04549453141569803,-0.058664571671239146,0.048783071416052835,0.006783541829293552,-0.004112723296190144,0.010550416164523652,0.06229414814597387,0.09445115189567507,0.045974071244286825,0.010747155923376822,0.012910169344479241,0.01162615605379312,0.031839716658494374,0.03837953429590882,-0.010411588854517989,0.023127171437178223,0.01928125917637243,0.025435394028895015 +C18:2 LPC,0.0117069660316425,-0.14969774972694871,-0.1425624772645901,0.2104453744284024,-0.36140395916808365,0.14916134990050278,0.3413218456033485,-0.2539969597649017,-0.12936887370512837,-0.3480077648574732,-0.3223836598883687,-0.09891782109402716,-0.03025269320216402,0.02570666922708074,0.20940097857645426,-0.05415892551532277,-0.060738894374948726,-0.21135501444180016,0.08078709860642679,-0.10390280986419541,-0.15057367587667786,-0.23922560472690743,-0.2608966675963908,-0.2008938666541725,0.08295793784093593,-0.03332851268249193,0.21126459501279277,0.15772766692168166,0.01571864701245127,-0.2854859370824544,0.007888295855386043,-0.24921026630024198,-0.34329521295690446,-0.18680404784932192,0.41389796342120494,-0.06258140749973252,-0.08388429357208335,-0.13695352549108983,-0.049267688422403096,-0.08754827266911243,0.13816644315343585,0.10016838511390629,-0.12425919555102176,-0.338867153826524,-0.0953299769033572,-0.08555316578965445,-0.11417382701659136,-0.14821020749701327,0.0949429237237783,0.03704748366509509,-0.02729075619376006,-0.21290318693865493,0.3362014953084259,0.12293107610047249,0.340276996058719,-0.09473302418319449,-0.11627692038170277,-0.04797664515664896,-0.1380940671233824,-0.4209277542592764,0.15051294327701517,-0.09212212312627735,-0.1295080491099109,-0.09074270182301113,-0.10822670021170226,-0.13909702379592703,0.12668953173788866,-0.07613338540459116,0.04728372144804296,-0.02945579810200322,-0.06213067175954385,-0.14521431105992016,-0.14767239949163077,-0.13441537133632328,-0.17699437729623235,-0.07682798000509793,-0.34322325606043225,-0.13751003588993113,0.01335031721553506,-0.10061541820887933,-0.19638251920247893,0.18583925647981653,0.06697268680322413,-0.10265795472655571,0.23997111975431987,-0.12364106874300586,-0.16486516142428187,-0.2542216290583532,-0.2913866618367064,-0.13556279285404627,0.05467366785941472,-0.12995037226550962,-0.12060139240766303,-0.05393732570337759,-0.1459029867641539,-0.12901541440640263,-0.05710326520774345,-0.09461235629120511,0.17517766513465974,-0.021338535557187243,0.01696865124514977,-0.22235443032361232,-0.16099780998435587,0.013505090041716072,0.2789847876443609,0.1268326908864705,-0.04076841759531744,0.01604508818536766,-0.2071173288001234,-0.04109494208785476,-0.019612121156883988,0.026422039755844055,0.35175618236070044,-0.01845088830828292,-0.1459201410227384,-0.08966340794253402,-0.3703048429576298,-0.06693021609083578,-0.10513137399831576,-0.2787341844307588,-0.34761737279903304,-0.24617129000609558,-0.32443605103938683,-0.18019443999293802,-0.17408524829478744,-0.1692760640127767,0.09892254938470685,0.048539810797138996,0.006113814361841782,0.0660926108869931,0.08607261888208569,0.013512386397477002,0.35474347243662263,-0.13187481209191496,-0.31955503975558797,0.013310676256767058,0.34368586526516226,0.37009920465537277,0.3548968301809922,1.0,0.2513095690574055,0.44332504947873563,0.3252948455140419,0.4813395156257211,0.4392878661491207,0.094585473952693,0.10581672192379335,-0.06090924057928627,0.2616876673505123,0.36569571682705154,-0.25351537872664176,-0.08614450371743479,0.0908612761128828,0.10559280236339609,-0.014442065536792599,-0.13857756358579398,0.16685390031293668,0.3842442184301153,0.43494169861611487,0.18658948547999812,-0.05074628722894525,0.05720633543786097,0.4142746463806771,0.47004154790904323,0.39897841981921656,-0.1424679509034751,0.41384916198241195,-0.0663292140914431,-0.09525293306846705,0.03378025272653551,0.06688808209681923,0.12936047928442204,0.10021485996745078,0.12313424172426682,-0.12237312381538984,-0.08423587641497399,-0.11924480320269011,0.11273334086189694,-0.04125226772285495,0.013303332468826609,0.04503504473145585,0.11868702902881881,0.04308517540707393,0.039992251774662674,0.10898847402548001,0.09055798127057696,-0.021196370705444924,-0.026416631130638184,0.11864583417686292,0.06111843555900261,0.13557837932601477,0.10506459127023961,0.03460631197710169,-0.0769486228085905,-0.006786632676753231,-0.0579725722436407,-0.10940035812012759,-0.13966072110710884,-0.11813018640414963,-0.05073157204006329,-0.12981924650668075,-0.12197701279664708,-0.07020223539958607,0.24998640778198622,0.16163709291520414,-0.05198227501427705,-0.08142007631006158,-0.06338019929496154,0.18953383937647958,0.29349415547654717,0.2523354572475481,0.17147275278857096,-0.022832694297736145,-0.07286739738538701,-0.06823014300508332,0.32398578544130524,0.24969871806346422,0.3491195538451721,0.2861305345948705,0.16732082471467705,-0.03189040111452731,-0.07881804755302942,0.28155017532619936,0.24365551726631204,0.3007152240078059,0.03205552104737779,-0.02911819431856222,-0.014548056144214535,0.058315344774978,0.004778442982861091,-0.022372159710831785,-0.006843740402786977,-0.02296343482807354,-0.06483586999308272,0.053832982387918456,0.05281435334410547,0.028242612085534854,-0.002217820528025659,-0.015514232564674423,0.027734219114959265,-0.027735228995641396,0.028984550967864158,-0.012088009469314535,0.11057685443304827,0.10617377575673972,0.08106651691926167,0.06731325066243164,0.04810388036367774,0.07843771992776144,0.0312659410925639,-0.04074144179882558,-0.038833984916247705,0.031110503591554216,-0.08014941819975932,-0.07443963662673161,-0.008707679085814823,-0.07702188365672905,0.09065392574775816,0.024396338674190603,0.010208179791183655,0.02103508661937224,0.06209728781079945,-0.03758308819187617,-0.01514319588362709,0.02067786511526447,-0.061378760236024,-0.07159978000534802 +C18:1 LPC,0.02971312360262722,0.030649443505866864,-0.1903047837316493,-0.10831791050582004,0.1025945278597215,-0.08743573799366022,-0.10721088737374687,0.006347728290367874,-0.3029848472312322,0.11844411432848133,0.09293434214820251,-0.23459506501031446,-0.16178016754853333,-0.08099369390318176,-0.17439784999354194,0.041791184530687295,-0.025604103467372134,0.0693281402828646,0.3516437084894386,-0.13868295874306152,0.0846217688889413,0.07684085604669533,-0.027295447724832375,-0.23096877629088813,0.009123432974897667,0.23128558900048538,-0.07467963510627144,-0.013293924342827331,-0.03126750944893667,0.15467057814849672,0.2008424519248371,-0.08182727694082968,-0.09519243006880956,-0.0003173243979905089,-0.27345559546593734,-0.03394370854841156,-0.03302858557666976,0.12916316732971073,0.2837837260586923,0.270968791396121,0.03249747670135729,-0.019854917771253176,-0.3014362239062146,-0.04359740189730896,0.28611387499230806,0.26293637199641057,0.027712168917935057,0.36713272895525056,0.017186847812089897,0.18419506840347064,0.12895786930946396,0.1536217580494898,-0.1822159517441002,0.041883463357062264,-0.24581928102421388,-0.14201092565621795,-0.09708545621944063,-0.10392775662701544,0.0073731838126288125,0.010345379590030132,0.10033613292254592,0.20820304214045585,0.32057893644571417,-0.005274621354400775,-0.16923835886796026,-0.06786151256893713,0.11814914284967093,0.3255133617079275,0.19802984477446084,0.31539446982182406,0.2665560458427592,0.3563347623614262,0.3155023838748223,0.3304595383730652,0.33466175800733494,0.3080776499951516,-0.026093044131824325,-0.13841759183765112,0.10445457676179695,0.21893779352699438,-0.1071114251502621,-0.1222998092661635,0.0031577943465734486,-0.21815897055940164,-0.2617664448726817,0.22008822423178542,-0.04467560925828413,0.29524428626514126,0.29671192099271265,0.2895598466449071,0.05119041051249873,0.3189788351782781,-0.16297786643702944,0.2716482451466167,-0.08068075983865873,0.29324515213768815,0.24162963140611274,0.12452474253682641,-0.07033438459003527,0.003049501796340667,-0.10359928277652057,0.08237889545102861,0.3070533180515134,0.17818051288520959,-0.204234940174202,0.23983549252827913,0.05315246481407335,0.046363936745046644,0.22313145348448718,-0.03888714132909691,-0.03961761182785866,-0.08581303878337333,-0.13180540778479594,-0.11150834365573067,0.27904566617729964,0.18960513489926273,0.0421711424600103,-0.17130209637216176,0.2578496002463518,0.05496784458167983,0.045373057433790165,0.11833502603258013,0.052165901282428755,-0.05243240530277701,0.04886163326431338,-0.007876888233000317,-0.1394947758457664,-0.15629730223798438,-0.14898964748667815,-0.1332565082749863,-0.0934908885249546,-0.09843477028063531,-0.2417060092388688,-0.055830886755016886,-0.004397490901979745,0.1686035646264429,0.12159294319560762,0.6118451644802121,0.7673696183482728,0.2513095690574055,1.0,0.559299763523973,0.8329240009332882,0.41375955497943606,0.4391463576038659,0.08510049445709172,0.13681779335387675,0.227107880112513,0.0013617427764780518,0.16790121048316398,-0.006218580367830988,-0.1407279849137801,-0.22787321392964405,-0.11317673705086545,-0.027635550747487476,-0.039850126320111486,-0.20382682498346796,-0.14330135114887352,-0.18948062913487387,-0.08036332512861302,-0.04011045405371989,-0.12999905463769365,-0.15335133554663447,-0.1254873634613809,-0.1745103377008474,-0.03789088660417976,-0.16537268420027043,0.08504934353939086,0.20195392437190143,-0.16049713568533067,-0.14247998701590683,-0.07590200610347615,-0.10511005353290062,-0.11731712254901148,-0.027901792498251025,-0.019027373192380386,-0.06000651947639922,-0.2130620313582349,-0.07331373786803054,-0.07124304775784938,-0.16029686650429611,0.15594813320487882,0.38487767251242505,0.3943810501148852,0.3420367965252439,0.38810147684011476,0.38252351206746066,0.22354663544189116,0.36556484112765764,0.40590283837580476,0.2671979162894815,0.3062845586147087,-0.2222517495428912,-0.23533474342457428,-0.2057524190000121,-0.163975740382255,-0.18382940904459025,-0.21945182843249067,-0.1558338520632894,-0.18977091368934257,-0.19928934794784278,-0.20544569462067558,-0.17651154671115837,-0.281894451291349,-0.26613879264631624,-0.19064216746168208,-0.2234801819776621,-0.24919869368953276,-0.2638485645744499,-0.2746752265448262,-0.25552778276789934,-0.28016473726475116,-0.19828426114173556,-0.2710174500279735,-0.2593104370375437,-0.23376505573581893,-0.29477789292817,-0.2691925361971406,-0.27837300957219246,-0.32899879053446063,-0.26591686008806664,-0.27084265368588945,-0.2771027741784403,-0.25966311167607686,-0.2724305401573778,0.09364700842846396,0.07132708859526984,-0.006152495706820886,-0.012006752339310445,0.08879722563001831,0.13163181974308258,0.05216791992180188,0.12044121160274981,0.06508995502383405,-0.01294202735151172,-0.022009398058401724,-0.028610011971193314,-0.0485363417095257,0.026737274621790968,0.12498239036185275,0.020910948687112334,0.0011577731344329532,0.015106178363014498,0.007253747452519193,0.05975265324489843,0.038040219614102005,-0.016163964182756188,0.09244659699768656,0.046854593960409335,0.0015667164959045142,-0.006545529258354936,0.10336908707942538,0.006115616535687566,0.029073944516342674,0.026204296208602824,0.0014442704091735578,0.06460431516297566,0.01310073787520004,0.004989282323986937,0.02085075193316528,0.011203761077913993,0.08382853143678864,0.04159937154523007,-0.030262529122159338,0.03158368029311358,0.03094064158354421,0.009510616176094808 +C18:0 LPC,0.010208948034348266,-0.2504395311315923,-0.16713929382623963,0.1613187788666988,-0.23342058468544227,0.002903941134175052,0.20587936311451605,-0.1990792969837298,-0.2173388821501087,-0.22423149522247576,-0.2223545953071671,-0.1731257392040188,-0.12384465334955658,0.041200381981051026,0.06444149540087522,-0.13738668424788955,-0.2188604941630081,-0.24714715376346744,0.18036225713613585,-0.23015598422677885,-0.07751149056484631,-0.22162848515143055,-0.2958158733788547,-0.24862215303825722,0.036773407825244055,0.10205113964830663,0.13367581296516584,0.12269843895801778,-0.018056051292985105,-0.1525302887934021,0.06553434705587559,-0.27856609540728244,-0.33141641493383966,-0.21796763068732972,0.16137539808618956,-0.09931287810169574,-0.2302458241525818,-0.1257151852010845,0.10495360658595249,0.10087462467923926,0.058701797486936644,0.07673634834469305,-0.22618920723380004,-0.2898170214318396,0.09852863322034888,0.11869936085388244,-0.050061364766480154,0.09284915434932871,0.025958034172235217,0.1477373694849733,-0.0007197171081413136,-0.12262745257422925,0.1832360636477575,-0.003696056406893038,0.11255326505405819,-0.11010794126435679,-0.17336236354259515,-0.1476536580681924,-0.08741655122871095,-0.28810123157689144,0.2116093650009019,0.007202985581274861,0.04267264175403865,-0.08095921964239097,-0.16611354629328323,-0.073320844888769,0.13201499773469194,0.09061555499512394,0.1285957384506612,0.11958748590849891,0.07485164215542754,0.0680598069319435,0.034055019810828126,0.04608338181291502,0.006039955342450471,0.09373370625400704,-0.26199873856261324,-0.08508441275757739,0.15422605672916248,0.12111440688607525,-0.1656358712027849,0.08086485145627359,0.08487246650143818,-0.1749239736191708,0.030849097335565956,0.0917637093083621,-0.23452901754305414,-0.014876652830736496,-0.08711478510402258,0.09781730927685711,0.058022561541654964,0.08925944566656167,-0.23762035068759788,0.11786522038131306,-0.13503977248308455,0.0015068435977493337,0.047128309647584625,0.03980923646029275,0.17701259732230976,-0.042716924441740974,-0.03874816992239415,-0.15420851470936114,0.03593578512726011,0.11448573700944648,0.15689379292738465,0.17055115760450815,-0.0021802663124965344,0.01645426018404555,0.02598829904673473,-0.07828322549656636,-0.025909586753527544,-0.1102118074098019,0.1358418189883566,-0.0836945966267536,0.026082379455609758,0.01720989764143435,-0.2693666196073923,-0.15635325010051432,0.03488744766197006,-0.1897580195818276,-0.24908211833515356,-0.13604012090368015,-0.22655526077941018,-0.16724375201747793,-0.07762063752152935,-0.11255680870013736,0.02142207504076891,0.016909922132988586,0.05347659816847627,0.1256610903018044,0.19764843132016346,0.08994607407597105,0.137396979520407,-0.1778804644240773,-0.2844385349378223,0.10818711068397185,0.3217226923360511,0.40879879829910765,0.8164286908358387,0.44332504947873563,0.559299763523973,1.0,0.5301955178198141,0.9242302666959883,0.37586474679931126,0.13395831889214146,0.02135664228526914,0.1873957860408709,0.157635828468299,0.47414236507346086,-0.3635657708131553,-0.22434636795356147,0.1413583053414658,-0.16540856956047628,-0.23691555155343055,-0.36598248677631223,0.06771600495627585,0.14400880774334174,0.22383398653189143,-0.0121172475416451,-0.2861395220728115,0.19272999639492805,0.2606678785954615,0.2889095123795091,0.1901227431552151,-0.1529671082020807,0.24603860796728563,0.05990607673802269,0.028699623942012004,0.10932739385287538,0.0015926876897270235,0.1519584129121139,0.1240637137253082,-0.054215107842952207,-0.2920364645429067,0.01754788673364522,0.02464946576432309,-0.05364706143747835,-0.14835984660285936,-0.19946049397683402,0.032655164666956685,0.0572678067485724,0.1259962810088904,0.2234736004742309,0.20103838434362176,0.17268414965987672,0.08185178427899231,0.15073799345223865,0.23560025675706237,0.20447348934674806,0.15910012806225746,0.18768142324001522,-0.11293784138545215,-0.07807838690722532,0.025545565197187935,-0.1604722675118087,-0.1855984455115844,-0.07439924469018463,0.020645331893629274,-0.18602214244398665,-0.16210622612930858,-0.025190076460297844,0.05506557564623506,0.0654271596435952,-0.02981509486649319,-0.20370455410739646,-0.09933812057600408,0.035110855007592534,0.08952224080638517,0.113080635858247,0.09881539300272946,-0.008644413910735872,-0.19204546315419352,-0.05914852866556354,0.028180031375096358,0.09286919365445169,0.07698852834756728,0.18979886158966866,0.12129857084138092,-0.00022095234113008263,-0.18811581117046713,-0.07631993231515978,0.10754645977193432,0.1036038388954805,0.1623404895652059,0.07639845209831614,0.04502535652942029,0.041054939825900603,0.015968289362403954,0.01681859315456707,0.05285670375141829,0.06404523492303832,0.04524162747522071,-0.005709420581415638,0.021416101889547533,0.01443490423969104,0.03440739607990252,-0.005971288655991871,0.00675226123634635,0.06707369607803551,-0.01773853292752898,0.04797661147673263,0.021860415300130373,0.051257474318647564,0.03172924226302153,0.041303556952979034,0.012198789270060536,0.05568155044857752,0.017727270613941363,-0.0006130537520520681,-0.038686945126581475,0.05645364366394207,0.008752156515631982,0.0013695975032939533,0.026247913677565536,0.030817160496681567,0.05115060232019637,0.03348929062777582,-0.0028912925814642883,-0.006609725916442716,0.005529451466550928,0.02858051908328347,0.025980269878004884,0.0030969136377588494,-0.0020757471407610623,0.036771288497522515,0.024291944919147702 +C20:4 LPC,0.04888741013532775,-0.03241512682640198,-0.16722680330908898,-0.07011518616570177,0.017137623037546193,-0.04178978218878203,0.00792768683742392,-0.03210542423717298,-0.27073763043988913,0.021435333445282333,0.010656639364496227,-0.18819564966401578,-0.17255417485216776,-0.03622256006026582,-0.07226929306079315,0.010151282101453036,-0.046142314050367325,-0.015964873675153906,0.30145609754823616,-0.13199643293336824,0.03395004773928645,-0.001245901948435046,-0.06748897725285093,-0.23071046686473526,0.008646997120863397,0.1936436569101272,0.004585442686847031,0.0025488939025089417,-0.01697333761434557,0.0821227361593209,0.1542150010761527,-0.11312604505655317,-0.17659853926964794,-0.057012449021713506,-0.12573000558590142,-0.03312948020289084,-0.06328178229031589,0.06945377331852298,0.2465972477312102,0.234742981838856,0.04514132969011184,0.011180535733500639,-0.26235541795518574,-0.0892922051335121,0.2260326016943174,0.24962806166123952,0.0018573733114317687,0.270272200553429,0.014253941895156967,0.1927356468487616,0.06102258823991592,0.04214697902953908,-0.060514878585111016,0.0539601697215394,-0.10937535165409269,-0.10266457848761659,-0.07737078578237724,-0.061716432676603004,-0.03280184365198168,-0.09871689009838441,0.11665855208597746,0.13839379690404696,0.23437970913061684,-0.004482764121360931,-0.17265247018636498,-0.07958209394513983,0.09685840457465451,0.28144259678940037,0.18574211565489052,0.2475769977118117,0.19277295802987138,0.26157327109732736,0.22646324662773376,0.24348402497660326,0.24374021366603763,0.23888734417685462,-0.09809616306291724,-0.1514852337499524,0.0822325689386042,0.1536876649788664,-0.10005744990149326,-0.013054042858966318,0.07304911600051754,-0.25112187449295525,-0.14900622778140116,0.1491497950304585,-0.049608485763195646,0.19517216576345497,0.1718540418085332,0.21623609570532956,0.037413878445600936,0.23899281012190005,-0.17033909807111924,0.2090779824675974,-0.10233137153483339,0.19906655866160294,0.18603670680056014,0.07558512813218267,-0.001781226614528038,0.009695527308300256,-0.10512641997933499,-0.006843276815545537,0.2261118039474314,0.18317444796219395,-0.06527764543917977,0.2057604609357906,-0.009482620599315525,0.04111666400227284,0.12720879995108966,-0.05626999336500875,-0.07438084535047994,-0.0218697126344104,-0.053821575579764046,-0.05978435364356498,0.19341553340984474,0.14076121236673345,-0.05872995572117451,-0.14592718000645577,0.16835704103100146,-0.01643874772707544,-0.045877920995647914,0.054787810478754854,-0.04514718369556804,-0.08798089755068382,-0.01753646040066713,-0.07065957439612684,-0.0871560417157014,-0.11975964629623721,-0.14139483308716158,-0.11296689376680104,-0.06222207914002522,-0.09669304487134034,-0.08992842844268513,-0.11076181104396833,-0.04952780183618371,0.14410071674097993,0.1981534039808428,0.5508899675525025,0.658187744181694,0.3252948455140419,0.8329240009332882,0.5301955178198141,1.0,0.4279663829339876,0.4775490591842828,0.07363172393166374,0.15239306893257143,0.18598850363854208,0.10803797999078724,0.19284236735406254,-0.08875712907129157,-0.1664645609045442,-0.18897213042752,-0.08041841838320364,-0.029063782744725014,-0.0789479427151826,-0.14874119486601822,-0.04547459180548659,-0.06255161252608987,-0.016089691511094843,-0.05084884105833942,-0.12237432403066077,-0.03707384632822398,0.00464237221028434,-0.04911285432537043,-0.08153665656059216,-0.047564112123971804,0.055105531606295326,0.11906951265350595,-0.1459958218235348,-0.07592536254816198,-0.052028457158493364,-0.10018365007659856,-0.046238775131397576,-0.0064828410631705136,-0.0035804405611517404,-0.051030527291652354,-0.1391953279071629,-0.06988517262747763,-0.01810218001202982,-0.13431507956843564,0.14490931375040267,0.32187248069339647,0.34401867092020055,0.30922827173926337,0.33286670232098015,0.318154100926411,0.17890833037549944,0.3229209240412994,0.3552740973624651,0.24474840314635032,0.2901956107437257,-0.192055591821024,-0.23302918194551353,-0.19503367473903285,-0.16536512953928212,-0.1980604401960044,-0.23627645654592344,-0.18086023409172117,-0.1922434523814142,-0.2145819648404926,-0.22227121839634495,-0.17016514114967074,-0.1809469453846682,-0.1966275648738663,-0.17936849480977402,-0.2166588314760017,-0.22693313649544422,-0.15299220696071297,-0.1613829897075774,-0.1565752205043872,-0.19354466657184724,-0.16625475815141685,-0.24883057020140362,-0.23108825970941868,-0.11068631489612245,-0.1660962865884974,-0.12078511133875493,-0.1545938303177419,-0.23038302179876938,-0.21934636430508264,-0.2501452656599588,-0.14497002116629124,-0.14215455612585298,-0.14942338483175954,0.08299077781350568,0.041112384761172065,-0.0006579848683605112,-0.03194090437882041,0.06995148215507935,0.10268009101242168,0.04363280018279176,0.09295302073224367,0.03846141925869429,0.0027004862031960873,-0.012380231806931527,-0.006019886881505568,-0.02644018323093585,0.01566470948375805,0.1097317093798496,0.02491301797744498,0.014813004045817079,0.020171739479024148,0.07843319641915451,0.07942936159233101,0.057482299920913846,0.032528506731656706,0.07997979896128035,0.07901823829367036,0.022064379801916376,-0.007323969539520185,0.06003091036387157,0.04272548484658655,0.00029222482825481006,-0.00770000119055372,0.03718518246156685,0.06812610143289133,0.061144641390413826,0.023590870866456455,0.041092879638428476,0.05422839603428843,0.09689285956969387,0.04080574391733381,-0.006497064329191041,0.03579470041024399,0.012312292618840273,-0.003763129209157764 +C20:3 LPC,-0.043918995616403805,-0.2813541251902955,-0.1467567883632891,0.18434800636445822,-0.3280529356278067,0.05777681938899378,0.24507629843490014,-0.24204075062292343,-0.12348658298257152,-0.3019414617535914,-0.30750418946652025,-0.0781766830829427,-0.09141329747548767,0.07503391721495965,0.16293350467669002,-0.17111433746095026,-0.23755214277918996,-0.31195527009748036,0.06446869619770423,-0.18696197287599484,-0.12386293475293887,-0.2791669273670753,-0.32360905622190267,-0.19191169823503162,0.05597701811564701,-0.030749732441691133,0.1712348699191507,0.16008937223238945,-0.005239528135958581,-0.2579754056915059,0.0018700312599172874,-0.2827849536276006,-0.35592786188280334,-0.24951572154202817,0.29964893332598774,-0.08539905437686048,-0.2250430095183764,-0.18238415725894982,-0.0371030149682548,-0.01694258045048656,0.06068953743961939,0.09592126883782806,-0.1265627037667781,-0.32980005719265426,-0.010828058929377899,-0.011146622709333715,-0.053143882565212124,-0.054020451121568655,0.02546877033682753,0.05543832220775583,-0.04467605199014165,-0.19228883413534886,0.27071721683990485,-0.01022349948555649,0.21964744562148425,-0.06791481436524226,-0.16318070090160652,-0.15289151280703164,-0.1246460893505821,-0.34763610112239035,0.2009298849902553,-0.08299624957125616,-0.07457563469691061,-0.07630771054632321,-0.13110387111865981,-0.07595940582579341,0.10743078410442991,-0.03815021134008909,0.06339738823479511,0.006604314016388253,-0.025722259287195088,-0.06828393991287203,-0.08297597188046599,-0.08664399866344796,-0.13326723508004776,-0.018483879593665518,-0.29389051066737637,-0.06821035839205071,0.08068212847732448,-0.0032551600605118807,-0.16391420544265964,0.14240774528369785,0.09141318762351405,-0.11019270097727042,0.10399765101048156,-0.030555250588336212,-0.2735661756469618,-0.17214175827066036,-0.23857463440418553,-0.05187732029044515,0.017829702180696055,-0.054030904202333425,-0.19136697134345046,-0.01416387970781943,-0.16657993072316551,-0.09854681702743201,-0.036299004921813885,-0.0008410448240964686,0.22742216678219193,-0.06698513498549485,-0.02783971929594326,-0.1951971709850104,-0.09426658713519975,0.03164490701175547,0.25649699497519024,0.10451837216489987,-0.029152050347790375,0.00908018030373437,-0.07392060091714575,-0.07266149483716151,-0.02904949598926553,-0.07807500275310682,0.2370091480375886,-0.05993345172825165,-0.08572786063729167,-0.05362460299045893,-0.32604596059877017,-0.12699938898610852,-0.05366640716862174,-0.24597772301614831,-0.3087505214382631,-0.198510816520169,-0.2774264800645423,-0.16583273257227313,-0.11080317878603295,-0.12960720503316206,0.043907474585172176,0.05024471830487283,0.08862423585011985,0.16636712333564987,0.22917943719543057,0.10133885355274269,0.2627394163837933,-0.1886352672411567,-0.3212560941765798,0.01271838023374633,0.37670350150656506,0.3639094876388526,0.7124206489566204,0.4813395156257211,0.41375955497943606,0.9242302666959883,0.4279663829339876,1.0,0.31964867477416437,0.1588622069916856,0.040586638064215884,0.1978857093004828,0.21023365206662617,0.5031421410051925,-0.36607538974052906,-0.15099163093652326,0.23468279663463926,-0.08898746396731719,-0.22536044488105395,-0.3302060293507186,0.19726358608029498,0.23879835639845576,0.3164315481070386,0.030667692395583954,-0.23152413413355294,0.2820857444107809,0.32691354671930994,0.35964890455152415,0.27274276002756376,-0.1154800366626155,0.3384910444108721,0.07715420740526982,0.006179171053097615,0.20738662138803343,0.07037322684468303,0.2092085744437894,0.15952799194009537,-0.004337880733043625,-0.2545054415169293,0.030651783757491235,0.060249383640435125,0.059949277637658144,-0.1042056677341532,-0.14722984969302308,0.11579735884511883,0.023710358512201355,0.017138160807931957,0.11451547982414632,0.11740819297605778,0.05436388646724331,-0.03577983132085643,0.10590203771163666,0.1311059704418272,0.08135906325061511,0.07870601960357064,0.09909298259845362,-0.031515945827036776,0.009885760132113501,0.1234178273282711,-0.1196135505693417,-0.12556166943468097,0.009107521894517712,0.10044332065270488,-0.13366305992893104,-0.10377781164926528,0.05764270609389813,0.13525248520653502,0.16220761236340048,0.0435049150642042,-0.16304913246598274,-0.02307579600390829,0.12132425738652727,0.1780489953689033,0.21548812685617788,0.16862673296215341,0.06816378855538079,-0.14455620030475438,0.016895946976385568,0.11052187304397953,0.20445698114646071,0.16103326360571152,0.29560012080335407,0.20198616716158838,0.07798808544062716,-0.12444656173612166,0.011161364415006942,0.18276443579330232,0.1660609274002952,0.2394927149505295,0.059920125201383935,0.0018372744672847771,0.046247907836938114,0.020780068740344066,0.00027413016877499976,0.02926791313908703,0.04769779068852685,0.008491321273722922,-0.00978523500408542,0.04288672881311223,0.04009756013493432,0.05578506599804479,0.01032967507249909,0.007827958933943934,0.040300993766850854,-0.011142913446803836,0.07219284744663854,0.03345070684572198,0.05288971002794841,0.031295923228149766,0.027891049921512027,0.020253032713008136,0.03763911762425679,0.018617047143054937,-0.02322461252413499,-0.07078554068352608,0.015133604184730554,0.012413227033673176,-0.027699462526812168,-0.01922146834351964,0.04340034500058169,0.027950450800061376,0.04583299478666178,0.0038443045612105075,-0.023023219250179496,0.007313723139127491,0.01196718976518407,0.004130814320118294,-0.017714842469995537,-0.01034653226077456,0.0235433003289133,0.0049019082607483725 +C22:6 LPC,0.12049840370919929,0.002155097104296825,-0.33730213364958855,0.025377306455561115,-0.06824866020178318,-0.038623695915144036,0.29090914136608265,0.011318669962499847,-0.5299454359179513,-0.09271866990949494,-0.08966247420056797,-0.48685777397332375,-0.13156905827555299,-0.19881477388100463,-0.11708927548925266,0.10372390517980788,0.0030721491007117637,0.019612750077134526,0.5709305446738246,-0.12134834500506005,0.04145128196049767,-0.0626609744630404,-0.1460680924883895,-0.5082609675512383,-0.027855750318526863,0.40988496053430223,0.041271362515623036,-0.03915711999832041,-0.02294235440112205,-0.016953261355217693,0.30993747502407554,-0.18908186602121932,-0.28006060587441667,-0.0910823444137253,0.024185823299647857,-0.05905112534300628,-0.11352632912509195,0.10649115992188612,0.4058668247794272,0.3299095715233153,0.1888624902932187,0.11391173766772737,-0.5210887335610438,-0.18026644772462042,0.3368512764048789,0.3151317694791242,-0.20743139767018645,0.3866409250408047,0.1505955106805462,0.3998697372621964,0.06759678004483588,0.07109967820692269,0.1436373221696504,0.1199489589445343,-0.0026293624939493225,-0.11081058075429719,-0.08932459293116331,-0.055356555027168616,-0.05920803107636557,-0.17808378986525106,0.28660947245736795,0.21432531149525108,0.33577501286151196,0.042871655595069294,-0.09867716238816197,-0.1281180743172752,0.3176265790122192,0.4119911822325998,0.38703436940245856,0.45520627617057013,0.33741871115907407,0.3543770927636122,0.25858581900187644,0.3172577611750881,0.27277767412067827,0.31257936774378947,-0.20319799625511864,-0.21846385884225705,0.29406731321173585,0.26739143773181445,-0.18548263205361762,0.11921669229575764,0.11481091758070923,-0.18061358867708904,-0.06236146934640442,0.3360222051416365,-0.04974104189311637,0.2020946270168706,0.15493929028045372,0.3516165177792501,0.19251911760617324,0.4106736333894388,-0.42101655856746645,0.4111327461624016,-0.08909789008802843,0.2941824901979719,0.2201544426214917,0.14047805409128258,0.2140279620026549,0.08905721556397427,0.034418064949726795,-0.020647705985092052,0.33176244558643375,0.3897989385726495,0.08684950291097215,0.5197807913912014,-0.028405960860378544,0.1679162789136432,0.14356300413415016,0.06894600986575987,-0.025817211495797993,-0.10640186277172083,0.05976346058862786,-0.0705883776021068,0.2945305419887897,0.22268446681231555,-0.17640146425856965,-0.09539727799859754,0.27427714659115987,0.010181376575221177,-0.1392047705747117,-0.04298751555769405,-0.20199126555244581,-0.11993435061540278,-0.082974513775881,-0.1372122031893963,-0.07619702439424623,-0.13496541474350843,-0.16706489897777005,-0.14066236929508277,-0.05535731606199898,-0.09528790463691965,0.007193127989678816,-0.12534542674714716,-0.2047605805676164,0.3996391386754557,0.09462772179035298,0.2671282580489015,0.362117575513306,0.4392878661491207,0.4391463576038659,0.37586474679931126,0.4775490591842828,0.31964867477416437,1.0,-0.02932358651943029,-0.05678811356524705,-0.18741666787250583,0.0937552626927424,0.2411002282248174,-0.27437580609907286,-0.3243979291237461,-0.25621176822349834,-0.13087658384652517,-0.12971157583847073,-0.3115444423058312,-0.23295939510918845,0.06280548998370658,0.06799439674600072,-0.09617433235179623,-0.2621906736721362,-0.24087023791174236,0.13859818655426623,0.15562332123606326,0.029245583920019084,-0.30581259066313404,0.07958587485900281,-0.11047928885326332,-0.02900348441456738,-0.21777069643295888,-0.13831582451164148,-0.08738258177602906,-0.040483023252619064,-0.16934775606012728,-0.25178575850808815,-0.19107289147753662,-0.1747743974661667,-0.10219114945253617,-0.27030106765587425,-0.18655844307085492,-0.281434799247687,0.23925418275178403,0.4858737098372479,0.48374216637828976,0.5185976799712153,0.5760342753060053,0.41590861324595746,0.2222090374037241,0.5821175121678985,0.5965686862503368,0.4698866285507728,0.469891329194157,-0.2505348846089102,-0.39471042117674293,-0.31702504887500094,-0.23882611301502926,-0.3727500628002391,-0.42267785394491986,-0.34475973623757944,-0.29887731269715423,-0.42550029024969466,-0.40247359561022283,-0.32214279904453913,-0.16697039493844287,-0.21241302376977297,-0.3288265305012374,-0.41838608736853167,-0.38230585055192395,-0.12482297841078302,-0.08540663664320501,-0.11880670916834636,-0.2066008160723662,-0.3000412282730636,-0.40492384989446295,-0.3545474770738081,0.05397988511276951,-0.0888482230458806,-0.021944654528444473,-0.08779234299473415,-0.22624861706926497,-0.3218443504753927,-0.386791951565583,-0.043360421022098715,-0.05648537693757708,-0.049995854124018586,0.09554983310315535,0.06956033161162048,-0.04871995355679028,0.0063161320621337134,0.0571957134837108,0.10669273574839601,0.06312604658206819,0.10261738375478663,-0.015208428326633931,-0.05883351528299114,-0.0717310563649573,-0.06703069193274745,-0.07641629791584906,-0.0462793541664707,0.127574899687334,0.025223344949419517,-0.0675585523180657,-0.019276506405103307,0.05484382965327051,0.10964655886297006,0.13460684387272953,0.02530615773400748,0.049130314380812494,0.06535033821992685,0.12785221663752383,0.027712377761139387,0.0574957028717843,0.008406833180488758,0.020263341827385716,0.02924666673126735,-0.06178980740843994,-0.049354937788647135,0.06908361760672414,0.06760710839238607,0.0669992441181715,0.024741340111261792,0.16108841880732144,0.06522359315804954,0.003956919389660303,0.0019115093619910379,0.028773183455512823,0.024533834766748107 +C16:0 LPE,-0.010407003123230046,-0.0018498322083629888,0.17205589170641317,-0.0018105911919517935,-0.13173272996451812,0.1754271782524907,-0.05774611879429591,-0.06775073689737193,0.2521206715547924,-0.11988214916801276,-0.14567862124364978,0.2094534215580659,0.06667791082578087,0.13758837420560813,0.23234274860668327,-0.08746165789270093,-0.001925574371837275,-0.04360161850847184,-0.23184590449444173,0.14618564109710047,-0.108154393521529,0.044428223849505774,0.058623756396962205,0.19822714689247387,0.08608196320930336,-0.3019960603028595,0.00784110413343051,-0.00015311189916201865,-0.056586705079853875,-0.14661606801136387,-0.16782939988587853,0.08631133773704228,0.009111288748967999,-0.008002421627696332,0.2407531618245657,0.028313642610349264,0.07495867843455441,-0.053605361987074496,-0.26502028626691543,-0.20296829974467534,-0.10099170780595174,-0.08135045455047245,0.24908643034045372,-0.03107322698620203,-0.22989308978416778,-0.2039702759676705,-0.009583834953905903,-0.3016193591184347,-0.0037346745003893757,-0.26764962607913073,-0.11799702413678825,-0.16169856866554552,0.08976280864211002,0.03800376021729878,0.2007754927717147,-0.03867699341428548,-0.05663311362054897,-0.012456354716958343,0.02226378602019509,-0.11849007628947819,-0.0605029132782128,-0.126219820269341,-0.2779855600886693,0.014853612594277947,0.022045912065053817,-0.019089612168994987,-0.07027871528885808,-0.24284953248998456,-0.1922543632837381,-0.2423488448315405,-0.18882100484637185,-0.28480617818160764,-0.23827212516830507,-0.2339213479823071,-0.2236878058146176,-0.1790327286439008,-0.05418787176343954,-0.007741510920989809,-0.174589627044335,-0.1934347046325946,0.08410324466370363,0.05730204028914352,-0.04026984588669979,0.024279596912886878,0.18443077898769042,-0.25000460403717883,0.01883043325735208,-0.27648849164615663,-0.2663879341951876,-0.28792018282570603,-0.17946140718464126,-0.2840989231367239,0.22305968475239915,-0.25605740265497057,-0.18113875324542378,-0.21557291482035368,-0.14760297605838946,-0.14749327025998346,-0.019808348440464404,-0.05698277832547266,0.04472890436709421,-0.07923430085767252,-0.27531219802366497,-0.29710927391764147,0.09956497991485078,-0.2065163831229216,-0.05180101752469224,-0.1279292801167058,-0.2561900528958582,0.022803467471149086,0.024929561565714565,0.21897818849997072,0.1318436279374279,0.007664848892725845,-0.23344350608020728,-0.2191969808089037,-0.05163750397827519,0.06480454580226541,-0.25516437451076435,-0.10204207486636405,-0.022487043388873012,0.008890905289670981,0.0013857707535188913,0.12890434304817086,-0.032735218307505295,0.02012210663974571,0.03680773733056669,0.17037986286146914,0.14999030235465158,0.10420186222681933,0.009813451290531563,-0.02579192613923925,0.21532217036459242,0.03539999645157903,-0.009997754394739319,-0.22168551556086427,0.349744372668321,0.31355826897471356,0.2976917080389784,0.094585473952693,0.08510049445709172,0.13395831889214146,0.07363172393166374,0.1588622069916856,-0.02932358651943029,1.0,0.7924302800295564,0.5102993032557714,0.33685671810029183,0.4879798618576619,0.09330662466885468,0.31722767273721864,0.25805135519695266,0.14853230978240614,0.04654357654663113,0.13944314493065482,0.2408412249329641,0.15653300489087968,0.13946806195340106,0.06149552309190004,0.10792189946683221,0.1380454245637814,0.06937555257227743,0.04283715654595043,0.0534737688536659,0.030325391948859665,0.05418798623054638,0.0916834502195031,0.004000860937489803,0.16579971300181975,0.2208781206801123,0.09458393194109543,0.16107678239215775,0.10596768100152369,0.08458649781006965,-0.017983198219442588,0.03689418412311673,0.14421225707764507,0.24393893806306655,0.06873403146685582,0.2565051827341966,0.0013147207391347325,-0.22602519649574696,-0.19908720595970128,-0.2813912877925486,-0.27948073422459946,-0.2622763420396522,-0.12624230585000867,-0.3057249044488125,-0.29693480057203564,-0.264192668795969,-0.2619120399249543,0.22729099577682163,0.31777981342385614,0.4411817189030471,0.03930691714998233,0.14774974083489764,0.29004503165645906,0.39664455806538734,0.0361318735361597,0.11979689392981986,0.28829772450838453,0.3394940915163806,0.06436682275505476,-0.035049799986640255,-0.03312551232529875,0.11095079965066501,0.1937459435126765,0.044923686529688894,0.07391305016178742,-0.0024217851738251757,-0.09945422882626172,-0.0943245712675505,0.0480560828116721,0.15807152231207125,0.23452492868140074,-0.0023696515978852925,0.023274569279605584,-0.05479147531228411,-0.1054090823971411,-0.07659531748921959,0.09452006637712942,-0.044275707494468075,-0.06483172814073082,-0.05947081835384208,-0.015541197857334875,-0.0726720839970314,-0.007441276338748932,0.054498947373317855,0.0037783916661621323,-0.04004486836290302,-0.07093473297362687,-0.12952073795935826,0.009824034317174442,0.10410561033028419,0.10426486709433107,0.10081362531605409,0.021666494884614123,0.04234149941236679,-0.04548494648264806,0.00043783827189119393,0.09495602415781584,0.036282468260756484,0.027806816385601583,-0.013378377121143642,-0.0023498049175884445,0.04169816108752883,-0.02841313169095842,-0.02941412231798262,-0.06381156383743225,-0.08632918233053927,-0.10943093847908358,-0.0058508129351356975,-0.060368994232069706,-0.08659042156952887,0.07379095733597364,0.035120724715526665,0.09120030358069056,0.025519710136509666,-0.0011129152825237,0.021154964391477866,-0.027804749368897815,-0.03777054945966465,0.04276452960079202,0.04012835445552276,-0.06836352351431081,-0.05950501751388247 +C18:1 LPE,0.03955198656228638,0.028735695773345563,0.17228845195747486,-0.011978408044656575,-0.09605033950501682,0.1652623313964242,-0.0588730582990585,-0.06798042742687249,0.2793434225938621,-0.09180667500324333,-0.12069723016759568,0.2546194379579724,0.10971076957382044,0.16015219096749134,0.2641641165463947,-0.06593785465138541,0.03973172888842112,-0.02123791966486336,-0.2730846547335868,0.1323538647102697,-0.11246316212872577,0.060435173852235645,0.06983756215904646,0.2461003344428886,0.17052060050426918,-0.2968064036507373,-0.015431483340780998,0.07473130879870746,-0.0017894817089307879,-0.13187903901376727,-0.20954242324704508,0.07227680876966396,0.04958437022529446,0.023271448459841197,0.2394169058745136,0.03875044571634671,0.15280626164587574,-0.05328908105348663,-0.2702744457984187,-0.23212147396211813,-0.12761624778234743,-0.06721145621830257,0.2779908969631982,-0.01732095478594242,-0.2521759194063553,-0.23586166697292588,0.006243050087634599,-0.33398980696179537,0.005868354697688534,-0.2669781047318378,-0.06280000971125277,-0.15206351325325715,0.08320778349954046,0.05885909396537526,0.19929183629731517,-0.01673313834649751,-0.035533087035027035,0.03612606411006112,0.03287090063068179,-0.08094067943632649,-0.10094212567370134,-0.1214542789170073,-0.266206220086351,0.025990153253008873,0.02251832824784407,0.006420728229791827,-0.11289553039506521,-0.255012738201809,-0.22583661858764031,-0.2726381842813152,-0.21254469047036473,-0.295894180111525,-0.22606276629786665,-0.24024398410414968,-0.21094143059573262,-0.19925823646171162,-0.04209390575160008,0.00304582654989109,-0.20805974018723145,-0.23029375883468592,0.0800106858536697,0.04493792669619419,-0.07924366938036359,0.011213252099298777,0.17871387406859168,-0.30162726400094103,0.09272924373464907,-0.2611575771659154,-0.23559136657523858,-0.3249457400812019,-0.14790879189215847,-0.32067908133313155,0.2450075606889881,-0.3007181170313054,-0.14463201825510344,-0.21702042581757547,-0.15665919339923937,-0.19223336656962733,-0.12581732715126398,-0.0542149005985571,0.04757624853600421,-0.09991010480777504,-0.30224391351687135,-0.3110126622162454,0.09821523283649516,-0.2406541074035323,0.015429067480034385,-0.13946324696782997,-0.25555594423241235,0.030955468689403506,0.008138798384165386,0.2976187615351773,0.14586107950315502,0.033170410214855325,-0.23548756556841494,-0.20010699981809926,-0.037674380140607255,0.07928053794725955,-0.20976991469244244,-0.1160330833474344,-0.035769281945855734,0.023882923032120782,-0.046585976502186384,0.04287714007667031,-0.06504190482432692,-0.0652735831867966,0.02452142557464704,0.10655068023232943,0.057648288916094116,0.03394546859505975,-0.043407211971943464,-0.05573586144528146,0.20074582987562348,0.06263776601914696,0.02699856196425151,-0.2553457286075082,0.3344724725261808,0.38514584799283125,0.1895478333249181,0.10581672192379335,0.13681779335387675,0.02135664228526914,0.15239306893257143,0.040586638064215884,-0.05678811356524705,0.7924302800295564,1.0,0.44525905960456186,0.292928132676998,0.42676643214106363,0.15988784647105658,0.3293280199754981,0.199151713905172,0.20553615793984933,0.13530685359307393,0.26325205914026334,0.23420469975922195,0.1433951336505273,0.10685322656551136,0.16718508824123882,0.29656362513528317,0.12472247984598675,0.01774936346469002,0.039327259050825,0.12379212952025735,0.12652120253947982,0.07731201317253047,0.10766496523608597,0.022170012721665532,0.13507386954806397,0.18573832480547733,0.06561247330986818,0.11937393523165919,0.17315557925879857,0.2861954232943382,0.003022332719864133,-0.004866613652150026,0.16217156116495185,0.22915464524772533,0.17210902265345476,0.20945111696817964,-0.016910843602833674,-0.2359108072017409,-0.26899515827052106,-0.31409766508290055,-0.3043279056085173,-0.2690779973878724,-0.18506737826707495,-0.35592105401834273,-0.34592631528726564,-0.30178689107373535,-0.28715319986496946,0.20764614630592135,0.23494170286007118,0.31596802379526173,0.047879707143412095,0.134456591056531,0.19128002690318296,0.23990383270850088,0.07879934661419233,0.10424414545355261,0.18330830646286922,0.20971317843950463,0.048736281708315496,-0.003133467399803204,0.04031114977497846,0.11876569921100781,0.11675274462512727,0.03330284356667839,0.037430815927119145,5.935305173495968e-05,-0.05253062827493738,0.01863748329300284,0.07222967069908179,0.09895664624158947,0.20703048229615487,0.01883090050141467,0.00682499518279774,-0.02098717681131831,-0.051648418062130705,0.03960675017920629,0.09163386160983786,-0.024411201457426902,-0.04708917303501059,-0.04340561353806385,-0.04895271452774641,-0.07703030660646742,-0.04862845876732664,0.07566511174590418,0.004810235176230477,-0.07207164444643636,-0.0872731776666169,-0.14897199641483613,0.01970354069868617,0.10709530150138775,0.1009344021229532,0.08520397477532671,0.027571286215637304,0.05191460950215353,-0.06211137098646663,-0.02151159819422295,0.09765977795756672,0.026069447808272878,0.07158210534744518,-0.02735104653380137,-0.02938380072651813,0.035576966820423474,-0.04876610001801723,-0.04683467827586673,-0.07526856182378072,-0.07748055221286668,-0.09737766769188834,-0.021932723016310555,-0.057733809026086436,-0.06950279603948639,0.06125427747036774,0.048776065598434136,0.06672001442436144,-0.005409783302827197,-0.02820309841741025,-0.015224180659439375,-0.05284927258659404,-0.062435543695577,0.010208254277844013,0.03072154512093723,-0.07316989744875434,-0.059067531418891595 +C18:0 LPE,-0.0778846382470732,0.06921753593778955,0.11069641091984142,-0.09677991208823469,0.041019290472782494,0.09672795306365888,-0.24449484181744346,1.4529711938808727e-05,0.265868595969136,0.05501200961490024,0.04179450413128974,0.29951431781848864,0.018911404717252354,0.1105981927210852,0.17786703138567514,0.02966568337998749,-0.01282721430388471,-0.003601292556768716,-0.2838935070197627,0.15736038014946538,-0.03097256298360051,0.16912086133251913,0.1748049407531892,0.2671560623712053,0.09281528990681437,-0.30957814682081625,-0.0730604435311072,-0.01862718919166785,-0.01898495867321543,0.03603710517512256,-0.10305332048781629,0.15190588783043027,0.14044184007164043,0.10193517767993533,-0.024902031477073486,0.014081542363785225,0.08424059464576973,0.06490438480410671,-0.2072193519813205,-0.20262492836830612,-0.09640829462919584,-0.12364343896752138,0.2774237214984211,0.1225791030178423,-0.20343151098093065,-0.13784512653310224,0.06706716219715171,-0.20774243001074344,-0.028769011282884022,-0.3214070243899148,-0.013014946695387875,-0.04084303973335239,-0.10363486621152078,0.029014148341639755,0.01638842582554021,0.01056000994371255,0.03952441709339536,0.04567791297128692,0.0189394344261642,0.04567966797948617,-0.1906946609288674,-0.10941226033908391,-0.17825566832016793,0.004390699250154475,0.006324492904791426,0.06343394463780179,-0.1728372241386189,-0.19199609648173196,-0.15848823659819974,-0.25360366165336984,-0.18715442014730996,-0.15897611374172385,-0.10690493130966182,-0.16107028430332013,-0.10261343862753099,-0.1031311945793528,0.093978670493612,0.0641657030960337,-0.20869402566831655,-0.13248829467084147,0.1066757429033945,-0.12532733978381458,-0.07040890958378962,0.06100561129604205,-0.007828446115593168,-0.19805342235287143,0.07128222342241916,-0.14022598228280433,-0.10668767141546177,-0.2388516316353522,-0.18149272185970586,-0.22310614341334611,0.30158695849658224,-0.25674947200125064,-0.06192477725435384,-0.11433808513160354,-0.13222861399168978,-0.07348871222930156,-0.14886590112335177,-0.08339579668871397,-0.049411877159354384,0.02613060656873046,-0.16412585838041016,-0.2842601693950208,-0.08571336795680692,-0.32502033835215915,-0.042716672789777074,-0.1350217159212323,-0.16129642139290393,-0.019113423311885834,0.010426271124288348,0.15043781624269267,-0.03108956362149887,-0.008607004232108001,-0.12052971051187643,-0.10999989462280257,0.05650540062489107,0.0711982004186651,-0.16896734881131076,-0.05444147794381708,0.06142090694367195,0.027587980421699524,0.0848667081108781,0.1016512031488062,-0.02996244508002109,0.03742816358858046,-0.009766710088724411,0.04208901833356099,0.05443982591654136,0.04974874564100956,-0.010117208857695936,-0.08430728903112027,-0.024966899432219167,0.06195829799515335,0.1519129424380475,-0.25539808833229216,0.22067139088312004,0.19292527654226077,0.3219886976353776,-0.06090924057928627,0.227107880112513,0.1873957860408709,0.18598850363854208,0.1978857093004828,-0.18741666787250583,0.5102993032557714,0.44525905960456186,1.0,0.16400357203820265,0.15960696758421858,0.09304669537418511,0.28199074092817245,0.24341698691386424,-0.05823525410618647,-0.027330589523979168,0.15033361265057796,0.2546593928478345,-0.08050712170366568,-0.1431692414339431,0.00045384256633839283,0.17893912698260844,0.29124409458164674,-0.18423389219073535,-0.20932507835906664,-0.13614562711043812,0.2032264948869213,-0.11389685776036437,0.2248640822403264,0.24079150221752005,0.2681454509520152,0.2071461462789297,0.09740874287510443,0.11038561679017632,0.034202165448013695,0.18234273967719047,0.1457279291911026,0.23181001699082385,0.03762816809237743,0.277886231505097,0.08682651144086731,0.33814751872003107,0.020065040176026346,-0.16612045252763571,-0.08876678490252764,-0.19596876211600672,-0.2532239013645417,-0.1725334631086647,0.06559765425318365,-0.2562088633279686,-0.2331682705617948,-0.25426064967630074,-0.22003876993984828,0.0441099685595073,0.2762496241336634,0.3739562899780816,-0.04404916168849167,0.10226561372413398,0.3242986375259972,0.44232960930977155,-0.0628379979378264,0.15175326171342302,0.3419142824976891,0.41809092549285853,-0.1192850787200338,-0.18523596618134994,-0.05956880101285893,0.15601436388125614,0.29520514664437564,-0.10052539196926485,-0.13912508525344858,-0.17874297289736188,-0.22725598497670418,-0.10388413557970505,0.13535681021382692,0.2572017212950286,-0.049635122557409046,-0.19938970455822502,-0.2082128806686837,-0.24488618395007397,-0.2079741162802453,-0.07152033924054993,0.16381391215211916,-0.25821879229544054,-0.27020086645812574,-0.22082923297202517,0.01825088501430648,-0.101900822049563,0.0013426058325414518,0.006296203951625004,0.06901903289403669,-0.0029030151731339418,-0.06932497965490908,-0.09807586187768162,0.05242846090206317,0.14275257339057848,0.12964242628455566,0.0744577532745551,0.009586822779250714,0.07769717703608188,-0.02861250374259632,0.019063022459067682,0.14685047540389973,0.07831207863667392,-0.001254419408244068,0.0029696812366191185,-0.030990461442136092,-0.04047418680209184,0.002234444558038226,-0.000837707430468173,-0.07755225971965654,-0.09610966641558313,-0.020607504901897528,0.03422174135927107,-0.020675859934047306,-0.07315837283882233,0.10133529558210262,0.08085032931935396,0.06721062621567682,0.053187551816811944,0.013080323847142012,0.018537390556724247,-0.07006527330892362,0.015148083378068687,-0.0012420645685212353,0.0378409167744407,-0.03680104047848293,-0.06529267632194907 +C20:4 LPE,-0.036511417303259255,-0.08294607074869355,0.020629889143496914,0.012978644404634376,-0.3394873059233259,0.21309279000858,0.13326711916804226,-0.2411269811265734,0.1623605274709662,-0.3085370204007235,-0.30593229930573396,0.1351531499127937,0.033213934071010816,0.1474236117996157,0.3320279376598773,-0.09562262132000159,-0.08286468226937853,-0.15163530549929258,-0.18808831375792942,-0.015163261459459556,-0.21369305742304925,-0.17960298284430676,-0.13766629992725973,0.029330793001861703,0.08631152747648778,-0.2895884086947105,0.1712107117532573,0.15922729420323842,0.04239631690558688,-0.2767474358922451,-0.20529535720380088,-0.0957840472945719,-0.20157389331156536,-0.1777024005089408,0.4520245211524289,-0.12305819402768658,0.0008749453932135082,-0.1783198327740187,-0.23608672649784018,-0.24555656885334032,-0.03966342099370573,0.07066933212794284,0.12900834430091934,-0.19174751917388333,-0.17642523595116477,-0.2324386794093183,-0.005398779879870843,-0.2891922501142373,0.05356427709695806,-0.19701328160138085,-0.08657089286132594,-0.2603606804991329,0.25109543708286747,0.045319790448146546,0.4200667360310672,-0.09159277598766459,-0.03674843076747255,-0.028709283283150606,-0.09366749263675254,-0.2710963617646391,0.00034239163917904226,-0.18141001498564419,-0.31130003102835674,-0.031770745747284806,-0.041029047886732894,-0.03217774841730098,-0.061906695976988495,-0.22110483609528064,-0.08525086179024507,-0.2599761583170519,-0.22813775288631583,-0.2935281944242553,-0.2553879000984247,-0.292009809464327,-0.2724209752997015,-0.21863392915585908,-0.23123627434157745,0.0067089877451233255,-0.09206563223346173,-0.20132905189837563,-0.04870195677353683,0.1420400943929174,0.030105420193403072,-0.019344493865548935,0.20573922301736053,-0.2926782361275443,-0.05221204093174717,-0.33696933354224323,-0.36550079142774144,-0.3054273759595371,-0.04582099193095243,-0.30287278124556816,0.09438779288734399,-0.2633156864362475,-0.13557834627580115,-0.24130368167195035,-0.15634032714278254,-0.1424028823899543,0.09120293732851066,-4.964848756789521e-05,0.06011074656548286,-0.18683317684550793,-0.32782074207800205,-0.1993963532842582,0.31953183482330066,-0.14210041420632735,-0.0835929686886294,-0.0007781832309316461,-0.25898307424538713,-0.020545843328959517,0.012758368184664866,0.18608649510668868,0.25546619635191314,0.05453726485518311,-0.3019202174884057,-0.1707867584837966,-0.24267482521062805,-0.004763662090256953,-0.2487867582353241,-0.24139749983008285,-0.2407864845503168,-0.18170224604226692,-0.22719522145483526,-0.057602841833382254,-0.0906093016386534,-0.11864231802901519,0.12870369813311824,0.11873719652915803,0.10961055998594656,0.12133647534494818,0.09105308361357708,0.07416276501851911,0.41643154739252825,-0.02533542474067193,-0.15903027258929378,-0.16331298814063339,0.33132421641813253,0.14944702482484504,0.14497870763129722,0.2616876673505123,0.0013617427764780518,0.157635828468299,0.10803797999078724,0.21023365206662617,0.0937552626927424,0.33685671810029183,0.292928132676998,0.16400357203820265,1.0,0.4839050282011678,-0.21032947389934856,0.03893395173202725,0.12048807190531606,0.08785041606908045,-0.025657404943383977,-0.02601151742340782,0.22334156342082578,0.28271306436008753,0.3238988609577116,0.20858177088506755,0.11964282845739665,0.15335622723667067,0.2815436522900412,0.33039692335741155,0.3510381333749363,-0.07428909527166971,0.286372192072007,-0.04198970896215286,-0.09371208511154533,0.10924701463115535,0.25532952502695755,0.1850553254697022,0.1684836286673719,0.16844849464296188,0.14451630793425954,-0.0855846123785927,-0.07550923898593753,0.22898772886434063,0.11013097178254348,0.08128243867684444,0.20241958897911358,0.00146808025701343,-0.19761267096395715,-0.18703092648062353,-0.15697202151520193,-0.2036136395868852,-0.246684139620272,-0.13297630716575748,-0.15937349515839766,-0.20202458743127225,-0.1392104659729548,-0.15135850342947327,0.1347792248437585,0.11732672145751716,0.22152147806780545,0.009058996239006382,0.0034225776338746633,0.03756478816496978,0.10253702537574377,-0.0008320328158137191,-0.026937541528692068,0.055994925310587584,0.16210226325198313,0.18593415204844457,0.1201157464547098,-0.015347065302794215,0.0338081467769878,0.099356406646494,0.18166044356829814,0.24237062355422664,0.23377871267770073,0.10943789225234779,0.038292566849132695,0.0669906880339163,0.16186322234759112,0.3767248212248062,0.25525967470827593,0.28944534744963346,0.19543141013815224,0.13896053032503844,0.0596426301451305,0.090678232724904,0.2568511145101155,0.1962212099419877,0.21541546055584,0.027833045601464827,-0.11856039441671391,-0.040894321700604044,-0.013514162774837581,-0.0286558778232818,-0.02490830214493372,0.07002020681051753,-0.053825102049731545,-0.10677280767927497,0.011027580066914382,0.040540556964259025,0.07399545599135317,0.0384465204390968,-0.06901434625130207,0.032708562431112594,-0.024692011370238177,-0.0020313389394863396,-0.041465939219477735,0.08870196243337199,-0.049224708810982405,-0.015141491043657758,0.01064447957909116,-0.08861035196011674,-0.0638902085111162,-0.060430353042056545,-0.06570520608297235,-0.137511857329131,-0.011116540681863237,-0.04199736540363378,-0.015818578889560595,0.0452129364422974,0.04609117326420286,0.020830301932259508,-0.06799153319232143,-0.0942131822544121,-0.056436940533966924,0.0052122222818042395,-0.05115308191555951,-0.006696316410623819,0.04412852300656259,-0.03625767632180188,-0.0401037959152533 +C22:6 LPE,0.009366349155963844,-0.22003288296204387,0.040416674992046514,0.11566139900658166,-0.30592959685835,0.18656919424909735,0.2423693815569673,-0.21634702473652206,0.05329903054006748,-0.2943836855385346,-0.293914045077065,0.036405096802110286,-0.027878337816470467,0.18864764804669232,0.23113872941168642,-0.191368409332157,-0.168919714498697,-0.23781397161263484,-0.05097787110323809,-0.045679424846999786,-0.1579215880390897,-0.18070963826611536,-0.19706723283361938,-0.02258391706467121,0.1460756577624766,-0.12451060590687583,0.20100312803525694,0.15138067634293248,0.006393988680745029,-0.2791194518794397,-0.11828066059083507,-0.12001043511615256,-0.19288140596009695,-0.19470547754146675,0.3917000983819565,-0.03406242021673855,-0.13243681860332215,-0.21117226207523887,-0.1377480033425423,-0.09325382634241455,0.045444186796716884,0.04188599375113037,0.05624617065534295,-0.1985573312838277,-0.09516812452188594,-0.16113969283449672,-0.014316896607346072,-0.21298139262118937,-0.040163573627907886,-0.08589694542387569,-0.10556832608209313,-0.2351013689374377,0.24236261022538114,-0.02311602718265193,0.33076131192279445,-0.07379462818675381,-0.08532825432510945,-0.08216147807420265,-0.048841511381905116,-0.3240804532482027,0.10407705495173114,-0.09766386505350011,-0.18458032417414824,-0.023983334080274282,0.016792984378824594,-0.08549189566345668,0.054983585141057986,-0.1258948080050169,-0.01864220053405434,-0.10165492530559792,-0.10575634204348884,-0.17426846571064833,-0.15872284460750055,-0.16904715667534767,-0.1933754644111868,-0.10544450540934772,-0.2359994607882444,-0.0264545791503475,-0.009234346328971093,-0.05384218395535331,-0.034070262726716274,0.15035830222488455,0.003661127613910499,-0.11610896446115668,0.19459055318864438,-0.12052825946359418,-0.1781126912298661,-0.23899982382675417,-0.3005489787351235,-0.17079784614254545,-0.02329719348831613,-0.17954124569137667,-0.04847292736705855,-0.11194971822725065,-0.13183326077862376,-0.17525299559497962,-0.0937626406591533,-0.0595047874896799,0.17888814685448767,-0.04600114976544378,0.025811796722122027,-0.18176394385615088,-0.21783387152723802,-0.10518807628686433,0.24159191835336363,0.00047054711346862765,-0.018652634475468496,-0.014124355945419631,-0.19811511513087685,-0.04313882109858846,-0.023498930781646526,0.06126018759912867,0.25682906430507924,0.08522237262014044,-0.18273171488038165,-0.1057527381101677,-0.25074632485978,-0.02933768350766609,-0.16431563910073807,-0.18339896537325626,-0.2141882685095072,-0.13680463458212647,-0.19078252899135717,-0.09816087207616658,-0.10205807683376175,-0.11546564749148781,0.06185970265667125,0.10517366052987233,0.1104961610923907,0.14391749843437573,0.13638144282080505,0.08993773693917764,0.3498840655309119,-0.13100516428103035,-0.22111160781755837,-0.04774464960691515,0.3457743108069061,0.37841288708816845,0.38416195434141115,0.36569571682705154,0.16790121048316398,0.47414236507346086,0.19284236735406254,0.5031421410051925,0.2411002282248174,0.4879798618576619,0.42676643214106363,0.15960696758421858,0.4839050282011678,1.0,-0.26983362650430437,-0.034537351815398666,0.2109013662824962,0.055843523465258935,-0.04096102900254593,-0.13703683103663084,0.1460805532927443,0.3363483748426985,0.3561935882402044,0.1356144610080584,-0.02212776124979218,0.13425985411111546,0.3248348165109623,0.3714870006710908,0.34426886586174316,-0.19409071475269216,0.33468727011632204,-0.0378975699697518,-0.14445122101662294,0.12120767504043199,0.13824625909391305,0.12682541164330421,0.19938390675958026,0.14173285713551936,-0.054608312313877264,-0.10585989894035369,-0.056502042917182145,0.06601685081495443,-0.0014748046620616205,-0.023686080266433557,0.12236221828823242,-0.026361870540132847,-0.16763593635728588,-0.1781116453030103,-0.12872402570770108,-0.1414623244255123,-0.22866555385035078,-0.15085228371052348,-0.11643133344160096,-0.15838377240140544,-0.08919388519649935,-0.10378455816706629,0.07246703204593116,0.046153942767399814,0.2029503949241886,-0.10530436751033202,-0.09781245774351408,-0.02409971256830812,0.09179729163289205,-0.07673795973913831,-0.14408708744931142,0.026784272864666493,0.10421424412348386,0.15709761653489662,0.05226605387165942,-0.1484775220695283,-0.03894678319286646,0.040089077920680324,0.16377695414006596,0.24444010878285624,0.19933337992239428,0.06536310373992485,-0.09513264249796399,-0.025754274149719435,0.06980196522468257,0.4480586197577986,0.239467568788389,0.31450657553152184,0.2381292198251752,0.06957042465135414,-0.08017358239859766,-0.03272696626763302,0.24980511523129661,0.20926762586666459,0.2368069953862512,0.02860778466703636,-0.058053328835299456,0.0021614656760548935,0.04005570150917336,0.02594321537474635,-0.019124590839513667,0.027040653483168146,-0.05841059634947612,-0.053713825106710335,0.0485164004526607,0.012998292310810301,0.023298112337490004,-0.011275536466754603,-0.031193466276391482,0.03064926698989125,-0.04954478829606322,0.021363266789140436,-0.0267955169822375,0.07973003674187644,0.06511703219716004,0.0824108943124442,0.10768810089049732,-0.0018339248833589919,0.002114213390475432,-0.0036282335544766523,-0.046351176961087225,-0.08435205058887195,-0.026446352450135484,-0.06587971680399753,-0.06318462940971528,0.01265787328143235,-0.013102488334439274,0.07617942767352895,0.008549263058581056,-0.014255321670184945,-0.01906121432152976,0.08101737493975857,-0.02152090016947419,-0.0044790317386027715,0.05295578999313684,-0.056532054359929966,-0.0337196292799206 +C32:2 PC,-0.08945954956496568,0.1921318982090634,0.04807370529271176,-0.21472595240835066,0.1967923810736828,-0.030934490034341747,-0.31160549806868765,0.19036786734040456,0.251109552068582,0.2327554044512727,0.1873079447778927,0.21963894261482975,0.08257819352599902,-0.0034442812509898604,-0.04832480825641575,0.09601678509858104,0.14895757537873922,0.21514716789534138,-0.1662141449282913,0.1805151243122227,0.007240775956369196,0.24720936586165196,0.3120345096739871,0.30517421095358965,-0.043303411896877315,-0.2209860744026091,-0.22780287325219492,-0.18227950336488136,-0.09113444201456852,0.14565682279690886,-0.07826546901410417,0.24252774797930085,0.2893938062041238,0.18422239332567264,-0.24315569872893383,0.11781657543352662,0.2021123963916126,0.18403129080217254,-0.15295811088319747,-0.09959186431619205,-0.1323409874298106,-0.2166868969553163,0.2522017533217983,0.272051558813917,-0.10597799390560601,-0.18751361470756622,0.06335479528802468,-0.1050512317241415,-0.0814054694601956,-0.2535593415892157,0.06648841046279388,0.2566757813697292,-0.29383368331782234,-0.0390674065947043,-0.24696394005721362,0.11145195384231114,0.038280527261783895,0.00449886371256303,0.07808098669694995,0.21427847690770707,-0.1354770871663467,-0.015732434210275727,-0.04860710940678984,0.02731215173508491,0.010037885127366895,0.07993321112111472,-0.10825340086708944,-0.1413235661052225,-0.1657199723247275,-0.14446211580244803,-0.09370723610364197,-0.053710770337237104,0.01006477972676112,-0.030352850631328962,0.007866699260730133,-0.054786061293062606,0.1566696400656835,0.01915334072869158,-0.24614956300358998,-0.23342488706474984,0.16816697210734982,-0.2192967541098833,-0.1817604592709848,0.13163192279609984,-0.14929239767048688,-0.19317112291535501,0.18625011164243052,-0.05619568602700345,0.014367804140365923,-0.16553250311376258,-0.19581110506006266,-0.13275578340486824,0.27475060622547237,-0.16268422599108498,-0.03405076879874184,0.018048809870832124,-0.03267135745215234,-0.11352175890541155,-0.29389139709840656,-0.1658485562280364,-0.034011393710782,0.24302939760463058,-0.03592282958422474,-0.20548350021468315,-0.27032743501666545,-0.21080556853794066,0.0032937576596031672,-0.16409182949573212,-0.11765117661400457,0.013915985859498757,0.023180162443751165,-0.011348385369645615,-0.15691195316203752,-0.07012813836562015,-0.034063699236350276,-0.0506208380630208,0.19878372550329593,0.10535201551363978,-0.033428377202556966,0.1303718922831916,0.1782505256821741,0.11820609821048389,0.2429459522474694,0.1671161900247903,0.09374765842240129,0.14484999548402297,-0.10491835929624717,-0.010471748343941158,0.013001247401898893,-0.07475391420155823,-0.15568931922260382,-0.051665804837451895,-0.15886886207794115,0.07138426090873208,0.23965588559748993,-0.21781067095096904,-0.05478864761395568,0.18156457941601323,-0.13795745289890246,-0.25351537872664176,-0.006218580367830988,-0.3635657708131553,-0.08875712907129157,-0.36607538974052906,-0.27437580609907286,0.09330662466885468,0.15988784647105658,0.09304669537418511,-0.21032947389934856,-0.26983362650430437,1.0,0.7371028973004315,0.07210321400246364,0.6498917809362972,0.6265886900044858,0.8119109267892112,0.14977447024013124,-0.05172269187841362,-0.11360032239689703,0.057232298211970276,0.33313762155375876,-0.11138554105615377,-0.24160777232887382,-0.2847320239174784,-0.19629508629453446,0.22369518293246626,-0.23992680426466811,0.31178135561129394,0.24454707336200673,0.04796780889309786,0.025341228467099453,0.03148677618295495,0.01997222522709365,0.14270783178105595,0.3144500330030931,0.12191663732827376,0.06096084537881253,0.02599567826885185,0.23144718563996372,0.21813472635842612,0.00856334932824732,0.011305832008448806,0.051775761763579585,-0.03709911335495991,-0.06844378094940191,-0.028456743835885475,0.06343458531356205,-0.011316367207396425,-0.14666142425137388,-0.09871986451459615,-0.05668351164304675,-0.10371822900777916,0.26514683413147955,0.21160189093836948,0.05637303630378175,0.3654017202423112,0.3943808965664913,0.20917174135401864,0.052091670867187925,0.38227737916444104,0.32351953544948453,0.08067167519345007,-0.09364005322443944,-0.061637744226582754,0.0841280399837874,0.28066488710446164,0.11353902452131916,-0.10727501838975971,-0.13829582709773758,-0.19028317682497678,-0.17361187519180893,-0.07164217074621278,0.07416603198737784,-0.0760669604674301,-0.18302462857682972,-0.195236932023853,-0.2532227941803931,-0.3448732390361903,-0.2800524694227803,-0.1629881443710693,-0.02413001515732588,-0.07804842929223313,-0.3208980029576902,-0.29979908548319767,-0.366749667205061,-0.0020927931899281265,0.10799426993279884,0.006527278975473108,0.0131950513261254,-0.03842674176419368,-0.0357627887357087,-0.11463707537871294,-0.07986474982889188,0.09762782540005514,0.10426631022491649,0.13293668305357706,0.11812245376797621,0.09075793567704929,0.15096892909318887,-0.09342702189427271,0.14423098063743128,0.11397784427836256,0.1838465186073229,-0.10058886458867598,-0.030405584627318964,-0.02171627808816728,-0.027995898470667187,0.015550604095282788,-0.03294258971789581,0.029030926884417167,0.0671244096257629,0.01423267777614967,-0.0012926006599051553,0.06951141533270098,0.010948890230747955,-0.007576928932155313,-0.005031801031552096,0.050317586880865586,0.07767626094422286,0.06990539045748136,0.019952650176515447,-0.047234767557590165,0.010255675298147804,-0.041410255457982166,0.043221787449703626,0.03215104899363334,-0.006418099208064138 +C32:1 PC,-0.13638093911171653,0.092453329375884,0.11472391032488248,-0.11949014950102999,-0.019624372851135052,0.07875764947383149,-0.1551316341321449,0.013049197299330349,0.4245857057131425,0.03438128981476309,0.013691150794871204,0.37700749807925055,0.10446879513988878,0.09814560368241458,0.17259862488086333,-0.014077797227407058,0.07001131972245328,0.051929489079199,-0.3833280725990929,0.209247626766982,-0.15309270213025178,0.12868709643603832,0.24909052362363873,0.38998650353739406,0.03055596541767124,-0.4343212870356854,-0.10151651083772607,-0.06475889457123314,-0.09534737654910984,-0.0996609875342275,-0.25262761469588996,0.20213473526064624,0.22562718890812977,0.11571796592848517,0.1143919343195117,0.1128670322053738,0.2042861580903051,0.015291227685057506,-0.37238963723453455,-0.3178834412839226,-0.18015074821323496,-0.21106200793965238,0.40731587710370576,0.17203848693551013,-0.3205346660294262,-0.3895183595431272,0.03431231907600469,-0.3944051336541479,-0.12073006589084122,-0.4145330643137501,-0.08385426827612863,0.05008620911857873,-0.09003245969577574,-0.018084121417071095,0.03281565918239265,0.11504246836113097,0.045745145245862436,-0.029104376033065805,-0.035275609290374335,0.029426083484776627,-0.17698336433800466,-0.20297261112117598,-0.31955826416485317,0.01934883952924728,0.03580803400249455,0.08492046314024508,-0.1877719821210535,-0.3676907684904832,-0.24668422870112267,-0.3949371561216867,-0.32373549864450757,-0.34733111792638754,-0.26200146456519424,-0.3173531105590709,-0.28590212160830636,-0.24749043745692853,0.006628328413666208,0.06666804242693197,-0.3104243574732429,-0.4340242510624292,0.19146750712412972,-0.10109793080782431,-0.1311367549925331,0.17801178921294278,0.037114906892999865,-0.43661927858083893,0.08760775415691693,-0.347440271099103,-0.3010472022051719,-0.4523041443213937,-0.2897384866628783,-0.4132812283798033,0.3789220044239948,-0.39820304627989533,-0.1361912132468824,-0.22941731148954556,-0.27986207352986586,-0.18950843631868694,-0.16020330869234503,-0.18217790670430137,0.01685666327539763,0.09710015721773677,-0.3204534320645223,-0.4239298821056005,0.0029165368753508634,-0.3722537090565498,-0.03639877732170796,-0.23242396390676795,-0.37685220175061407,-0.002859766937627142,0.041942720187382855,0.11749936018655786,0.0477183400093623,-0.04896648578522256,-0.2999098371438525,-0.2151858389131012,0.039838176470708274,0.14024638798348138,-0.2699578410873987,-0.01400895992828564,0.03800883468123253,-0.027337457578071198,0.10303476206833491,0.14204306536059905,0.012550239958116851,0.057042580124397745,-0.034980978122216816,0.10949580478014753,0.12382478787433296,0.05462053291989896,-0.011768516557200504,-0.008481680198983831,0.15149522979573338,0.041778527374536925,0.1357117422433438,-0.39125219039938675,0.15346527455414732,0.09124507287839687,-0.06849385981167112,-0.08614450371743479,-0.1407279849137801,-0.22434636795356147,-0.1664645609045442,-0.15099163093652326,-0.3243979291237461,0.31722767273721864,0.3293280199754981,0.28199074092817245,0.03893395173202725,-0.034537351815398666,0.7371028973004315,1.0,0.37715092526708055,0.550889324735287,0.42495206633175225,0.8047638780711398,0.6238020706343484,0.12835022325268597,0.16990796708078537,0.21927429427652118,0.48554926310543134,0.2785421047736789,0.06587796832873745,-0.02521904431347826,0.06911007604227794,0.353361296165867,0.01627384180419183,0.3303226425834895,0.29792050261568886,0.29747240701378974,0.2172175933682593,0.2512562248234969,0.11337650054597787,0.31326748077218786,0.39099285523279,0.20891745096654707,0.1367482267872682,0.13278655522447677,0.3624964024623988,0.24826265217831756,0.2739760253342458,-0.031808795225031425,-0.19578775011568358,-0.22154704612821405,-0.2433409458337076,-0.2607746198901275,-0.1945326420080952,-0.12288033530658644,-0.330214859684276,-0.30876755520716526,-0.24216379578612374,-0.24693351526895205,0.29746355462909163,0.37506510681331606,0.33668013371186384,0.2580148712099294,0.400911414273368,0.3945703233946947,0.3009443996869173,0.3130812229939833,0.38723848446773484,0.31009216405528106,0.19791214743100516,0.0561885639092365,0.10738514404890971,0.2527859529013504,0.27341782383193397,0.16058987865802207,0.00510380885173267,-0.0071666609029507975,-0.03401241644366061,0.013810336913923247,0.11801406398162397,0.1262479309022847,0.07051906315158778,0.0611469762093075,-0.07600368544264237,-0.11767483842319801,-0.11109155437311183,-0.006619537061132423,0.09629312443087495,0.1311239403929598,-0.1499361192428396,-0.14428629773565024,-0.1727353425056978,-0.003543415163670634,0.020422288710791662,0.041953784477382114,0.04419670571179937,-0.06483287343169114,-0.09711386798576031,-0.11385364134058183,-0.13947240025101973,0.04412760364195743,0.14921071210526712,0.17960623687231397,0.1721959136325016,0.12385243097150049,0.13330146382609742,-0.10487286980290852,0.13688896589938554,0.14910067123829046,0.17725233481151567,-0.07020407100778331,-0.06521094548545837,-0.027698837542526344,-0.008630706878183146,-0.048039282036490875,-0.09277486081924255,-0.02932827952040155,0.02120204502649106,-0.08789325311167676,-0.024940979131675752,0.002006871064833135,-0.028362153122111617,0.06298416244498292,0.007669515729817347,0.08003160656312962,0.07967597580022888,0.02505697224161472,-0.021567116626910233,-0.0667713042376718,-0.030614166278629975,-0.05392676310675713,-0.01696435222738061,-0.017298745899379343,-0.05093589762413418 +C32:0 PC,0.02344376549560528,-0.1490988228359133,0.12704957129457242,0.09561482173295793,-0.22873534546356789,0.1935731412069869,-0.006436439033498791,-0.09797257207384759,0.31900145741767966,-0.22284944743898197,-0.16960756234504903,0.28536079978402906,0.1028736634570628,0.18093913096282713,0.28525910456815434,-0.15146886362651515,-0.10769155048736936,-0.20530644174809448,-0.41418438337534974,0.031109277549162272,-0.1645578034112223,-0.10418951380396704,-0.004587259775324102,0.2696616381044681,0.11537497611436182,-0.3825877956609789,0.050441210438491056,0.1326102002014954,0.020059958814739435,-0.23418280210219408,-0.24249265531848047,-0.03854619033532025,0.0282273699037711,-0.07035395860563565,0.3003545118532427,-0.028800695509405037,-0.020843580069804274,-0.1930034399784297,-0.30591068917784203,-0.3828677214791313,-0.10779852223843013,-0.08444533827946364,0.32716353982984564,-0.025204465979645915,-0.392485434378029,-0.24192352110438992,0.023994529520815558,-0.45475637213035147,-0.13878755967205172,-0.3513175603625102,-0.24472625826201638,-0.22731798717465004,0.1131810373932307,-0.06397469531205381,0.26556062388009233,0.07733569276671713,-0.013222854624912433,-0.004617763264369815,-0.08963539693122761,-0.1746193298361975,-0.16840470994548395,-0.2386579792560423,-0.39928252324296154,-0.09262732941707327,0.06408650933967715,-0.030183124110081956,-0.2121457315836588,-0.37429141727561543,-0.26310211570994935,-0.3759838196031553,-0.3072555186750112,-0.4111150749205956,-0.35571426118698746,-0.36627138993558817,-0.36209411719429824,-0.2913582605018829,-0.15041970115771586,0.018194784708934552,-0.2126211133702291,-0.3405372911988473,0.09087775107946784,0.08621367878149479,0.01962624009635926,0.060248020531902,0.18493834327469033,-0.39010498280843625,0.007340182976195548,-0.4111852899801682,-0.4214084780044367,-0.4549884019202145,-0.14029494681115343,-0.437091240421076,0.19298198846172968,-0.3835739028695312,-0.06509807231800352,-0.3739325929859773,-0.32358729006576303,-0.2360488549575371,-0.01874249352349755,-0.08544689524318265,-0.00239708975998495,-0.12555979331874487,-0.40325746663904927,-0.3804342587795965,0.2007384426764778,-0.3674783926432415,-0.011084384040680993,-0.1985725977306261,-0.37398816902782267,-0.07585288371430465,0.04026321954002425,0.07654198242562536,0.2089623714775132,0.052714362106572495,-0.4006007400064227,-0.16335087184000754,-0.16228168402954782,0.06287192445870358,-0.39798442636052883,-0.20424846736604094,-0.16621712867714564,-0.17494630137457312,-0.17493838597813288,0.01791748316524054,-0.10199334463472669,-0.11134287353028055,0.06239646278714285,0.08529047506199636,0.09279960411615619,0.10008378781207034,0.08701162015876746,0.024345120949064946,0.2819841702098951,-0.050878114465692764,-0.009081336207109339,-0.3433725824381674,0.1720423731111312,0.019904850206935835,-0.010390616770528254,0.0908612761128828,-0.22787321392964405,0.1413583053414658,-0.18897213042752,0.23468279663463926,-0.25621176822349834,0.25805135519695266,0.199151713905172,0.24341698691386424,0.12048807190531606,0.2109013662824962,0.07210321400246364,0.37715092526708055,1.0,0.1598703303758008,0.07255986650150564,0.1853457693272381,0.5970828839427563,0.2762771750739869,0.32614125081513945,0.21534331524244985,0.15813251462092834,0.4676703015585485,0.28621559769137617,0.3088276009203172,0.30181631746980847,0.2877917169373857,0.23527686231265316,0.30075031467805735,0.11856824753883181,0.5252373398140314,0.27771631054666535,0.45488165885273857,0.376414777192428,0.2525351847372727,0.10868837596068222,0.3659273104311774,0.27874193466276564,0.2291897489601224,0.2516244711094821,0.12646867541042808,0.3985578145981785,-0.1099107362251136,-0.35780867384580367,-0.2634344375324784,-0.3107160373484062,-0.39723127917094037,-0.3559927821402914,-0.07310729226171556,-0.3363459035388661,-0.384766821112427,-0.3016630632506695,-0.2670057269730877,0.16028704037691613,0.34800346953520606,0.4068869810711971,0.06996190314294103,0.16076839950965033,0.4180469888665711,0.3861989591668316,0.10277410287908904,0.2577588913773161,0.438410191160091,0.3542866494769541,0.2563297413848523,0.19517856939797362,0.09549309211955083,0.3535041962022086,0.411751773296086,0.22650503787952295,0.24430332781583633,0.23854547526807843,0.19131571287855997,0.07275255695174325,0.3557125275211775,0.35234193849430073,0.2395454526911139,0.20885801425822703,0.24574273264576113,0.23109368169568878,0.24197962722047464,0.17516247548507613,0.37550545271627966,0.17379449896888668,0.1530103359692825,0.22582201028121404,-0.0598782405176844,-0.08936343615406765,0.054471188419237766,0.04560326040832386,0.006234021618331731,-0.11378051777795538,-0.10307542961277012,-0.15708880821361204,0.04754833684118631,0.14004131850960347,0.101216822583735,0.0648987506355464,0.014783937319445786,0.11076996849574162,-0.11965585639524116,0.0356393490827077,0.0962686851159854,0.08302849977728419,0.0008683017882275007,-0.01400180464822174,-0.005260054703183979,0.04477491087585495,-0.04756312069058496,-0.04247529414251724,-0.04255908384983368,-0.046483928558666586,-0.12116268102805146,-0.02209480047051354,-0.06166978906505844,-0.04552115586424606,0.06329468517053095,0.0009662101933398087,0.0324186577838282,0.02921989237369838,0.006434843660820873,0.009521032249123375,-0.11937556360313917,-0.041454787671805805,-0.04270097627490278,0.0010866959621985107,-0.047378782125683375,-0.11243380479785482 +C34:4 PC,-0.027010910564369352,-0.03258405559609986,0.1257867786913473,-0.036793937392627186,-0.1566288168954984,0.13654976444349234,-0.041123690038980004,-0.043800270766508005,0.25841429165076457,-0.10189967641506782,-0.11851181096231912,0.25786399315137226,0.1179620380029929,0.10453199277855026,0.23690252313152682,-0.028112011224377967,0.02792653177992217,-0.04425021602317886,-0.2396532906504951,0.035942209896130166,-0.15351295880037183,-0.07264790639105909,-0.0018226131475578638,0.22862806848182685,0.07032347011850276,-0.32963775603280354,0.026323289745797243,0.015806797757586963,-0.026820704405479925,-0.1600069597930354,-0.17427607438585832,0.00633314653592981,-0.013136891347455684,-0.057035130425840665,0.2014010698704533,0.05038816581923854,0.10314778129274191,-0.052594394794275065,-0.2758816435705944,-0.23660974071003146,-0.05539538299785486,-0.07164932611392384,0.2625677003701392,-0.00990448421101627,-0.2554118179455705,-0.3018926969951707,-0.008142313573511665,-0.3239631514100431,-0.01744063765492374,-0.28596690202182057,-0.09522785446187818,-0.03896834611751702,0.06870900433084012,-0.015339292621515531,0.14405910972775093,0.06481172407728131,-0.03635256428798265,-0.03238007291318131,0.004968264971382653,-0.12740133750524146,-0.055857979593636656,-0.1466660076798238,-0.27703944483601045,-0.042841362964119,0.006780562550522471,-0.026928323687320968,-0.08944617515347461,-0.2833794692448197,-0.2729047586801593,-0.2636079326970705,-0.2115942751614562,-0.3029199253578289,-0.2449022702081763,-0.23770466249992606,-0.2438892177937487,-0.21005314114755308,-0.12102512205537207,-0.041946255381885136,-0.2526270335414499,-0.32645420005072207,0.04183806973149403,0.04403481100792135,-0.0723665673088571,0.04153430398478867,0.14105537506892935,-0.3602166609575057,0.002724106251164061,-0.3401479973287988,-0.32619553474143614,-0.3511111853542318,-0.1751976111497766,-0.3340960391115528,0.17995270893442014,-0.2847479147359041,-0.116435273651357,-0.2319877629126934,-0.17089428136310073,-0.2104526348353237,-0.03845101152006416,-0.13623021970149424,-0.061701052373156956,-0.018745491134084483,-0.29506786357720505,-0.25412491237345003,0.08659666797151597,-0.21383837180453769,-0.08988127576209848,-0.10047178357843721,-0.299772337382456,-0.009550606951666275,0.020307536531235692,0.058258228011067,0.1169267486359541,0.08690265057907302,-0.27901788863458343,-0.17373289381078866,-0.10670874129268729,0.0012941527532392158,-0.23384563574345044,-0.11250511291711313,-0.09955750447443353,-0.08166347405018563,-0.030970605789298947,0.06160938322238102,-0.06083240144191211,0.026402927344919443,0.014288373158294272,0.0768080921022852,0.11063455114087252,0.07508852586490031,0.01235094875187586,0.055456461217240065,0.21773798237022016,-0.021869167410891194,-0.07129637205854422,-0.25256419916950495,0.1931949690379369,0.2663271894815087,-0.0888666519856721,0.10559280236339609,-0.11317673705086545,-0.16540856956047628,-0.08041841838320364,-0.08898746396731719,-0.13087658384652517,0.14853230978240614,0.20553615793984933,-0.05823525410618647,0.08785041606908045,0.055843523465258935,0.6498917809362972,0.550889324735287,0.1598703303758008,1.0,0.6631335678165569,0.5928472034527267,0.2397992784837359,0.3509328245107361,0.3707353906629175,0.28384650055386146,0.24503935665068552,-0.05702729146625968,0.22409090358541675,0.2301918724406915,0.2557798358073811,0.06809970597143013,0.18437275649238913,0.18843416895577392,0.031506991560331675,0.08671116731188867,0.19944797172398787,0.1389633898680515,0.14102996222769554,0.3045712256792596,0.1953160723820187,0.05532653374500464,0.003763004323462308,0.19430280027699784,0.1759672977033242,0.2581455242418395,0.06713490030965198,0.026886791339171576,-0.08062631503641991,-0.18904512388136452,-0.11901705353385819,-0.12337141844379207,-0.10971499143398157,-0.11675350165396298,-0.19547632939634615,-0.2211834078797626,-0.041372250579193394,-0.11468594738137312,0.3910703603997221,0.2147973962587884,0.12946610376504017,0.3762246376197458,0.3205676071135244,0.11595571137624139,-0.024505156040419303,0.398882935830681,0.20924668619195713,0.004243592294286894,-0.09442799803613185,0.2716721186857994,0.3244128782720566,0.25327754823662224,0.0681583268945542,-0.0994322673108763,0.19435022349331352,0.19652790839315787,0.1947185670293288,0.19757374103679204,0.10084802556829349,-0.06497935113039566,-0.11963810990018899,0.21180034988132634,0.14657621178728616,0.1131185953681792,0.11904845230939742,0.11813897617631493,0.034907617041083486,-0.04609546740399953,0.1057232680074349,0.09427490517794718,0.03428752912990809,-0.03942809094057724,0.029804404193125203,0.02253699339688966,0.05802476903674316,-0.06689048873621944,-0.08657989302039851,-0.0758148810852882,-0.11401712100648254,-0.0007486516403725015,0.08383979309317649,0.10318746211823565,0.12287169927746576,0.09086524883584152,0.057633714490389634,-0.08579312184607317,0.08565098006494004,0.0867310172190727,0.1260657484374026,0.0058326847766252575,-0.00715387448986329,0.02180304902773208,0.07303288561063571,0.010511854464685774,-0.019951063898904966,0.0018846034141218977,0.021714033701407807,-0.10158612613497824,-0.0017313521419620925,-0.012463353472075755,-0.04264509033360254,-0.010344070935668248,-0.04589071425250006,0.058314424057738144,0.06543820555099071,0.03661308180214552,0.023115609470485153,-0.026897545717197067,-0.026419159125171912,-0.019923889682131622,0.05065506337836342,-0.009303762996772139,-0.043830161630485046 +C34:3 PC,0.010327463620921032,0.08138779249236985,0.0768508514842251,-0.12341800867454446,0.045494085193450357,0.012485431314286633,-0.14154154100195762,0.07866784959178985,0.14717922322819216,0.05050264331518775,0.05676740516863325,0.15543315165285795,0.08343805424340552,0.01358655849100016,0.08398831597935866,0.08994310918423605,0.11075161323306043,0.1010419151799615,-0.1740210839726136,0.09573665250078862,-0.046250133035242585,0.06605006645013577,0.14340538750373913,0.1729901686505436,0.01740470156067453,-0.21366000887856024,-0.10913978718752276,-0.11713237398310793,-0.07416826505504068,0.03150340497695259,-0.09730489990610318,0.12650721013358895,0.14168184021294927,0.046173431642249366,-0.016140261122346178,0.019616162185236662,0.12907035378809537,0.04335263519779948,-0.17074217669115754,-0.1651606028446263,-0.027947716143638075,-0.16643125925736502,0.14691863378506054,0.1293511409041942,-0.17687887938587285,-0.18427329591202943,-0.002888584467988731,-0.181720696027608,-0.03846830231443392,-0.23923042637120398,-0.005222424262733556,0.06288136721058397,-0.16176932996836718,0.03456485745161749,-0.03868392629053608,0.06968884984822576,-0.055885431889735694,0.02150406276796072,0.018945842246043284,-0.03219141765991006,-0.10015538336951467,-0.07175844093591231,-0.11436337963488755,-0.01238857393508099,0.04294086406419194,0.01152903163739726,-0.05680660026737443,-0.17770897870497113,-0.19505279785785612,-0.17409660785604467,-0.11354260786333407,-0.1321298849802372,-0.07183975176305998,-0.10020610824073231,-0.0776221912158088,-0.09416073307509712,-0.023491163631380523,-0.005715987350302696,-0.26889504972296924,-0.21568751234642627,0.06992275096604939,-0.08777055977322232,-0.07701596873786135,-0.0015418622628395543,0.010421203667460193,-0.24454239930478333,0.11662653133357899,-0.17148346454457009,-0.12953880099185086,-0.21664499588127492,-0.10588843545916736,-0.2048140510976606,0.17584700791244717,-0.19287108663653066,0.05229838144750691,-0.11111060445236623,-0.07680965551932883,-0.1811463565808355,-0.16892411944931196,-0.11045172697903519,-0.11063291485846839,0.05006923539734555,-0.13887138413695532,-0.1655789599844811,-0.08040257505122259,-0.1808896556072492,0.030909094831994666,-0.11472230013046336,-0.19743097064387885,0.005557129486199253,-0.025403140070940106,0.002264927026138024,0.038192460220673664,0.10827071571675062,-0.13217996112836175,-0.042084173010200045,-0.010280550266467351,0.051380401190501516,-0.1376320647794383,-0.04344576288069081,0.004204273907070471,0.025854773861590723,0.06780670286461664,0.048775347358660445,-0.028598223415249154,0.019292923274042792,-0.05751661107047351,-0.042605292945049854,-0.017923205031847654,-0.06887807354992885,-0.11990777949800521,-0.0362099800240508,0.06776867984521978,-0.036765202283441406,0.07518895107475325,-0.19474023096154294,0.041159558673623295,0.2001186982659793,-0.13781078086442597,-0.014442065536792599,-0.027635550747487476,-0.23691555155343055,-0.029063782744725014,-0.22536044488105395,-0.12971157583847073,0.04654357654663113,0.13530685359307393,-0.027330589523979168,-0.025657404943383977,-0.04096102900254593,0.6265886900044858,0.42495206633175225,0.07255986650150564,0.6631335678165569,1.0,0.6177297158971919,0.10866776844938716,0.24291628652929845,0.14387894523683264,0.3349551078388975,0.28217057757716757,-0.08709794865059325,0.009376580481830842,0.05573431822713408,0.08169427433026884,0.11273352259661434,-0.03843225255943617,0.21816041500327465,0.11844634540860294,0.04129141827761267,0.15170567075717137,0.0804447845471813,0.07608242732512248,0.32936536866441013,0.2693818480229781,0.11786050190792656,0.06610504848025087,0.06728157804155449,0.14183249405019338,0.22923323664206394,-0.0018773083624763888,0.06384355240680174,0.046196472823655174,-0.05947898977265718,0.011041746286378426,-0.0077882955756822525,0.03544625152750682,-0.020022487484309653,-0.09142886664163563,-0.09911124245822384,0.05870124380623939,-0.02957331218094457,0.23450693904718223,0.10090787585220655,0.022995409631826724,0.30168795206060633,0.22034897026153916,0.045697560412799834,-0.055533961672789824,0.28565882260457537,0.12800920981263786,-0.06367979052979349,-0.1349934097178477,0.1107749719675764,0.20636464149230824,0.16467129710702288,-0.017884712671198982,-0.15871682867568102,0.017916676189172018,-0.004265652624223383,0.06912747495024496,0.040985227072801694,0.022017956684448798,-0.14010230732974596,-0.15846396710395758,0.044646230552643655,-0.014323224525354311,-0.07673515758234976,-0.06062786896886787,-0.054900215347900155,-0.056695596543129535,-0.12650577222803197,-0.08439845651799659,-0.07207331004910453,-0.14179503437070062,-0.03152798391935478,0.003267634295293625,-0.03144622147045762,-0.034450708679723,-0.0533457546381994,-0.059118960480931036,-0.06608713039678576,-0.03447707730072946,0.018376523450260786,0.015170250096813168,0.017057655367808493,0.027139834142570873,0.01957773886726755,0.03709779405256463,-0.08329929331837227,0.0734106033717502,0.012019124918101538,0.060955211345090535,-0.004782535823605954,0.048257127735480396,0.03163009819427434,0.0343342250322916,0.06181282350432065,0.05595517833808495,0.06487958794352096,0.04400660604497106,-0.017612186292567302,0.0140238939050639,0.022305854834564043,-0.02919649316684383,-0.023615457668213213,-0.02852469557163717,0.0536475709816468,0.05666484058898653,0.05235748903601056,0.05363640271556029,-0.03644806375837499,-0.0004581681674407856,-0.033743273358153754,0.06134197074689005,-0.022150875416320662,-0.03753439114367303 +C34:2 PC,-0.10367865376135109,0.1862239133953214,0.09273066794624586,-0.1823741373237382,0.10826634131203196,0.04802474716316853,-0.1985518828992331,0.06199544645444281,0.34165338077125834,0.14647956769396894,0.12047300405249052,0.3106104480343544,0.038722764948653704,0.007648184151356397,0.10193721176110739,0.05733763990704387,0.16008057096620576,0.16577164137679018,-0.3310409412970463,0.195746656901228,-0.06730104876768275,0.2106669198241792,0.34851827015888565,0.34506868258885703,0.0030072443386747402,-0.35285647657215496,-0.2213980608892861,-0.143555200371586,-0.018411391649197435,0.016608980553037174,-0.2027699445727617,0.23320643210419734,0.32364482660803,0.19806244027215397,-0.021254834118258743,0.09733124560003661,0.2552543139359792,0.0815641472175907,-0.29980866062856326,-0.2845852083231367,-0.17561040332008135,-0.22467458589286088,0.3262931456317449,0.28267088997854667,-0.2603187747082695,-0.31350725730285367,0.043607673785062646,-0.3127261435984236,-0.12397344985430535,-0.3845329108535988,-0.018951798480743725,0.15294497277036834,-0.17414977256839098,-0.0036172879947950483,-0.07194789561264366,0.05740164786168772,0.06694432834842415,-0.003365545994809265,-0.01167086568691992,0.07082979002698711,-0.23920043810919414,-0.1747798758924691,-0.2404260223208059,0.02224075810769446,0.04787942018333399,0.11004567842613174,-0.21160303932783256,-0.2878483105681021,-0.20984607481247713,-0.3587644036402509,-0.28943221396798136,-0.2574634362562973,-0.16144281314227074,-0.2395790783666684,-0.18467944697457356,-0.2103402775059298,0.0420700113317293,0.08097384056063499,-0.34074316639966284,-0.40744875534766223,0.17202090834142855,-0.13807142190764507,-0.17790911027273965,0.12641706434114564,-0.035407276044167296,-0.3982620507325391,0.18207973722639345,-0.25272438072005354,-0.19220229460427368,-0.37964187919261533,-0.22353273435121518,-0.33415988343840647,0.3677887462854376,-0.3486775267675135,-0.02345162802741996,-0.19571750841877605,-0.22320543887935318,-0.22896392428663773,-0.28311831553947253,-0.12557588755418603,-0.06097797168284402,0.1298261483082078,-0.22838990686320593,-0.35647099627289597,-0.12140331263682595,-0.3636671969541254,-0.007617600524970282,-0.2637419790302592,-0.31938416659818897,-0.020973690320966683,-0.054545960599177545,0.10706341314877225,0.01199572574162868,-0.04150399599306061,-0.23738554145670945,-0.11577575474166796,0.09112130745120242,0.13138341547129592,-0.19699369600540784,0.0185331697446656,0.0842572184491514,0.020074825321379903,0.13848818180005582,0.09165753499408921,0.022252330218517805,0.017732348191210934,-0.09216883817163067,-7.965425491710304e-05,0.011990409031881815,-0.055536385468870644,-0.1168032195694612,-0.051866246579709355,0.06957927333518131,0.062805076063308,0.18607481599802178,-0.3606101938197559,0.03747982142981847,0.1194642089335718,-0.18261722297153013,-0.13857756358579398,-0.039850126320111486,-0.36598248677631223,-0.0789479427151826,-0.3302060293507186,-0.3115444423058312,0.13944314493065482,0.26325205914026334,0.15033361265057796,-0.02601151742340782,-0.13703683103663084,0.8119109267892112,0.8047638780711398,0.1853457693272381,0.5928472034527267,0.6177297158971919,1.0,0.48042585284983724,0.1016061347571341,0.10891190429092877,0.3481026177992415,0.7198851962407798,0.1779551541148785,-0.045062597866274735,-0.062409978643909084,0.09431840922040077,0.41364042558444253,-0.07942633595406927,0.39363145534592,0.3425494033737634,0.24875966652693257,0.14140032387089155,0.10499546746468068,0.04230647069171444,0.44051232238255117,0.63197284651365,0.24225998090989512,0.13695963799034935,0.10675799362175617,0.32432114823369695,0.34238679531039024,0.17443189617007437,0.001793495935881774,-0.0635490605595937,-0.16228714688231363,-0.14215713813786865,-0.14590079583289095,-0.04465450630881897,-0.06940672225155868,-0.22202544548666622,-0.21042872172717514,-0.12313397367886311,-0.13946570835034258,0.2534594448304886,0.2154437056629269,0.13918736335596735,0.2827723088936167,0.3535663590065773,0.2100655670124906,0.08106089549668255,0.35216437591232597,0.32707095795912733,0.12755051862339492,-0.0021015632690631666,0.01647235477268208,0.12870606162929868,0.3361888029768594,0.21538052347799103,0.007344865293042857,-0.035367901482529045,-0.06190862482559873,-0.06833810470645023,0.033590997601702074,0.22921069396458885,0.07815692897264906,-0.028497134968508604,-0.011287306252480079,-0.10194380096732947,-0.18531606293408226,-0.14183400951282982,-0.02567365187082096,0.15264794989025807,0.06789013927843478,-0.15848812427334225,-0.1361176700332604,-0.21340197696415716,-0.01736527068974048,0.005014533835523517,0.006402737518145216,0.006572103715386288,-0.01571724109043024,-0.04529913962385716,-0.11150790006861083,-0.0791394855413651,0.04050819930135303,0.08743748522241096,0.08870556459418164,0.06190009766818016,0.04498283939367773,0.08505961080944247,-0.0854488746970108,0.11939381334084119,0.07151703112891396,0.11620066335062486,-0.03763105767987693,0.017063780299476295,-0.015928521769307095,-0.011474592670511215,0.01828211016041208,0.022337942899742422,-0.0168411741809911,-0.012512739749624678,-0.053173521036306605,0.021182616053399057,0.013682591406843067,-0.08346074642809916,0.019643856198147458,-0.012843488225416696,0.07621610115664565,0.05325159812793439,0.01693344693655962,0.020362910589286458,-0.01997364284931506,-0.01736431653398398,-0.05716192518965469,0.022695527735300855,-0.01356252572631483,-0.033757635214512346 +C34:1 PC,-0.10144620657431128,-0.07897326116885199,0.07260952132314573,0.10388885888409251,-0.252956974839925,0.19512021860886108,0.09465235961210487,-0.17437097506317956,0.3797488807801736,-0.20051214716294308,-0.18699075663864806,0.3515255012410868,0.03466569664790802,0.1008871562316927,0.34044754696353097,-0.12228470064734583,-0.04011398749890354,-0.1468769516612001,-0.45178026239853053,0.09977385556749371,-0.23809963735537437,-0.07739234116202574,0.07068690378222733,0.28629651024561664,0.09321033301129865,-0.4677593156888836,0.05943110141673733,0.09738627736241372,0.0322313052291284,-0.3262003835754899,-0.29848304604861753,0.028268836137284283,0.05083232736817306,0.014334104366844893,0.4549679076281966,0.035656052223815245,0.07595138785714108,-0.18287169204737314,-0.42761009934641353,-0.445139172221218,-0.13289193738907185,-0.06061657669045559,0.3616699489494179,0.005159597184273248,-0.41496976230933247,-0.4020122692959482,-0.011374592265418714,-0.5393578025125875,-0.11229182870691033,-0.40944659020741514,-0.1919927252085529,-0.18538816331997277,0.2073852909309495,0.0007639104657313083,0.32092113256123234,0.0204597922114176,0.017169899479168086,-0.06769553371807101,-0.15153251862605172,-0.22267593064781988,-0.16703009115160042,-0.34467268498401155,-0.49919342081102513,-0.029042170401498913,0.02732473635259402,0.043507745198368065,-0.2164241310063681,-0.4670836164715514,-0.23438433260486635,-0.5212649842654801,-0.4602120148843859,-0.538215418293465,-0.4600563695572981,-0.5100932800799847,-0.49954072986050047,-0.3889778538245291,-0.2219359518882264,0.08625123473523148,-0.2702819996835811,-0.5008831906888824,0.0709030447364792,0.08323558453247339,-0.020922758087880192,0.13260002803073911,0.23730313929585461,-0.5454191281914547,-0.03279814429891671,-0.550246553977892,-0.556808991868446,-0.5918844189394133,-0.2048438593624224,-0.5579976305808031,0.26802868235787125,-0.4890148480668978,-0.1469822006930948,-0.43769750277435676,-0.44773282606538356,-0.23467729113261038,0.023639794089656656,-0.11200328615959657,0.0325210326477194,-0.14683878989131155,-0.5003487303489026,-0.4634957655012335,0.2730885650383141,-0.40675769226759884,-0.03451120790616032,-0.23107970995965038,-0.5037765682457894,-0.05252878373934186,-0.05794487262367789,0.16794397474307904,0.3101258173253833,0.004087184366695395,-0.485698989658907,-0.2346430967059514,-0.19227982997687582,0.12407073432762716,-0.41481417338847976,-0.21124529488710975,-0.192175189225179,-0.23370216590281892,-0.16466572875580737,-0.02717903341474182,-0.09176807500305152,-0.12270003632581133,0.04524156158175001,0.16007037172799085,0.16015939195866136,0.163753533891957,0.15952423283329295,0.07470594488934679,0.43883599996150446,-0.038586700543406884,-0.08520861372655164,-0.41321126492214855,0.2517365884762093,-0.06220591955219228,-0.01850453958331118,0.16685390031293668,-0.20382682498346796,0.06771600495627585,-0.14874119486601822,0.19726358608029498,-0.23295939510918845,0.2408412249329641,0.23420469975922195,0.2546593928478345,0.22334156342082578,0.1460805532927443,0.14977447024013124,0.6238020706343484,0.5970828839427563,0.2397992784837359,0.10866776844938716,0.48042585284983724,1.0,0.34008807319457285,0.46867446053294437,0.4248621420479972,0.5648365090973202,0.7034939039780668,0.39863586233391657,0.370412144459628,0.4533195932559319,0.4532495222835012,0.33117971454529355,0.3638634785617782,0.28268834882138766,0.5876478560977376,0.35024319425217953,0.4087923409096547,0.21943553751268702,0.46345909635274096,0.4414254217221997,0.3774268171260876,0.2704025040507743,0.22881119580992626,0.265881747821794,0.18718179719640862,0.4150954452477056,-0.10101914193078942,-0.34872248728744876,-0.2883778390145184,-0.26577714492660154,-0.36064353624271445,-0.3680964984529937,-0.15033829436905013,-0.3122839024119493,-0.3679514173931214,-0.27907339530525077,-0.2312636468087711,0.17518457776299012,0.291554788528146,0.367268788267617,0.035746617189348504,0.17512541697777445,0.31117770251297916,0.2885682210468359,0.09881418180111808,0.2419010452861558,0.31826990327107735,0.30515543537372775,0.2067104927662153,0.14297444448077093,0.1431774170652911,0.32162056477779793,0.33948144905263533,0.2076835796583609,0.2270005954776141,0.17692058573220193,0.17304152248525945,0.17347501615528624,0.320613619387978,0.3030735642742971,0.31406180465275013,0.19647199894245382,0.23099804945663005,0.18949790520398802,0.22934537381219777,0.24206127938604005,0.3187528463285211,0.17565675331266112,0.17257545701633023,0.19786270570374034,0.0035983841597195657,-0.05348333155439439,0.07031286488302399,0.03300410184661709,-0.023391956403924566,-0.0654326680511779,-0.05128074059331795,-0.10262313442590754,-0.03495631873920362,0.12349329392548244,0.11825924367667895,0.11186089364857242,0.06688876195745722,0.04758866632241882,-0.07237671154219794,0.0791814523518894,0.10998522168994383,0.0965697102004146,2.6571576353558446e-05,-0.02627810902859235,-0.02155595907095712,0.010810567828719647,-0.060887130053075056,-0.033957621877648184,-0.05957583228745758,-0.04308089099711191,-0.12332666864116267,-0.003953907973712668,-0.06360755356329836,-0.06810894885189245,0.07239884756722804,-0.012362406345251488,0.044103841408962306,0.03247592753953363,-0.030740736618356725,-0.01936710610275683,-0.049599003089062135,-0.04564840378378017,-0.06821711151004672,-0.025899347054889724,-0.011025845647978108,-0.03855771666465846 +C36:4 PC-A,-0.03374827727991387,-0.2075788290670937,0.02743154422020374,0.2067257699277847,-0.3648992576702071,0.13302566116573863,0.30495545617127945,-0.24948653084698122,0.13303675762003966,-0.34390361407069947,-0.3270936650624357,0.13859440042702384,-0.007907274894053956,0.10193267438239222,0.3184007538227514,-0.10701415659577995,-0.052720288741930264,-0.21008121927970266,-0.19961771061583755,-0.04888313241365924,-0.13623658570066444,-0.2476363329035588,-0.1898107626622687,0.04780223300942579,0.10075334808663017,-0.2491295578476247,0.17386883006512507,0.1438042654546839,0.01672215027583289,-0.35500284294605755,-0.20067028657073943,-0.20425483586733717,-0.15502331216629547,-0.1772069709412962,0.5102146396945481,-0.009838136101369271,-0.06376182349924096,-0.25318834077447183,-0.23516486200658393,-0.27311488548887924,0.004073290566333286,0.09506832889254294,0.13550831582237777,-0.21750667139593552,-0.24317336713451676,-0.21162487631482532,-0.04331449096678264,-0.39295123832584095,-0.004286717627614505,-0.15023197150484724,-0.17095375060290488,-0.31612803597194855,0.3699249672240493,0.03041945876143313,0.4227910152042591,-0.05671752812614634,-0.05988679684301798,-0.030603185646918947,-0.07646730370256186,-0.3598371713797031,0.0239457318383043,-0.19825926485251055,-0.34790607002674784,-0.09334182261524265,0.04174764107993918,-0.06398407737037216,-0.04480825456014475,-0.2940010319838944,-0.14106668370569111,-0.2724403663109775,-0.22142092979897607,-0.3701214767268215,-0.3508545917503384,-0.3153767175409454,-0.36007018094856946,-0.2277179049335927,-0.28843169090456017,-0.023568885472938072,-0.1179282694502779,-0.226631192907351,-0.04848626952855221,0.24202697107209045,0.03354448686734063,0.018473198564704783,0.3097763698919354,-0.2833563032706414,-0.13464590899740003,-0.43141854797685375,-0.489572860950976,-0.3548420763773126,-0.05460614412789604,-0.37296750053144406,-0.0012397948853523307,-0.27915575309018287,-0.11847425718170258,-0.3593557089180278,-0.257907207118671,-0.15808712800138391,0.22230601159480967,-0.07518251197612323,0.03620810477858335,-0.21901787642658965,-0.3922672508569266,-0.20997888597151815,0.3788541691595512,-0.11718841965173318,-0.03053873225740924,-0.09146225261807994,-0.281370043569025,-0.08532003764291275,-0.0490576448731496,0.09500362836972792,0.43121339509923595,-0.0059710684959879134,-0.4008620475158386,-0.1782279881426391,-0.30906783238149466,0.014081704689499057,-0.33377873540639497,-0.26227691590368046,-0.26739431617485676,-0.23765237347361684,-0.2869869987258548,-0.08301991344112501,-0.15139067044021015,-0.145366453079809,0.1177470648653631,0.09148026414958596,0.11309139972517127,0.18055061310135007,0.17811871000881319,0.091832294925537,0.4674512714196291,-0.11043852721186526,-0.22923588168550033,-0.18952025749091983,0.3021506485401532,0.11404382325215767,0.0170237978740241,0.3842442184301153,-0.14330135114887352,0.14400880774334174,-0.04547459180548659,0.23879835639845576,0.06280548998370658,0.15653300489087968,0.1433951336505273,-0.08050712170366568,0.28271306436008753,0.3363483748426985,-0.05172269187841362,0.12835022325268597,0.2762771750739869,0.3509328245107361,0.24291628652929845,0.1016061347571341,0.34008807319457285,1.0,0.6092390570156381,0.3943098389463979,0.1257040928720514,0.1761034068554055,0.5765576242561848,0.6095965650943339,0.5223732558793666,-0.0819430282839028,0.48176889399772566,0.04489199628833215,-0.1062709572816157,0.1922425277306597,0.20547962237148856,0.14697891110407235,0.14224861740541736,0.41734049302804566,0.053682662857550696,0.025907711915425572,0.029883872917873814,0.23740688046107394,-0.04321903873332957,0.05542037235702204,0.13467557885430004,-0.0007641636089585108,-0.17011569347307343,-0.18349810393398336,-0.09869779813027643,-0.14889887986531627,-0.20400056686199924,-0.061729301984757526,-0.09667440160373732,-0.1907541917505453,-0.02081681517913716,-0.007178925532658571,0.09537391618991987,0.008907142602055083,0.12002672762064977,0.008200430750376578,-0.04198059185596182,-0.04961661986251092,-0.01616871953371914,0.019601243136688273,-0.07218591609523133,-0.023906783394119162,0.045301629412678256,0.34601795726116735,0.22602779373495585,-0.002208549089637674,-0.0050942433097665015,0.06032718329778979,0.3757297086525205,0.4384931174353168,0.3237445455051924,0.2729489032978153,0.039899643040628804,0.03197583569978055,0.07959665314206417,0.44963756619887285,0.4362843843884264,0.4366810903108349,0.36389286721725833,0.24112255730966783,0.06067091047747904,0.050721669127994785,0.4309512448150764,0.3707590969089094,0.40131735204284874,-0.028062698206545954,-0.10130197815959059,0.009442530998899407,0.03971886755395783,0.04340110423214733,-0.03385695393443316,-0.0188131061391322,-0.07476285602676962,-0.10033940899382732,0.07541431979060914,0.029969127907536447,0.010036360620827127,-0.029435638766926165,-0.05760719848261718,-0.004769206672161895,-0.05817537501451821,0.002696015766979532,-0.07504552479828311,0.03853465522601578,0.05893273516993874,0.013398842161179335,0.05093177084335953,-0.03222327768965598,0.0723497719663036,-0.019281679181524933,-0.10243343966328437,-0.14134615756853516,0.05411527757951288,-0.08093327176621137,-0.11099561068658131,0.022296960151355537,-0.05050113049897728,0.015680350499781052,-0.05806970986605117,-0.08147438487875873,-0.028210124773697585,0.022041777893058237,-0.021550654407212766,-0.015867446727423174,0.04588499449841474,-0.05253274259491853,-0.05305174105122539 +C36:4 PC-B,-0.00873906702472743,-0.2820412395019751,0.06864210541565714,0.24581374078884863,-0.4243905776619695,0.17447461441498208,0.40153189042556586,-0.30949116441939645,0.17121630993428702,-0.40934080976106185,-0.3699771369150657,0.15680626685644591,0.012478449650456483,0.1561070197298882,0.3766213967468789,-0.24750294117767713,-0.12191098069526499,-0.30274943151604305,-0.2148003317552484,-0.12390788577703264,-0.21292865746422165,-0.3565750601149402,-0.2683893456519123,0.04031605762413876,0.0907847704023831,-0.22209234111248027,0.25009606389444256,0.1983697865423907,0.08707525713736246,-0.42674465374684145,-0.23013726447261776,-0.2543334744635628,-0.25383252662839767,-0.2392958844613996,0.6183863771376285,0.04427608884464688,-0.09674422775143329,-0.35805559695633227,-0.23777908708421366,-0.27649386847262175,-0.033679177532727575,0.10266937431479989,0.15723245002821937,-0.2836642174826725,-0.25983351357810497,-0.22640657566951114,-0.06327401138427842,-0.4082920308478695,-0.03999316862766955,-0.12712611047858574,-0.2052721094872489,-0.39309474965175517,0.4281041753601022,-0.04418104301261348,0.49978213745646904,-0.012890312700187506,-0.06628313638459879,-0.09228991057025976,-0.12178386528474408,-0.43298206657715355,0.03321139801640779,-0.2567967434204803,-0.435345556761639,-0.08745712064112339,0.015320757375872202,-0.08463606696390741,-0.05948501383121158,-0.3343614432659314,-0.20138525284879272,-0.31124650608648946,-0.29467962472404874,-0.4590711493172055,-0.44007873257565255,-0.39916194334613836,-0.43940619116338453,-0.2913920261556705,-0.3852391414721425,-0.02470939951304533,-0.09176379798061857,-0.25447174700977987,-0.05375187124768059,0.3412130629856825,0.09717272953741041,-0.048631266896836646,0.39869630778591153,-0.3299054875839285,-0.17683795064428057,-0.46233974076673884,-0.5535684958272595,-0.36775705648635115,-0.09401250832985768,-0.39278817015567513,-0.0015876168018302105,-0.2602905781697019,-0.1769679322844694,-0.4317329354613227,-0.2898212559691221,-0.1676922022845453,0.2584136899016771,-0.04501106189541795,0.06992075805270875,-0.31928192105277237,-0.4289415831098929,-0.21032495390960967,0.45656205623834595,-0.14167137586327397,-0.06742069794787266,-0.09180773138089517,-0.3292850298732684,-0.08291056545923865,0.009856711563330052,0.10169488164627039,0.4190215505853758,0.024792577024387627,-0.4342352492386878,-0.24927638848501613,-0.3613151600218343,-0.015585474218872073,-0.3849765426354259,-0.30679470418418237,-0.3389695980902902,-0.2991712938111948,-0.34089675333052005,-0.12789853413678004,-0.18139625093996864,-0.17579224811574615,0.11722116166072094,0.15206499003908927,0.1938868089027119,0.24531888522782683,0.24776607874576076,0.16706983908636366,0.5669480757304655,-0.13070987379642698,-0.3314476873990446,-0.14375405510485323,0.37790776171908086,0.09367050565210668,0.08571209429815235,0.43494169861611487,-0.18948062913487387,0.22383398653189143,-0.06255161252608987,0.3164315481070386,0.06799439674600072,0.13946806195340106,0.10685322656551136,-0.1431692414339431,0.3238988609577116,0.3561935882402044,-0.11360032239689703,0.16990796708078537,0.32614125081513945,0.3707353906629175,0.14387894523683264,0.10891190429092877,0.46867446053294437,0.6092390570156381,1.0,0.6051468684834029,0.13066360429777382,0.2352585757832063,0.8374105056026503,0.8889910234932097,0.8413133603299183,-0.008555883001707112,0.6851770110975645,-0.018005225540126815,-0.12660959640073827,0.2056820662125611,0.24213314081249956,0.24030135567804314,0.1854349139707782,0.5563486691067597,0.024690923852849524,0.054068877456182315,-0.009215001784330561,0.2310525963851716,-0.04341482252500826,0.06129195067303928,0.13554239157374878,-0.04627330217951726,-0.2279700593739061,-0.260800624155357,-0.1265899733116947,-0.18178794845986526,-0.2760691027045239,-0.18873153744871907,-0.15937871736891,-0.2353768304857684,-0.03216458853833758,-0.0802979978738999,0.1502271899815312,0.01194866577910496,0.11681648006620284,0.02247617003936861,-0.04628132029699804,-0.06447599253265439,-0.05688358776907717,0.05323269339938565,-0.06685208438811008,-0.03755629723142632,0.007157287404952958,0.4747030596855264,0.35604063488622045,0.03754199947378456,0.016950595614581402,0.04836634783588242,0.4673090907095054,0.5472092042971222,0.49923809662658325,0.42173622351538265,0.09397470113418811,0.0598052952131218,0.07360087039656475,0.5656407806313652,0.5509657057059631,0.6073061781303335,0.5646336373200799,0.4364413663088287,0.1478009258170291,0.06413151335369485,0.5790303704681039,0.5431287407302827,0.5667926888327409,-0.01314155865688035,-0.07308589674903632,0.06559516223350297,0.044133703164923106,-0.04585095399577388,-0.03694148635446376,0.017866122809896808,-0.08243669268422842,-0.15170777128283697,0.03898688892741653,0.027367458451389024,0.05509762523907666,0.02369594329093622,-0.09768765755659758,-0.035146939614808866,-0.03781496220364453,0.03806221453253137,-0.050448040365002625,0.0642015837865058,0.01885933030239952,0.014409951803727249,0.07020282584163262,-0.039831738976766874,0.025790104139970686,-0.03738645750202034,-0.0963204964452546,-0.1600008716584993,0.04202737053933732,-0.08408443956639444,-0.11016819255703265,0.0547064050517084,-0.022133523734259985,0.041211714663068104,-0.04547329045255524,-0.0990950270400918,-0.019430038247763348,-7.882762948095819e-05,-0.027167556442085482,0.017163516986712302,0.014579362789227453,-0.017209722828155933,-0.007980487087255368 +C36:3 PC,-0.007280786619743952,-0.10833873250471553,0.10685986915391382,0.1324729301374968,-0.15480086274232416,0.12102720056224207,0.15254932775895325,-0.1705921667577145,0.22855099757648276,-0.16631270335632733,-0.1323373349140424,0.21156368412894108,-0.0402227798785902,0.08571404651043414,0.2327355065537428,-0.060400493559534224,-0.004344122385039647,-0.09446194697319173,-0.26885975662781814,-0.05573702090767482,-0.09851687149832859,-0.14088407156029958,-0.0319219985111555,0.15890715815069412,0.06793988262626323,-0.21126700146157368,0.05651232595717547,0.07021088655136799,0.048733360247933365,-0.17188145623052742,-0.17568340775566357,-0.07960207641498666,0.015591492383477398,-0.07025451279297672,0.33491794582188766,0.02157565556858949,0.05998703394008363,-0.15749647266692085,-0.18036773171557197,-0.2514912353187217,-0.03986170832993163,-0.026820950611413794,0.20408494416301165,-0.0322891159395644,-0.23404715797419065,-0.17506347926586835,-0.001273482738158854,-0.32722123872810915,-0.09561456207344288,-0.19584360214457328,-0.11971210881878733,-0.24482663890194983,0.148663721089807,0.009250050235278277,0.24763795511755665,-0.0006001962207399675,-0.03781832197584306,-0.030365015345303482,-0.11247496678786842,-0.23559099372239836,-0.14441062953315484,-0.21810542485149553,-0.33519062817623146,-0.08533219646208408,0.031154706052435477,-0.019269718661068382,-0.1755060078000273,-0.2730209405992359,-0.20869467949172404,-0.3213602784589376,-0.27496919514952434,-0.3584896372585204,-0.3140982558344442,-0.3271406348907728,-0.3197784116766994,-0.24148364683946053,-0.2089085266201573,0.0065660929611331,-0.1903000974858892,-0.23304825884657995,-0.01746167309129217,0.13621309304441712,0.03807803803174836,-0.04293412951049179,0.18838320028252079,-0.3336886737020553,-0.043483785942987165,-0.33697054368867513,-0.3624648844016277,-0.35887171365215087,-0.11126384301807657,-0.3455611180572295,0.12312148226826528,-0.3000681740107739,-0.04128326889611235,-0.3464290994876847,-0.24752603863985645,-0.1983498030106463,-0.011065846502713065,-0.021341610176429833,-0.03708589639496188,-0.2509434309516363,-0.37074770601733614,-0.24242489515659174,0.22290928573754237,-0.23675753789450182,-0.01230309186969034,-0.14514777103123583,-0.2754238473660107,-0.0767822011654265,-0.08317919668804417,0.09982344467933657,0.24192204156356342,0.11812149990308228,-0.34408296693164414,-0.14225651287188248,-0.19340382019636193,-0.03655877368354646,-0.3109546658929529,-0.19474060355414416,-0.1754675406393831,-0.14620390362008667,-0.1958092399743337,-0.06346517743807713,-0.136010249369722,-0.1465975454868487,0.055460083196390994,0.019215638313354273,0.0377981346004934,0.0536097449110893,0.07625966235623129,0.041512900125339036,0.34120260847631,-0.07918809243365041,-0.12207774532059906,-0.25011120556482436,0.16533376689267373,0.0012633608944808228,-0.05601846072821199,0.18658948547999812,-0.08036332512861302,-0.0121172475416451,-0.016089691511094843,0.030667692395583954,-0.09617433235179623,0.06149552309190004,0.16718508824123882,0.00045384256633839283,0.20858177088506755,0.1356144610080584,0.057232298211970276,0.21927429427652118,0.21534331524244985,0.28384650055386146,0.3349551078388975,0.3481026177992415,0.4248621420479972,0.3943098389463979,0.6051468684834029,1.0,0.4519790292368841,0.2915933349476094,0.4845960692298054,0.5749987045235829,0.6182643523639765,0.2554390856663561,0.4114152322343287,0.1354182371645893,0.08400083447332178,0.22279047097584329,0.21893202053190286,0.21318936015855292,0.10681281961713977,0.7051400197321633,0.38064973515600276,0.23081477508853818,0.12076560443274328,0.0899040102176903,0.08313272056892552,0.18822484967721212,0.13934536237550305,-0.008938493522216982,-0.15450727379354753,-0.20279945095476437,-0.09241997418264407,-0.14555710411980244,-0.16569794318069542,-0.1429872449794795,-0.15715570941145318,-0.2059196907152877,-0.03688809704184708,-0.07560148971614698,0.08706531661693602,-0.012439050380220747,0.03735075281065936,0.019276238812549983,-0.03238678850922077,-0.07218156114867641,-0.07513743266975467,0.04582095441286883,-0.027002622689297994,-0.054178902063213054,-0.027164910578721203,0.24048299990583133,0.23735751158266344,0.09789713314915986,0.04515950732327962,0.02307683164062515,0.2721366760308623,0.24248455541451333,0.319784310072809,0.26600855221117853,0.16695816020919277,0.08710317968750124,0.08518477315248048,0.33280185779912813,0.32645180223293485,0.29627149431989835,0.293365666768559,0.2630602856238045,0.20648626969185227,0.0916307594321997,0.32335572110800304,0.31387371911566775,0.2858967499539131,-0.043354546989411935,-0.11591425630135894,0.045168483174853086,-0.007193109534415665,0.026684878976789218,-0.01774802286695758,-0.01900050370142759,0.009380311569060424,-0.08306891865345062,-0.0073735727742310605,-0.050779614336042576,-0.04485670451420223,-0.04087827453571692,-0.07271952611926724,-0.00756406271806945,-0.047121437232271565,-0.006478171958419003,-0.09337985537705734,0.10022843236206427,0.0901179701781017,0.032398983690021026,0.05586961001498661,0.028181573532598918,0.11062243891140165,-0.023323061796643906,-0.0632002654297892,-0.10446991151536518,0.041628823121568015,-0.06950582545065072,-0.12737425201482916,0.026619499941712112,-0.010854537589166886,0.03911554040947141,-0.03630710528802087,-0.07354927443725431,0.006258103280259906,0.011956612398111887,-0.016117586260898743,0.020365762252376518,0.02198553655291134,-0.012296649882777302,-0.016416779177922308 +C36:2 PC,-0.11213470643776394,0.14850934355446063,0.11146563288313263,-0.10581605483979273,0.03967009374074356,0.16082909694485947,-0.07428700858797695,0.002496348118106178,0.35234211237232443,0.07283720735708324,0.0688774103703388,0.32563228922342863,0.017294533858212956,0.009020060900939986,0.1956895454764379,0.06279195051060889,0.15259605355363176,0.08814066721928858,-0.3734900746080662,0.2257724634291726,-0.07922186062261381,0.18907917712126476,0.31712732136732463,0.3095321021503598,0.06796433588287651,-0.36390634116804815,-0.16777520024150389,-0.07802672751277845,0.06408171462219239,-0.03838256421428111,-0.27004411846223214,0.20041336455427716,0.3139009338230753,0.208504431881062,0.13912664049955917,0.018413822892491976,0.23123289265637115,0.03243397682753566,-0.309935518385641,-0.3505874251410398,-0.1928247977659448,-0.1470381874351905,0.33394890569132474,0.2667602694647057,-0.3099272977474187,-0.3016207460754635,0.013145326462864124,-0.3859322082701595,-0.07347178405449342,-0.4008651411193671,-0.03849245017317228,-0.017993447296173717,-0.010686079511160348,0.06238574815250977,0.06706621794758086,0.01601854667976883,0.09379633180469196,0.05424170930768551,-0.04890158924997523,-0.03238237691409717,-0.28267300624661945,-0.24410267565200716,-0.3041431385841074,0.022894125608934158,0.12328627538335449,0.12675922353577682,-0.23285680100692005,-0.31894897693786656,-0.1734995634843548,-0.43087336285565236,-0.36153752823589846,-0.32730585297937353,-0.23563375495258304,-0.3397711780797576,-0.2800378841498832,-0.26972948871134067,0.01736657110780863,0.13963843175857862,-0.2878242246499772,-0.370617575246743,0.12820903060391622,-0.07064028744614917,-0.1665978009594307,0.11506928866029888,0.06273737537225924,-0.40575322007292175,0.13392870722326863,-0.31237603556124655,-0.27407851509384645,-0.42558296852901784,-0.1452643473468099,-0.38879095269270214,0.36507120447197866,-0.39611486272632673,0.011394188191152817,-0.2783223013591365,-0.2793903028690716,-0.22759245750868326,-0.19501332925403145,-0.059685875658057365,-0.05525335313648786,-0.01251538410137315,-0.3320958011041773,-0.38674164483003,0.026401210954554492,-0.37743836025677363,-0.022862229639030753,-0.26565471511851013,-0.3450916072634803,-0.06137066964533647,-0.1258892599662961,0.1881975778634652,0.13161061717546124,-0.010044352862867626,-0.2951257456486744,-0.1008314387020479,0.0005165140217658889,0.12025165558216355,-0.22418557238708947,-0.09804494697026724,-0.01879701480120869,-0.06388807493689616,-0.0068708912310914815,-0.0004715529354864731,-0.022205130708483182,-0.11653178268700605,-0.0405563710399738,-0.01827119655018044,-0.02519249547274304,-0.0388856424889582,-0.05951663299113111,-0.03981379401534374,0.17756629792550668,0.06534590232824176,0.13852063257050237,-0.36657260971168953,0.04124372906847656,-0.06657928816020321,-0.2301197819300852,-0.05074628722894525,-0.04011045405371989,-0.2861395220728115,-0.05084884105833942,-0.23152413413355294,-0.2621906736721362,0.10792189946683221,0.29656362513528317,0.17893912698260844,0.11964282845739665,-0.02212776124979218,0.33313762155375876,0.48554926310543134,0.15813251462092834,0.24503935665068552,0.28217057757716757,0.7198851962407798,0.5648365090973202,0.1257040928720514,0.13066360429777382,0.4519790292368841,1.0,0.4649135803052102,0.07679367607358277,0.12026635499062006,0.33577204022660984,0.5936559655758099,0.0852863664692722,0.3158855999016381,0.30701246059952364,0.309064752898409,0.1968550605215307,0.10925519220702058,0.007475621427373302,0.5330922082936176,0.8726227678883932,0.3090347830295121,0.17968354591733632,0.15619225499815914,0.32890734272252825,0.40152696965797485,0.3114884059977792,-0.025386742551568385,-0.17777736328483465,-0.25082286525977493,-0.17825530246239474,-0.22072479260839675,-0.14524303859256488,-0.1330985306075656,-0.23921943840359192,-0.24792471958526535,-0.20091569168104756,-0.14186041815327427,0.048412425821946437,0.05313236974650684,0.09099055277200645,0.00607211675516604,0.09554209945796138,0.05479946664906342,-0.00510968089120669,0.08751962058378517,0.14649559344011143,0.052889487186534176,0.036328188230142264,-0.051249102513851764,-0.001295824970267519,0.20696061254225243,0.19951382371108045,0.09325785571996946,0.0021500431779821454,-0.03229821349869628,-0.07050965834561598,0.04038419600266451,0.3226524466018553,0.22369539043772557,0.140499321783327,0.10509557401814344,0.014580691445476893,-0.05170526721195227,-0.03568522001355323,0.08795040028289879,0.33079742115942945,0.22287220667875557,0.006723655708597785,0.02111713533672482,-0.02600398468675608,-0.04181794625146745,-0.09934452166229094,0.00897194522606485,0.01128422155055744,0.01354145722467738,-0.039103631632528786,-0.061347863787254715,-0.02509356194555941,-0.021578407991759595,0.031954336391597594,0.010570099935651502,-0.005622667372350973,0.0035221806374707257,-0.004224879622110451,-0.04200232922094654,0.031223459348542516,0.0025351627670027717,-0.010732789835364282,0.035780841453626526,0.04611961760434123,-0.02253204873610073,0.006686455271379746,0.03326524253279832,0.06806614143730634,-0.059730577827968145,-0.05519367384646076,-0.04813418786821356,0.03690436874030404,-0.04442874008353847,-0.1254545466632589,0.010158990971149478,-0.04290151074335119,0.03156756616173381,-0.007533271779915628,-0.03786160703051468,0.013683049766001213,-0.011994595067824899,-0.017914245381109667,-0.033969836291921206,-0.010727110944588218,-0.023997752885736495,-0.01971801637140066 +C36:1 PC,-0.09660694225023772,-0.08000911717273652,0.06867776054104778,0.06681622917237828,-0.1513400923929942,0.13836343708232948,-0.002625965317198549,-0.12713653066401806,0.30577605363225263,-0.10170367502515319,-0.08196812231007852,0.29635219285264053,-0.005965136429633041,0.06270841401126187,0.22964957593376426,-0.07049567176886785,-0.07595307958999725,-0.11983787745213789,-0.40885020177703607,0.06542739594786255,-0.15493886213918176,-0.009016653296345212,0.09753545600086762,0.2486374971130476,0.05727350700481905,-0.3622509469811261,0.04370460427976515,0.0764535836574858,0.04752238494872507,-0.2417235983479215,-0.22048100009376556,0.03295572741780174,0.09554788838359148,0.055156221777172464,0.2645375887572452,-0.05558337915693771,0.022139710774469527,-0.16510036115600338,-0.3387892823797891,-0.32864581495752965,-0.08827207767689979,-0.0336319986379816,0.28372961240888456,0.02379623871187625,-0.3469321977531387,-0.24062610400146245,0.014749752268301271,-0.4073745262715003,-0.09735829927291309,-0.3265637988844943,-0.17996390716248006,-0.13170205929319953,0.12010398515474362,-0.022039696670761014,0.2008273765394307,-0.014915951829185616,0.08309682467874027,-0.06506276593095538,-0.08732949056856239,-0.11003759452280187,-0.19231562414936781,-0.2495907364766867,-0.3723488688434424,-0.07335941534674208,0.006975918122558121,0.05569198830256624,-0.2228974550722566,-0.35423069945753555,-0.22416495673393114,-0.40122726959934085,-0.3475907208387601,-0.4018933621914658,-0.35005986793833255,-0.38560255734701404,-0.37445381369517133,-0.30432872043958403,-0.12490337938103137,0.11341373577829605,-0.17473633215693343,-0.31314910274801283,0.037794966278316085,-0.003427031705370893,0.0010876168347159674,0.15095919604740995,0.10456299798430738,-0.38716493317604556,-0.0909824053039401,-0.3811739204160129,-0.38112775419688383,-0.44151692214058025,-0.12755721826775723,-0.4130460960395993,0.2122423065958512,-0.353057675731212,-0.05225818493094314,-0.3380879157471733,-0.3694734183702641,-0.11672180865440561,0.015021438851221883,-0.04205000247153803,-0.04073960064511625,-0.12639174761155064,-0.3841474160886652,-0.3514003494427064,0.17144828699156006,-0.35470786566508006,0.00022902275147588193,-0.17763529400378344,-0.32465829081921405,-0.08787205078545697,-0.12800097975263852,0.054835416453281494,0.15119597793493197,0.04046679401646381,-0.37261896354509144,-0.1316536571887549,-0.08002628981479068,0.057102635170295,-0.3300514304038905,-0.13791121686935331,-0.11559377961958797,-0.19579043661486867,-0.12038186497782363,-0.05121701308422825,-0.05994117995590707,-0.12784817480028426,0.0251605500754303,0.010854714516471135,0.058456822533448874,0.1100037097931486,0.1530539591212705,0.043943964414753,0.2802971832451531,-0.042583671977460706,-0.030287358386972794,-0.30664123697959933,0.08139100291664793,-0.1674512807587452,-0.021238592739598713,0.05720633543786097,-0.12999905463769365,0.19272999639492805,-0.12237432403066077,0.2820857444107809,-0.24087023791174236,0.1380454245637814,0.12472247984598675,0.29124409458164674,0.15335622723667067,0.13425985411111546,-0.11138554105615377,0.2785421047736789,0.4676703015585485,-0.05702729146625968,-0.08709794865059325,0.1779551541148785,0.7034939039780668,0.1761034068554055,0.2352585757832063,0.2915933349476094,0.4649135803052102,1.0,0.2885066874810985,0.2664354267710007,0.39937260251750323,0.4975486624163307,0.28867484840442215,0.3187313378908693,0.2677444913466263,0.5989506285745076,0.20910755423622399,0.3139061142390716,0.20796696626302355,0.3409528120454225,0.3918823463448881,0.3896914393069882,0.3564853201778767,0.08839774073982698,0.09514255249485143,0.01565511591353452,0.41325532949662974,-0.07440739298051467,-0.2777014929021056,-0.18409482061661933,-0.19369797140445905,-0.28313305858981747,-0.26785862604117655,0.01290442702961541,-0.2055412733579678,-0.25912971359751324,-0.1953983845480638,-0.1376037311882572,-0.021851760789705552,0.1463514145839633,0.25150368414921176,-0.10057070441452111,-0.019351257551873866,0.21000803028596624,0.2520212612183295,-0.08402111661437976,0.11718383923229296,0.2852194925216568,0.35262188273475353,0.08309024525626417,0.010616233498123968,0.020606578000461236,0.27762508161951677,0.42041397200013353,0.16718903175691335,0.14343233583522386,0.1366230383680815,0.10133819469101396,0.14249337096214879,0.42302954955998767,0.465161439360051,0.20794246632698482,0.15680229503056986,0.1851432718861832,0.15672510210300739,0.21668128457414426,0.23667538899195267,0.4012978066219,0.1637359000135651,0.1578382932593685,0.20679557825672812,-0.0415044614295725,-0.08093294181243853,0.05327669763223195,-0.006186571784167864,-0.018121673335454655,-0.041667651701699,0.0018400840017880383,-0.04085847938443985,-0.041319728267502534,0.06203822157977001,0.062089796350276075,0.04829156433877202,0.03758335614526381,0.01319692706273172,-0.03810923191751861,0.0458798874598608,0.05447386718152671,0.04266138925632688,0.020625851463361298,-0.028822384585324892,-0.039514299369299476,-0.004426466761610902,-0.009350966116321153,-0.0019818874233012602,-0.026859131002235193,-0.025387654424135753,-0.035342996577292125,0.010385792716463976,-0.007672364207780583,-0.019968855444446456,0.03032340432013129,-0.0077746765526651995,0.009386855472471946,-0.002410975887193289,-0.04061140379032181,-0.014073147549046311,-0.04961564559073625,0.011404321745575891,-0.05036415773464658,-0.05967580184120627,0.01399530306037242,0.008093654172850356 +C38:6 PC,0.012708467798226162,-0.3099236902596413,0.06556569382421856,0.25662579057449086,-0.3877008745931991,0.16814414826363475,0.39555455654979454,-0.27080955790066147,0.13134447306893282,-0.37736408552024553,-0.315770860235935,0.10337155716938627,-0.019911291610111265,0.13506674918231176,0.3251628281434977,-0.20773079850551487,-0.18894943786044804,-0.31575948325488695,-0.15842779269493007,-0.12102305693690708,-0.17320041631660765,-0.35167040514335085,-0.27132481185802243,-0.0032932494090717745,0.05760535605898385,-0.12464455279849086,0.2629046671303901,0.1969870968574194,0.0632700259812026,-0.37875557898007295,-0.22584994207613743,-0.2316753637385231,-0.2653268051424494,-0.26437602274431843,0.5691117631371195,0.05655826384136811,-0.14210582854300227,-0.3326301725209181,-0.1487781706964007,-0.16398986988599804,-0.051218155884545445,0.11249743942304335,0.12610877920566976,-0.2626147008609227,-0.2025932795937574,-0.11009735320612299,-0.04682856743707805,-0.33328537656330437,-0.04393742804312641,-0.056744403914201005,-0.25504258360626797,-0.3936931339687592,0.41747384937800464,-0.04334856839089191,0.4281295286341585,0.013802098062793703,-0.07251562045099084,-0.09663299148067331,-0.11883638264942377,-0.4124582487111688,0.06371165939001494,-0.18280572656514926,-0.35922693028355696,-0.1226130883387278,0.06482946648027849,-0.11368298056583062,-0.00997205946477864,-0.24861698349650632,-0.15528859468083803,-0.21191363910873673,-0.1970932153021075,-0.36839637226170424,-0.38492566661513117,-0.2948582679855855,-0.36787869137776846,-0.20044783002755884,-0.34858932848176577,-0.05078489653199054,0.0015332274780095326,-0.17242673239851652,-0.05555146378453198,0.3379745254956232,0.1790135012365836,-0.011740108663622116,0.29927998081985024,-0.2365723715192282,-0.24007945450124848,-0.398470659260471,-0.4985879865265565,-0.2748670208112468,-0.07733019072704472,-0.31054170093223016,-0.021684486886843192,-0.19028595382687385,-0.16466944333288067,-0.3717648510076544,-0.2555072183775905,-0.12921021135696661,0.3479291469707938,0.012120764120335307,0.059583978121980095,-0.3063609238136616,-0.368205748128729,-0.16971556795260073,0.46400881657661663,-0.07673959594196397,-0.05201087202747576,-0.033387225302117324,-0.24850315662275932,-0.09283031453057249,0.032639736216621765,0.0375750235082185,0.34654965689599954,0.04286612338400432,-0.38419747692560297,-0.13500587637873507,-0.34333863997638586,-0.03183230320633422,-0.3681442083465606,-0.26875695706884817,-0.3018805343057098,-0.28289312175964887,-0.336629510256454,-0.08971723934619719,-0.16508397612671008,-0.1687135685425271,0.13622170655150062,0.05644645965520955,0.10077626111858419,0.1878193032642145,0.22626601873067914,0.10160868813767106,0.49234527043658893,-0.18390039731216243,-0.29392470715747016,-0.08919766281736179,0.2854124081167438,0.008410814040170658,0.089995133688372,0.4142746463806771,-0.15335133554663447,0.2606678785954615,-0.03707384632822398,0.32691354671930994,0.13859818655426623,0.06937555257227743,0.01774936346469002,-0.18423389219073535,0.2815436522900412,0.3248348165109623,-0.24160777232887382,0.06587796832873745,0.28621559769137617,0.22409090358541675,0.009376580481830842,-0.045062597866274735,0.39863586233391657,0.5765576242561848,0.8374105056026503,0.4845960692298054,0.07679367607358277,0.2885066874810985,1.0,0.8844523713097303,0.702685755757963,0.022431418935457297,0.6491225565142031,-0.04254107151236458,-0.08067393021399866,0.184981368266462,0.22693408133103685,0.2509023008436579,0.16948220637811806,0.47217315363926354,-0.02772237944480103,0.08314185208818636,-0.009837907599987733,0.12563910076433626,-0.13544399946818225,-0.06898760805048806,0.05731573167997398,-0.03868309712898244,-0.17891051138594577,-0.18768915867715819,-0.052296500216272496,-0.10041540942728251,-0.21320740408028577,-0.14943236696302978,-0.035412413978933945,-0.12343004169784821,0.022347323085046146,0.07026814765354139,-0.03333035960543729,-0.12358011919336655,0.02665937958166148,-0.15539641143560717,-0.22263326584821508,-0.17004006109414818,-0.1023980600889685,-0.14453156666294723,-0.21267217283843703,-0.11485086294933548,-0.013481781979594647,0.3159007168880219,0.18399930757430688,-0.13431613361460884,-0.09197359341007005,0.010779767869333875,0.38439341071244126,0.43893116662178183,0.38166769931445366,0.2792876460606378,-0.02329101160582367,0.004466810420807658,0.042573205622638485,0.47854986464050187,0.49675039548338573,0.5402245778989742,0.4773971294525506,0.33827930564820585,0.05777708022963577,0.0033513593708417947,0.5427605605865747,0.4961668508088187,0.5134951098846298,0.014848992254265274,-0.07036135358622457,0.07240791445874362,0.04718729776337637,0.01418740561921939,-0.0077301138816428805,0.025559226976382333,-0.05360058508417184,-0.11818430333830109,0.06042197756231891,0.021944040081729354,0.022425192393180242,-0.01188838486627722,-0.07606526021056251,0.01857673797707581,-0.029391821890395027,0.01736509613874524,-0.04631681807529982,0.08015823947669994,0.03923769650919652,0.03596538220910104,0.07369420942809,-0.017558158472663208,0.04437190035512377,-0.02792859918122849,-0.05316163159813775,-0.11589630036957811,0.04976436184308702,-0.07825293655646438,-0.07598265910309943,0.07285193355383801,-0.007161640325304708,0.04060754816316653,-0.03331324688625459,-0.06412770129543026,-0.005456784029638432,0.007706080734918116,0.014702002450270358,0.02221755196106657,0.012152957764757676,0.018080137509109494,0.003004056260553417 +C38:5 PC,0.01896984221016704,-0.32776848243345535,0.043827538016310855,0.27433523280311,-0.4249809740367823,0.1895889548578166,0.4297108149360622,-0.29458052447824795,0.1135642580845514,-0.42661219642010034,-0.35746480350979387,0.10224472546671827,-0.020656603343930213,0.16004708366435594,0.3605735750058284,-0.21325957518146685,-0.18092882921901712,-0.35379078201730974,-0.14863911608558927,-0.14434358363875477,-0.17678192981041363,-0.36781244944561703,-0.3080930236711813,-0.015047545874812773,0.10175096713219377,-0.14284634077808506,0.26590429009144423,0.21720935572654498,0.07506778993371797,-0.3737772474759252,-0.20606233523914771,-0.28466450218752454,-0.2840476448338002,-0.2767722158411562,0.6046533267324947,-0.008998038616424541,-0.1581922052444375,-0.36359550784739714,-0.1511358114880913,-0.21058993480356417,-0.009576735151311787,0.12353634966062013,0.10556888689305126,-0.29470342973838665,-0.22263601743185707,-0.11628976377500934,-0.06273970058262197,-0.3496693739546143,-0.011201524821883142,-0.05016631249974457,-0.19534337857127096,-0.45366079123990316,0.44111396881130555,-0.03498293776752651,0.4825653554468221,-0.006831345229737272,-0.08371314871675067,-0.05649855112051911,-0.10494327074595605,-0.46686429737242613,0.0769705151175924,-0.19541902705923891,-0.33709803357346907,-0.11892594710611083,0.06080491140849065,-0.08803105933574205,-0.01051483655974525,-0.25601324771218725,-0.12788407993076417,-0.2266942713420266,-0.20385989446655922,-0.35264095674356455,-0.34899747689528,-0.3062956654666234,-0.3608519993018039,-0.2034665102555685,-0.36288845901979777,-0.031994740799761466,-0.021616564542075452,-0.14716353241536526,-0.08753412065069663,0.3244122346464318,0.15551299559344164,-0.07774530010990716,0.3678888619834198,-0.24850090544353895,-0.2458880561744178,-0.39812741674608515,-0.5042599573529739,-0.2674253590858718,-0.014712254539532996,-0.31544211315347215,-0.06547225924195646,-0.18904186004373416,-0.11992948880436338,-0.37004146348274114,-0.20880321378901595,-0.16170456449590764,0.31658470761249313,-0.021411289284288475,0.06489268633057765,-0.36393908820266646,-0.3902061427372683,-0.1424950900442502,0.47817072728650706,-0.06747745946629402,-0.0465675620966797,-0.04608596975718608,-0.2503801834212406,-0.10783771891681997,0.006088819740485598,0.055497352685864955,0.40733446359520287,0.040709622401389034,-0.37222276695692585,-0.1533176868584163,-0.4069596503665389,-0.027613786535586583,-0.33640868609084984,-0.3490288313640279,-0.38265198115904114,-0.3214567371440388,-0.4176426450046544,-0.15715098183414705,-0.19311629219271376,-0.23131779368240654,0.1261571655396556,0.06796419371169865,0.10091097900148174,0.19071809961726657,0.23157198477041194,0.13455134452590903,0.5441631602944773,-0.18435815472478645,-0.3343465915401591,-0.08783184185494482,0.30431218189995235,0.03662241981567374,0.07303625720608306,0.47004154790904323,-0.1254873634613809,0.2889095123795091,0.00464237221028434,0.35964890455152415,0.15562332123606326,0.04283715654595043,0.039327259050825,-0.20932507835906664,0.33039692335741155,0.3714870006710908,-0.2847320239174784,-0.02521904431347826,0.3088276009203172,0.2301918724406915,0.05573431822713408,-0.062409978643909084,0.370412144459628,0.6095965650943339,0.8889910234932097,0.5749987045235829,0.12026635499062006,0.2664354267710007,0.8844523713097303,1.0,0.8473780873402723,0.01612716911472884,0.7204964348686894,-0.032707492883280474,-0.13143791176465355,0.17421239833262478,0.21014794444126522,0.2502053224864335,0.1762172520088933,0.5463702524042138,0.034516569825664936,0.09194035602030852,-0.0025041754703306455,0.16980777212706197,-0.12618174330741094,0.01776569011190412,0.08104764485136516,-0.02953758019520781,-0.18332673881700226,-0.2117269664910189,-0.045866194179655866,-0.10385857931950515,-0.22021528229572662,-0.1575504882791927,-0.042174181985284484,-0.1414132021058674,0.04535694298729446,0.03238303526261817,-0.0032725918216404276,-0.1483526678766686,-0.007886505184429671,-0.11827761776223802,-0.2291087642226974,-0.22326724070345566,-0.19461716058815295,-0.11400093958235424,-0.2361249350105751,-0.18146852988253934,-0.08796092135094856,0.40580701180796636,0.2640309738810274,-0.1005472868954836,-0.10305637219209077,-0.02795331925189544,0.4442013544448366,0.5122807171127455,0.46494587386916003,0.37282192316297785,0.030281348521943283,0.009936766820184849,0.04537553980049851,0.5421044817844493,0.556912247524185,0.629862443727254,0.5792600257500334,0.4272511158334975,0.12638374562701238,0.029619663893529477,0.6153962879708306,0.577047719837481,0.6255956434825084,-0.017534791065948397,-0.10674339897115498,0.07486845022822318,0.029129251217706167,-0.012846510788302717,-0.03383821502482814,0.032285120553905054,-0.05666605255954943,-0.15160687756419947,0.024361827763378852,-0.00734194766488073,0.00442272869393471,-0.018562811095748085,-0.11152594663217519,-0.013896241269223853,-0.0673443646146184,-0.003862128485700491,-0.09039270305152336,0.08186930484384819,0.0515968570295958,0.03270311918531045,0.08938348467911911,-0.013911560323075263,0.05814347807431617,-0.01323040881240314,-0.06269979147533795,-0.12240093742326243,0.05299037190346857,-0.07142479113647839,-0.07649521393112513,0.037202261080336294,-0.017230095613492563,0.021689857893429473,-0.05983984030525963,-0.08593508886362443,0.002371898843397202,-0.008346642313459822,-0.021214027772291536,0.011296197607034819,0.017656077071512438,-0.03065714932174713,-0.02078116310017052 +C38:4 PC,-0.00887735772767152,-0.2528002217200649,0.04998541859638166,0.21917257042223048,-0.4188898717352487,0.2089300606529872,0.39173506170464845,-0.30238669464807366,0.2036508636540399,-0.3914113096198087,-0.343751344403526,0.21587175658012833,0.06144305455671172,0.1901116625782549,0.4331916881815703,-0.20552769689060246,-0.10422980700956877,-0.3161092138644277,-0.25745816953489914,-0.0898404544825465,-0.2154957234029772,-0.34241285757417783,-0.26095937154636484,0.07999115886175012,0.17143383812858004,-0.25355945417253006,0.2279777596654492,0.23463863999510945,0.13252212132962476,-0.3712298668865946,-0.25450871644561823,-0.23582021607915646,-0.21422078578736137,-0.19484265014191662,0.6184062513697549,-0.011433359222129885,-0.08863686751574312,-0.33988984036515496,-0.26882870783892115,-0.31200620604787804,-0.02634762205239131,0.11593820123949547,0.18801957690477625,-0.2527153035363753,-0.30840691181561386,-0.24393467955780915,-0.022698814889439846,-0.44056412923672295,-0.00890104151906603,-0.16418836184432517,-0.16022943482283827,-0.4152888179559802,0.4256698122637133,-0.02416912061087941,0.5193407478608796,-0.016958745437603943,-0.006244811151221892,-0.006020354761326304,-0.09236525525667225,-0.3887278187400801,-0.014909743873285258,-0.23539869560889803,-0.4176484716916219,-0.09378350630011029,0.04410759514141818,-0.04984116043222942,-0.08556710696357685,-0.35100869658438794,-0.21180729187966726,-0.3385913669432697,-0.30275255861311745,-0.4443664247561706,-0.40488538909275334,-0.4064757562926063,-0.42632718791927043,-0.30034052256407706,-0.3268247005740173,0.00027562853462343985,-0.13076840757197747,-0.2533230824721032,-0.07055856553412176,0.28834271049317856,0.05127530056126879,-0.05447736470913705,0.38979154771400004,-0.36851528772445863,-0.16234133984975793,-0.4707853549453276,-0.5417632913894515,-0.40787132484632255,-0.048215867161904125,-0.4315636510226597,0.029980963112260194,-0.3250870525578806,-0.09017448122396823,-0.41180385884364995,-0.2556959619222135,-0.2078425848090753,0.18475587851748668,-0.07028315635450583,0.0548423178049554,-0.3562824333463165,-0.4761847055579615,-0.24242849472537054,0.45872519849503574,-0.1627704056733324,-0.03453219804035965,-0.1062318736815761,-0.3503785246960713,-0.09104045525958733,-0.02211228914230925,0.12483250312978339,0.4079120570715855,0.031017209512823548,-0.40613187788116367,-0.2293045258035717,-0.3963024408860186,0.007477809462163648,-0.34600607137891226,-0.38131478439086197,-0.39518285685628524,-0.3306536034274743,-0.4008561362368768,-0.19718176885972935,-0.20993712061193395,-0.2801200713177146,0.10625718395814761,0.06567272392171687,0.10681610732484824,0.18775829482474848,0.21276969177407162,0.15318766473952936,0.542837938762161,-0.08838099059920139,-0.2940233902843137,-0.21139046880184656,0.300711351010516,0.02326510444926115,-0.03480952990723344,0.39897841981921656,-0.1745103377008474,0.1901227431552151,-0.04911285432537043,0.27274276002756376,0.029245583920019084,0.0534737688536659,0.12379212952025735,-0.13614562711043812,0.3510381333749363,0.34426886586174316,-0.19629508629453446,0.06911007604227794,0.30181631746980847,0.2557798358073811,0.08169427433026884,0.09431840922040077,0.4533195932559319,0.5223732558793666,0.8413133603299183,0.6182643523639765,0.33577204022660984,0.39937260251750323,0.702685755757963,0.8473780873402723,1.0,0.1411291917010513,0.7275688032103285,-0.005526446066757324,-0.10585524199813232,0.22168548711749236,0.23712657622486727,0.2264868620199212,0.16145747176497122,0.591814308699337,0.2471971432541754,0.10531990423847976,0.029002040989411785,0.2748104958065655,0.02883047999185698,0.1772693000953299,0.25327173765413735,-0.06318174950586998,-0.26072173195138054,-0.31728534590996704,-0.15423792720099463,-0.2081851670793693,-0.3025644529810647,-0.2098419319747233,-0.179419154686614,-0.26143260606720303,-0.0706411326311508,-0.10797534385759137,0.07433820425928668,-0.06679310920935091,0.028908302597500643,-0.02692415662387413,-0.10937166157896136,-0.1436666694564809,-0.1623880471300938,0.018555913556279023,-0.10497197053279003,-0.10170514535828819,-0.04896187029555533,0.41224551404101056,0.32899817910903884,0.058174987039687695,0.020217703095697745,0.04219265988303517,0.4357434203428794,0.48477484903087975,0.4667057351510617,0.4401747897339541,0.18306487769255606,0.13611741194922775,0.13779652845490561,0.574034951283636,0.5328243415550412,0.5774199148532102,0.5767622039844179,0.517779092138442,0.2745306715898908,0.1479825972931754,0.5859947450081916,0.5596038088701074,0.5941750190206951,-0.055459469028190364,-0.10496557392644144,0.0408574346047775,0.04247200023664246,-0.04183827201690797,-0.06732898557910763,0.03157278281866767,-0.07264251811198973,-0.13674966832459745,0.026692857195372687,0.015650600961180882,0.0416295099330116,0.02845674232707673,-0.08902409086246686,-0.03638519536733824,-0.06374405546451181,0.03956517228650769,-0.06477890885078424,0.117435194514509,0.042533756463977716,0.03882047032588077,0.09797449991305053,-0.005881642726463073,0.052317597134426116,-0.006289808542641935,-0.06850339390325784,-0.12983724052639897,0.04349759183721063,-0.09348688797802951,-0.10571668940014882,0.009839458063716569,-0.06162667933361274,0.038095961876586086,-0.04194252360141867,-0.07458615654025436,0.015732661363874252,0.004839254596250934,-0.037650979827923065,0.019957973944739513,0.012460093305126768,-0.028307367416974153,-0.013432785590357267 +C38:2 PC,-0.04893620595824303,0.1283991139615766,0.12191057743158021,-0.12545003204197674,0.12786889309254854,0.06480843864718819,-0.21562504714327677,0.0940824598262218,0.2946154670763937,0.14472132515361938,0.1781732406134682,0.28783907564832123,0.03902673860963225,-0.0018203354523786577,0.08835662950857955,0.026569674437633296,0.07850230249743398,0.07357485892010357,-0.3198359889538603,0.1522046508696279,-0.027731825287304366,0.17173298886059687,0.2944262326320373,0.3020720746595725,0.019556889785975473,-0.2747200937791057,-0.17302474917336014,-0.0889246085637082,0.00077012597767498,0.010196770530514343,-0.15577837005169265,0.1841227972402991,0.2800386129980242,0.1728131226350679,-0.02956387787634374,-0.027451167039225344,0.17352754042020066,0.055833728745996875,-0.21846577560477937,-0.2466792560278473,-0.15937099959559908,-0.16892164340909008,0.2795251743623986,0.26430313348543893,-0.2686686866902741,-0.16735965147761797,0.05785236407608481,-0.27352217421458724,-0.11504629583468264,-0.33923233945079845,-0.06928871536434997,-0.06273636788070798,-0.1505953608893529,-0.018375165905839496,-0.061176206654669774,0.06620201786421076,0.08858871687960418,0.013534480764697165,-0.03164314333355212,0.07239414600287293,-0.27058373750721443,-0.16283601351950563,-0.19728512514279162,0.015203384158983113,0.08650108458496697,0.10128075860173104,-0.249320025621322,-0.2297270949720226,-0.20756825070350304,-0.3005882264691992,-0.2503085983583468,-0.22705855812166958,-0.16121288515281254,-0.2211661439955043,-0.18638223143042215,-0.1704361408814958,0.06580266686145747,0.11280897980435221,-0.21823123294281552,-0.24408696997444893,0.11018306092525555,-0.11023714556411165,-0.04074337493214709,0.07506302198828933,-0.08684672038726467,-0.29167598110462956,0.12016439746569088,-0.16745195877053584,-0.12509737801439844,-0.3125418873585928,-0.11806951614738981,-0.27081958073526335,0.3004059640314773,-0.3005540144005764,0.05504345540584336,-0.17718812423608588,-0.22540507894073483,-0.14968262937865118,-0.2111243447753775,0.006071353352718369,-0.07935697706185069,-0.06487744525289937,-0.24141698537663672,-0.31517257355196515,-0.07014059543467978,-0.32994034119827587,-0.0464438357018948,-0.16919779026622248,-0.20022280391313257,-0.09489682557645054,-0.05988535983702103,0.13930629706172012,-0.0485666418613793,0.04701582345225897,-0.19152999755286937,0.01649404814496476,0.08600371426201908,0.06477626211030516,-0.18162730187644877,-0.030518266342169083,0.05523647788061885,0.014372537919673124,0.03052814696361957,0.07770181671488599,0.023045858428644032,-0.06141366750824554,-0.10465929228249193,-0.08464642891440198,-0.07407041481495596,-0.07748336581592519,-0.08783206768296171,-0.06522160807541577,0.0020604895523475054,0.02808041410204052,0.1747836056260709,-0.30978566097545635,-0.07810914531427714,-0.13818980705636355,-0.14401488243906901,-0.1424679509034751,-0.03789088660417976,-0.1529671082020807,-0.08153665656059216,-0.1154800366626155,-0.30581259066313404,0.030325391948859665,0.12652120253947982,0.2032264948869213,-0.07428909527166971,-0.19409071475269216,0.22369518293246626,0.353361296165867,0.2877917169373857,0.06809970597143013,0.11273352259661434,0.41364042558444253,0.4532495222835012,-0.0819430282839028,-0.008555883001707112,0.2554390856663561,0.5936559655758099,0.4975486624163307,0.022431418935457297,0.01612716911472884,0.1411291917010513,1.0,0.022023400307206606,0.38057572779864,0.32756777294423345,0.4191374634128404,0.1133462293995309,0.21338769520439058,0.11792768850067382,0.31778631776111266,0.5269710019283484,0.6322249849558543,0.40231164719883883,0.01823068141746645,0.22462051446738887,0.24127506651625494,0.24217686424760235,-0.042664381488968776,-0.1380965216103416,-0.14981932486588434,-0.15425833665272848,-0.1801123252714651,-0.09315020576413897,-0.043689309062159995,-0.18933213140173408,-0.1829713253616524,-0.16809070311345914,-0.11703815171389376,-0.03568254370746483,0.07100918894573956,0.06390737580714352,-0.038035413011569805,0.04749259790792073,0.13594066516220019,0.06429972616903079,-0.0028080875373932084,0.15148315457487907,0.1254959119708762,0.09134336919776606,-0.09407814554197866,-0.04776351839444208,0.0989405939245166,0.21233109660640784,0.1516480216892434,-0.05871216496127681,-0.12741939265933158,-0.07470672861318539,-0.005954940288482568,0.1978252232479862,0.2696360315704052,0.2052842004056254,-0.06535458033486205,-0.09107722711671297,-0.11446849556658051,-0.03973418917196495,0.10527935728136507,0.3332537354195081,0.3289588578018153,-0.0664022527799242,-0.033287931933849664,-0.05391924654602828,-0.013873405737396934,-0.042089705434795135,0.011183349823079744,-0.017699550541892595,0.02520516761310146,-0.014989880920563536,-0.04157610197359683,-0.007242205396407207,0.006496274409512328,0.039243117977609016,0.011829578361323511,-0.007155892746271371,0.001088010197057046,0.013658713260115531,-0.03326344451638495,0.07156731344086088,0.04309660524952765,0.05923768852822637,0.007725161842299746,0.005211103566943926,-0.005432922051796571,0.03174517395166278,0.04444449657242944,0.024920204503239635,-0.018152620159844354,0.009005226450266557,-0.00860756663461125,-0.009266872795566943,-0.024207368787451437,-0.04287162509776386,0.0021814534628458895,-0.021817925041609256,0.03952965089864757,0.04226454955976134,0.02930442100832352,0.05969812087773722,-0.06637498781776346,0.040715993134231715,0.03748811745443442,-0.01128181424689043,0.024748895365173346,-0.028226749531991495 +C40:6 PC,-0.002301351670378087,-0.3173931671508169,0.025724231364831967,0.27073872761408063,-0.4271126228953649,0.14097890024479617,0.4036681940709457,-0.3257622237834929,0.1889942973094506,-0.39579406574119824,-0.34515573961009455,0.17719110562668647,0.010395801117758549,0.21421061638262676,0.3889101926936904,-0.2275821850853804,-0.17421738811062337,-0.34133286334795077,-0.21208060248963354,-0.10145902027970721,-0.19124819792642136,-0.3551900718696133,-0.30537083077277566,0.06702549107267401,0.15133362330473565,-0.20253357552980802,0.263967750658987,0.24799157737661592,0.08505233814200355,-0.37449080199017815,-0.24584873775258081,-0.23480087467491983,-0.2715073780236012,-0.21635563562664129,0.6039373020543523,0.015167797810376134,-0.14762325596889977,-0.3318098120200919,-0.2634738903004249,-0.22256050027960522,-0.06130634561470867,0.1281501682165445,0.18931955195608793,-0.3162386709436001,-0.27053169338879657,-0.23933064428841155,0.007577831802817766,-0.3929328438114197,-0.04796959718824928,-0.09897589660739038,-0.1618062150678125,-0.4101002411938393,0.4123085504696933,0.002375073439479639,0.459539666209178,-0.012604339004754014,-0.00928822062395341,-0.04644874035028899,-0.12069899367142146,-0.39926792079822504,0.06496259841124889,-0.16724323348866643,-0.3466251645747573,-0.11540401771758821,0.006273920910398889,-0.06138090265273949,-0.015929791356509217,-0.2946315341532975,-0.1623622196381207,-0.2464085817140815,-0.2178207002017868,-0.37545435828817925,-0.346724013229071,-0.3256587450898438,-0.36755845935449505,-0.23931689859376232,-0.33947657605102094,-0.039394004128327206,-0.04556127932381299,-0.21771528223906889,-0.09427775391482275,0.28486727608794143,0.09297947698065225,-0.027715017940484962,0.33959449245288414,-0.3055429638332426,-0.24396030092030008,-0.4282401349394595,-0.48697318579639653,-0.34431280005998166,-0.036551665217628315,-0.3758533095272008,-0.02072435341420249,-0.27827627903447616,-0.15505677977982837,-0.32913501288617414,-0.19871088730834677,-0.1773896677337236,0.23440806498197872,-0.1075854348247236,0.1363989901110994,-0.35353391613553614,-0.4348780154138911,-0.20764257329094704,0.45053571356863653,-0.0957844740565239,0.024573644986235894,-0.08695960750207646,-0.2903748171420567,-0.05927512863630532,0.03286528980360358,0.10464231824969839,0.3789005473237075,0.0023489023015244924,-0.33515913183154417,-0.21257459852432922,-0.4085439709473982,-0.030944943389515263,-0.29641422978373083,-0.3425711979247715,-0.3560134551620352,-0.31012801439412596,-0.34669319620408384,-0.1623618183401355,-0.20907080846178577,-0.18555335784713126,0.13492744096786846,0.12927370249464876,0.16755999687571504,0.2682645024514383,0.2759493726289946,0.1943153558570911,0.514929336786752,-0.12250843827504668,-0.3129046108242832,-0.16338193010679333,0.28643084318497064,0.06303153550742463,0.03988134477079137,0.41384916198241195,-0.16537268420027043,0.24603860796728563,-0.047564112123971804,0.3384910444108721,0.07958587485900281,0.05418798623054638,0.07731201317253047,-0.11389685776036437,0.286372192072007,0.33468727011632204,-0.23992680426466811,0.01627384180419183,0.23527686231265316,0.18437275649238913,-0.03843225255943617,-0.07942633595406927,0.33117971454529355,0.48176889399772566,0.6851770110975645,0.4114152322343287,0.0852863664692722,0.28867484840442215,0.6491225565142031,0.7204964348686894,0.7275688032103285,0.022023400307206606,1.0,-0.1053688997613502,-0.14722147185320122,0.14732926562592635,0.18959267289423554,0.19650129159603694,0.13778719283925978,0.421187822793751,0.013560740401163424,0.005225529647845381,-0.03839023583837646,0.2197524579150227,-0.05766051441899477,0.05236338829039059,0.16775835688424798,-0.07658518827022323,-0.23882421362546197,-0.2936213254137965,-0.12699893495793377,-0.1791964471016614,-0.2901108687352131,-0.18707938878014702,-0.1541667452880032,-0.22783876334893804,-0.06486342385257822,-0.10208208744141128,0.09175070957219005,-0.017142950942175335,0.05225153621290957,-0.009777774462972224,-0.07434385199296586,-0.09189227788097837,-0.08623663212786821,0.015767179302076963,-0.09486169771754088,-0.06624940942592746,-0.007491867263889121,0.4132813107416199,0.31735684431504413,0.0016466827535950503,-0.007627026158040282,0.045558311886236935,0.4107522425919948,0.4630870033525169,0.42906254533907373,0.39168949182598584,0.09114375665526198,0.09103610779132724,0.1141622704331404,0.5080078619493222,0.5231344843298062,0.5474285467761503,0.5611858697166525,0.46636023667008397,0.17878480309031525,0.10285821430529131,0.5353249407434781,0.5080097508113137,0.5697301995710251,0.0036156583591813473,-0.05874721382397528,0.046985464026531205,0.11027951152046389,-0.011461062924694322,-0.053787560282401434,0.019447453069606054,-0.08661951270805816,-0.11739960431532563,0.07334181200983766,0.06109852698965136,0.06303093634846008,0.02295938243817007,-0.062178903882318254,-0.015949487579604037,-0.03785021697017154,0.06500959590703513,-0.015359040002944559,0.04649806614582382,0.020614982556597793,0.03394727821849097,0.07325502647850808,-0.03582212239491144,0.023618763071108925,-0.0009681936372563926,-0.03346351034186588,-0.08214270939539403,0.04297000979600416,-0.04815849495014855,-0.04148375275246764,0.022823717385927634,-0.05551112966242926,0.04445969563560778,-0.03135852125167209,-0.06370299736603212,-0.029629266771966943,0.005966015030008581,0.009111374609393283,-0.010335501347244846,0.03207484874303406,-0.015015484930324303,-0.03515789086597697 +C14:0 SM,-0.08970917185954826,0.14226969973498213,-0.052548948565090625,-0.07405617608900626,0.08330451430494702,0.008644276032588242,-0.15818612952222352,0.05789379676853101,0.06606104360357212,0.06300204783759046,0.04862125811729072,0.06084967208115572,-0.10472087518736171,-0.10927009055150749,-0.039337022046861986,0.08621219268898392,0.030026245418932458,0.04593079334991956,-0.13955324321956775,0.019660954903987372,0.040920518093553696,0.1460131958241131,0.17255541991629614,0.11592575225925442,-0.04033550094912583,-0.17034076787164357,-0.1718413154897985,-0.11891765034756616,-0.001280554153231086,0.12154164319408255,-0.007857157887520517,0.06884438557103162,0.17184728201881538,0.14352195076062904,-0.11188890592111064,-0.05886993902883074,0.11809071370062818,0.09270801379644483,-0.04772847783243113,-0.12619360276332464,-0.07655799974865438,-0.1186204757505464,0.05739572594493972,0.16647264997016864,-0.10837036927488491,-0.04554277086430972,-0.008252018225827622,-0.08089457749278652,-0.07048820527562857,-0.19320520676718422,-0.019272163724403643,0.027733763873650407,-0.13979245864184855,-0.026189294433995258,-0.11443978013102186,0.008791413199378774,0.02859728611807803,0.017090971674946567,-0.03925989043619436,0.022250410128837387,-0.17232154299717103,-0.13650316549350955,-0.07327538065060243,-0.04880943090033023,-0.04334461944534043,0.04219992683524911,-0.18351492664195876,-0.13319909858189857,-0.039009523741018806,-0.15788526127550523,-0.13032509324894678,-0.0832736142787913,-0.05002802446719055,-0.09321125740525427,-0.07131997493201073,-0.040330761094849336,0.007448313343069856,0.02962623294882837,-0.15942844620724222,-0.14838831607617245,0.04917303050806548,-0.13226816444247078,-0.08121846890625199,0.0492888609888634,-0.11160957606442339,-0.14153254720195435,0.10000835003462946,-0.10525955697573412,-0.07404212310317064,-0.1427849950570748,-0.13893637178772242,-0.10085526090201434,0.08599963057433406,-0.13195511353949108,0.027471767509356926,-0.08628705094167245,-0.17234447724066554,-0.07489589615198948,-0.1341174731249301,-0.09697637101580105,-0.0699221021333181,0.00836104556512206,-0.07667151789057915,-0.1610296911017169,-0.10125522108921664,-0.18908960262604727,0.06725041819017258,-0.1540952345016644,-0.08950295120642293,-0.037117802602517215,-0.1814071215770139,-0.04147453605283235,0.027871491697696576,-0.08752712957734325,-0.10006046773125879,0.09488306405967312,0.029653062212015534,0.06954341548055334,-0.1048904018631424,-0.02503541733008003,0.02660635211049899,-0.009983016861096634,0.053261618625716475,0.04281024413163826,-0.005718303112458891,0.008172503753912366,-0.09020125870187228,-0.07551515911214117,-0.05295359479965243,-0.07956827037076507,-0.08239659696988996,-0.08061795610413515,-0.03063449306854062,0.012480545372976576,0.13786944594005499,-0.18102972155169908,-0.013202807414746215,0.041051701807840575,0.03998570014925832,-0.0663292140914431,0.08504934353939086,0.05990607673802269,0.055105531606295326,0.07715420740526982,-0.11047928885326332,0.0916834502195031,0.10766496523608597,0.2248640822403264,-0.04198970896215286,-0.0378975699697518,0.31178135561129394,0.3303226425834895,0.30075031467805735,0.18843416895577392,0.21816041500327465,0.39363145534592,0.3638634785617782,0.04489199628833215,-0.018005225540126815,0.1354182371645893,0.3158855999016381,0.3187313378908693,-0.04254107151236458,-0.032707492883280474,-0.005526446066757324,0.38057572779864,-0.1053688997613502,1.0,0.5819885879181199,0.6747328623194927,0.04548232472865879,0.26303133877625673,0.28624667636666495,0.19123986273413485,0.28222383430412257,0.5200958283004327,0.4220030869290566,-0.03573610642975989,0.09441937165483394,0.0668374400101355,0.1263345078504822,0.028036593621175613,0.04140653504363147,0.09159108004135882,0.02456166111255411,0.014839507069985311,0.05217891750359573,0.12469749759349362,0.030559871993072526,0.015332103762104603,0.03476634793692322,0.05729332731271226,0.036237003261564246,0.11109797723400337,0.08673791236090077,0.06880518089948676,0.12000233654997816,0.16525156143622904,0.09304375787494654,0.06399815467983938,0.16051992145348734,0.13179553652682827,0.04194276221781499,-0.017687367204228994,-0.011671987329690965,0.07717569397992173,0.1509319286968833,0.09137810750421169,-0.053012320472425135,-0.07933102889364216,-0.1007533324367305,-0.047000739539057354,0.04503006385861532,0.1115437419682351,0.051987305447661745,-0.09033645909123653,-0.10212989654506202,-0.12103427511030065,-0.10816011307538007,-0.07610391861266688,0.031626507629118075,0.09601083314701106,-0.1391278582635013,-0.1144301620773079,-0.12182458005882736,-0.00986232046807662,-0.019087930954860197,0.02966330062459133,-0.04380265118731309,0.05850360989872305,0.02795436425294757,-0.0399360743732426,0.058489050494694717,0.016245537658450028,0.007020982383799903,-0.03008325551981507,-0.053901342213041444,-0.05398484817909434,0.01421484181273549,-0.020884470236804193,0.06419848264965378,-0.03456077179707868,0.03463700905522165,-0.025940764350169503,0.07753576546002772,-0.035404838870545734,-0.04476924229865902,0.11601343413317095,0.10242841710923574,-0.06948822441171004,-0.05259204967869736,0.06939374700059893,0.07665121519644848,0.005786529614235845,-0.0880681620418454,0.03692987107505885,0.0011013350996995012,0.007649787001327568,-0.006702615262705975,-0.002482962724868828,0.05541543470358547,0.014991449865109125,0.01599407158486687,-0.05031282528905165,0.029436755328866887,0.01746689166079086,-0.002821930674922791 +C16:1 SM,-0.03669949652043291,0.187934734136292,-0.05121604770103571,-0.13198139628733108,0.21798814098024347,-0.04249987837935579,-0.23283030709849176,0.1420993768212062,0.022566639135466585,0.17074845130832647,0.22398631442971836,0.025932719021232547,-0.11253079302691948,-0.1268361664269394,-0.08905705166535346,0.15658557676485124,0.04166964536397221,0.10463580240187129,-0.06671177919553165,0.07098496450147282,0.04432799814600656,0.18175160844019655,0.22201614164144762,0.06013403109777012,-0.044533971326863854,-0.03093300245085343,-0.21221595317314834,-0.1508058177007895,-0.016693349682702977,0.23520311068004957,0.009276725320190644,0.12885079915797418,0.22188510370877443,0.1415602945769958,-0.24933612604262229,-0.01638880360650033,0.11832300453533884,0.15165258093917175,0.037187148515971616,-0.020617160023393054,-0.09190505143297852,-0.1617150653973818,-0.002484816014434142,0.22015630013743728,-0.02255892705867078,0.07332372912245218,-0.012227014925289431,0.0594095894470253,-0.05166530146755038,-0.1107390699794371,0.054194398671001044,0.18586739985150996,-0.22376524181590476,0.04159260323888207,-0.21941641423545763,0.06735954993572926,0.091676632751542,0.06840292015850807,-0.0766630973660867,0.0645945564002711,-0.18674930307144813,-0.0950711082893924,-0.0024032198901201072,-0.07128849553788369,-0.01262880366152543,0.09777603109900722,-0.15475655332720553,-0.04613349698714029,0.03625831213813471,-0.10040993949208371,-0.10206845609977917,0.014333470860115868,0.03709207750950682,-0.030309290661131475,-0.00041102592054217794,-0.013163016560614282,0.09174982828551771,0.1037104674511589,-0.06230545229574468,-0.06603223114182706,0.044240062700791796,-0.22519203536915738,-0.0700742804983184,0.061060435352531105,-0.2741746219480587,-0.04251835695559701,0.09506146868238091,0.050879433127337566,0.06200795197641896,-0.017422986918097426,-0.0909562961228542,0.020994824521391273,0.09434784444465147,-0.06999451080185828,0.09941247000534369,-0.02457603646450245,-0.1469158617029693,-0.015068558749848032,-0.18185882533999223,-0.02456725532000392,-0.07202105494967431,0.1917669730695282,0.08978767836295512,-0.08362377795357007,-0.18405637260175134,-0.1548613684275913,0.06213906219405995,-0.1483480453749753,-0.028139276930518296,-0.06041514377147015,-0.09470495291018068,-0.07618499697328714,-0.11191598652608267,-0.07831349944789845,-0.015353099037812536,0.15856419513465303,0.13433693480970418,0.05876921097096356,-0.02559220888948599,0.08715167994565559,0.14958293391654465,0.06465511869529421,0.16280142961047958,0.026593906995555135,0.02471456796286646,0.023182998080099774,-0.13135273928247834,-0.11569533641451561,-0.0738932100454433,-0.08267767992560904,-0.04402607552551297,-0.06597289693499318,-0.13235470117003315,-0.021276899461653776,0.18280253861362833,-0.12126938595582419,-0.1001425872598986,-0.02309230743570818,0.08835685005555398,-0.09525293306846705,0.20195392437190143,0.028699623942012004,0.11906951265350595,0.006179171053097615,-0.02900348441456738,0.004000860937489803,0.022170012721665532,0.24079150221752005,-0.09371208511154533,-0.14445122101662294,0.24454707336200673,0.29792050261568886,0.11856824753883181,0.031506991560331675,0.11844634540860294,0.3425494033737634,0.28268834882138766,-0.1062709572816157,-0.12660959640073827,0.08400083447332178,0.30701246059952364,0.2677444913466263,-0.08067393021399866,-0.13143791176465355,-0.10585524199813232,0.32756777294423345,-0.14722147185320122,0.5819885879181199,1.0,0.41750667474211794,-0.0184162233374422,0.22676985575783182,0.01915952219330657,0.11943793587648578,0.2325857189153814,0.2246613107204957,0.13893800649267485,-0.1420380561364638,0.12412219593075788,0.060273679496630775,0.07427061418682375,0.1287152631865069,0.1831166729973877,0.19344151879123367,0.15283199889586538,0.1549175802215274,0.22274927116039836,0.2061027417203068,0.16650933863219217,0.17606451655834068,0.14459727361814026,0.21847383096846837,-0.13016961980624395,-0.02670484013037499,-0.008367576770339643,-0.08450049559824305,-0.024545876444654828,0.044654710060807914,0.06552623104380839,-0.09775269214616822,0.036863449820909014,0.052909400714725593,0.04202715858446573,-0.22762415488809062,-0.2063125348830344,-0.041744188717945885,0.03239275282872251,0.02337993608413728,-0.24215468815290261,-0.27627061306270106,-0.270615900911711,-0.20089343334524531,-0.04375025412070052,-0.0020992440300648223,-0.029863175890605147,-0.2531085990617804,-0.265845475608987,-0.305675618169414,-0.2822652157302277,-0.20134114748741472,-0.047625189236785555,-0.03017140122376651,-0.3118738318596157,-0.2839297541425804,-0.28019281646071315,0.0027781870154359044,0.02361359079043302,0.006923881898858336,-0.005588539570358119,0.027346389840523275,0.011536391682441659,-0.028890053696614428,0.09144239933838258,0.06366517123564941,-0.033481532572644725,-0.036573821903962245,-0.05992763455709925,-0.051205893741569725,0.06280960491071014,-0.028724013525715762,0.0927182005698434,-0.06859643668884419,0.07156379768522365,-0.09229973477950681,0.006340496701752237,-0.027035877018242584,-0.055098643897970305,0.04531221875123396,-0.020573591851353247,-0.04897440549809144,-0.001745984154530267,0.055545483353050186,-0.03436135536632034,-0.0040254235499831885,0.0023820029101117557,-0.01643823858295521,-0.02700209002116269,0.002803546873117258,0.040409412126665406,0.051849649728679205,0.041569668680922905,-0.007416782710504611,-0.037769414123755556,-0.07139000016488915,-0.03331568828168468,0.03492485185155517,-0.0035756599773598898 +C16:0 SM,-0.13204158457598375,-0.05837513376742624,0.03489864048871207,0.08266340431434496,-0.1644948454757312,0.0996722773024549,-0.0035539933296745846,-0.1321964024304493,0.22137004347023387,-0.1443696096546607,-0.15428209739353368,0.20940547714625934,-0.05789771009343762,-0.021943717513082963,0.15688099383777135,-0.05831216716714389,-0.06661025166854768,-0.1213026889042927,-0.34602657788817415,-0.018102079736936946,-0.019723077137086698,0.0037023035818988946,0.08187831020504323,0.19151584106515998,-0.004869820371837835,-0.30485758546166897,0.03319487048716941,0.007881662854669992,0.024090830836900442,-0.1483798174512962,-0.17594848798739882,-0.045484290518518544,0.04373277675878802,0.03923376092727677,0.22516755932078192,-0.021043127737613885,0.017240303052208073,-0.15451056863687518,-0.29715163837823194,-0.2988839760809794,-0.08839452505011579,-0.03874032420118076,0.21278866763484314,0.001520120041753495,-0.2800751363743497,-0.24080647890733858,-0.036941799892779605,-0.35937156111701185,-0.1368727045270409,-0.30541708926462774,-0.14828497403610122,-0.17361625396629674,0.07292346012209114,-0.058635437547722956,0.15230644250073705,-0.01664781454264468,0.05044676893962029,-0.08551491551271297,-0.10720081897377005,-0.14444274445357622,-0.18675976995497748,-0.24883718979755862,-0.3294100297520982,-0.12813440969477446,-0.021549577320110626,-0.0107335599541169,-0.2071580629411182,-0.3395462682584609,-0.19415497583238597,-0.34619579008735823,-0.29097043047311777,-0.3493772528653495,-0.2904684068357378,-0.3326184440634529,-0.3192659836683482,-0.2563534343255359,-0.1475591575767452,0.05651688267352953,-0.20412144086859252,-0.336233579612912,0.016421530386425645,0.014290257243589732,-0.018824334990663952,0.09018927953252134,0.0755419742300397,-0.3472949497986649,0.0013887887261414093,-0.36362890924010927,-0.35016811135719816,-0.3836945615708125,-0.19590751997372735,-0.37957449628575113,0.14536899841237014,-0.3428948756154178,-0.07843719687560269,-0.32381118439931383,-0.3333328543998606,-0.16688525299817547,-0.022870795079078066,-0.06326404468792858,-0.05357737745977498,-0.18058505916266224,-0.3391352375620166,-0.325946681447352,0.15061919259447562,-0.3064211434160817,0.008820846505586068,-0.16646323616605935,-0.2881735458817271,-0.09624383691033012,-0.1882912699635478,0.04067308262996044,0.19703523819605803,-0.0005829466186699564,-0.33898588724736184,-0.10620485723193335,-0.10308565149421774,0.04076864718174302,-0.3315483076891662,-0.14587514181834124,-0.06309104360363599,-0.15185253899504997,-0.05992893325563343,-0.022744533273564165,-0.09948985944366132,-0.023565066847694143,0.04222166190741146,0.02710158035302414,0.0842423941640498,0.11824756878565923,0.10792945280433419,0.06050698500343821,0.24231115177547993,-0.04753139062870578,-0.04824929417431708,-0.3354023760044421,0.06769590547481427,-0.06835703833610972,-0.054040546559345363,0.03378025272653551,-0.16049713568533067,0.10932739385287538,-0.1459958218235348,0.20738662138803343,-0.21777069643295888,0.16579971300181975,0.13507386954806397,0.2681454509520152,0.10924701463115535,0.12120767504043199,0.04796780889309786,0.29747240701378974,0.5252373398140314,0.08671116731188867,0.04129141827761267,0.24875966652693257,0.5876478560977376,0.1922425277306597,0.2056820662125611,0.22279047097584329,0.309064752898409,0.5989506285745076,0.184981368266462,0.17421239833262478,0.22168548711749236,0.4191374634128404,0.14732926562592635,0.6747328623194927,0.41750667474211794,1.0,0.20518289172317014,0.378420221675968,0.3934678199805692,0.23145667826391508,0.26018549265115004,0.5652840332698096,0.5213127253146255,0.139682634600607,0.09175205707639673,0.05469388865437949,0.3025892870714552,-0.11679950920966703,-0.26748360064232796,-0.18445953377289603,-0.2161711209722451,-0.2862655006970374,-0.25548009505467273,-0.009123009269340896,-0.19793255742655677,-0.2670286668104782,-0.1916565578902463,-0.14237361434728868,0.09849083058189041,0.24994910840029938,0.2761515059026884,0.05017120689727481,0.12884746717470677,0.313790045438163,0.2797277376035846,0.06457300780841552,0.22627630116127354,0.32667903597474873,0.29371685804646924,0.1720967141731237,0.11370961571876617,0.10253215375006176,0.31515812920205827,0.3715160901914306,0.1741988024632438,0.166776679719031,0.1450473721255139,0.12401456517438647,0.13869415397057855,0.3778588929453255,0.35102059194033247,0.1634910066867441,0.1616572464346051,0.16613708271319919,0.13936736913649397,0.17398383061071368,0.19319237492946217,0.34904080614195043,0.127427101926333,0.11541937670651456,0.16634992439411234,-0.011394509186241254,-0.07974878892678013,0.018894924903344778,0.001485113502669178,0.009917520300656985,-0.022037260134070796,-0.014869156509100959,-0.045647115738917284,-0.07247236438421255,0.041113308844016726,0.019535379861537014,-0.004506657495254254,-0.012961237127886173,-0.04555464682302695,-0.04886110938965913,-0.0010636619904147136,0.01552225940123122,-0.013554851598434519,0.0036755130461154197,0.0033154463796023527,-0.037093860060592454,-0.012552828000664982,0.0162885893376928,0.03663768723118722,-0.03422706838131118,-0.042451239385810344,-0.006189531464363117,0.050611302931186375,0.01968745911011189,-0.05758084741499532,0.011576244195753883,-0.034824145632224336,-0.0008440785662690643,-0.023859338154651064,-0.07154813268950987,0.005194182859393112,-0.016561262465278385,0.017218754116750407,0.0022566595534764936,0.0003307162189674725,0.0206734633192106,-0.019495822211873775 +C18:2 SM,0.028864936879502708,-0.16786096224026403,0.10365393937279545,0.09955402403287042,-0.23731768826362803,0.12436347904256276,0.07032342615986582,-0.13928399886503534,0.2869665479670629,-0.22185008468535813,-0.20967395664933286,0.30613454307646776,0.07416482439592699,0.1382379227019288,0.2951762548311935,-0.13508648351814556,-0.08531920258512399,-0.15066270838896254,-0.3188983334782669,0.024819937387730074,-0.1595868010231264,-0.12960883641149165,-0.07174909392120755,0.18495048843365994,0.10895687758148628,-0.27504583467721877,0.16347082525963197,0.08379929372564093,0.030509421682966154,-0.24371821003054495,-0.22864801315601324,-0.017670697991166214,-0.07985291545707862,-0.11584659864133458,0.35096425698711103,-0.034354077334143,-0.03657269970244521,-0.19413059338726954,-0.28444043029539806,-0.20286978025157712,-0.05808602375478812,0.01410791109996641,0.2707645383323087,-0.09039802665897582,-0.24395409335008067,-0.251049666757033,0.0499526266254185,-0.347243938904385,-0.05365141050537655,-0.25048319831283,-0.15264442202871906,-0.2275832981342648,0.1773708326303602,-0.020273585935463103,0.2873565412120354,0.009896173820186458,-0.011772366164077815,-0.008224587560656933,-0.07935846318397818,-0.15007600166177787,-0.09903431196135817,-0.22560431614834817,-0.36706874376508775,-0.008992826887670061,0.026261035453444166,0.004577099851888111,-0.11205746960471837,-0.2929149594495776,-0.1992535512065445,-0.32306040413362164,-0.28558475050075804,-0.37903566593085103,-0.33317775641332437,-0.34327251744181575,-0.3270940330691003,-0.2820661735326641,-0.12180303727710554,0.03638194968752407,-0.10550813907538541,-0.25797472576315755,0.013446347036495051,0.10501504352923059,0.04442115377125992,0.04627471089830077,0.2505788524959877,-0.30527348660627657,-0.009460491859179224,-0.3350271237915352,-0.34573122450844773,-0.3347901799592777,-0.08589746720375949,-0.35906870914486677,0.14480305966406923,-0.3258183432046681,-0.12742270758363278,-0.2995709913009524,-0.2524789227881999,-0.1285776641170898,0.06090084424293212,-0.050854190856902334,-0.038621178416326916,-0.1800562062526369,-0.3402023016188908,-0.30354599768640034,0.24630257088525462,-0.2685491634433715,-0.09537660593247727,-0.08028183940245998,-0.2662421894364537,-0.057569839466099004,0.004389080541257741,0.13242307019018815,0.20039643755331735,0.23217514461613428,-0.2991302544467164,-0.22497410794876319,-0.13895430060355243,-0.00018610701324698654,-0.3144975582388636,-0.21200387529760675,-0.1662614095036336,-0.1553170661271486,-0.1328699967869095,-0.00997403454180413,-0.09813493533202271,-0.04700314970948206,0.1452273572487575,0.11128675499820767,0.14310714216788173,0.14061694197893798,0.11481771098375626,0.09088195521477391,0.2889938707507093,0.008637014301968077,-0.10324607932500632,-0.24695257855340016,0.172953832995687,0.036563566665527056,-0.039536480271363125,0.06688808209681923,-0.14247998701590683,0.0015926876897270235,-0.07592536254816198,0.07037322684468303,-0.13831582451164148,0.2208781206801123,0.18573832480547733,0.2071461462789297,0.25532952502695755,0.13824625909391305,0.025341228467099453,0.2172175933682593,0.27771631054666535,0.19944797172398787,0.15170567075717137,0.14140032387089155,0.35024319425217953,0.20547962237148856,0.24213314081249956,0.21893202053190286,0.1968550605215307,0.20910755423622399,0.22693408133103685,0.21014794444126522,0.23712657622486727,0.1133462293995309,0.18959267289423554,0.04548232472865879,-0.0184162233374422,0.20518289172317014,1.0,0.1912982420220854,0.22188875313175152,0.21125086591372758,0.1697996288947028,0.14788561151496174,0.10583997783504014,0.15474422959626466,0.16616393506135257,0.13437424278631416,0.24874783116615168,-0.027355039517315168,-0.26746736204638377,-0.2520730438735811,-0.22778017121417676,-0.30207549158970226,-0.2717915965865453,-0.11330394381625623,-0.2689961012920187,-0.31429082941738995,-0.24203918637949606,-0.2021259512889911,0.22035188141982107,0.25199744663130147,0.30607093435160715,0.12089457358083994,0.1365946644415255,0.21537254755627133,0.20905631738620797,0.11417987451816403,0.1375637563287195,0.17745435687970254,0.21747721675286402,0.18083962682278454,0.14818571732438068,0.07020907156954156,0.1272679404975896,0.1904770394898129,0.16434084353130254,0.1750341405226146,0.15640525668278846,0.1017102799145075,0.041613521489135705,0.12164996447905237,0.2080853771278555,0.21829901633958518,0.1837760993197495,0.1788410267828866,0.13556592870019132,0.15214173405496062,0.0798294544159522,0.16300825309121594,0.14995419723336065,0.13980941409138706,0.1238269601816162,-0.026262348896931683,-0.07208885241188069,-0.000663253962880639,0.05023890109297619,0.019730529825882262,-0.02071901155466064,-0.04392762397853977,-0.13734820151985094,-0.009790946256468237,0.0837359950376318,0.04706764349059255,0.05897061544237211,-0.02238256145685626,-0.0064910635125236295,-0.06202671306019514,0.011613077886573597,0.07279153519618711,0.01978995969398905,0.049280754464682185,-0.028954571505578577,-0.02591833557459559,0.024457696417960816,-0.048810016061556535,-0.032105570527304804,-0.07072676929920267,-0.07438640482941458,-0.12003875248603339,-0.02093959692149627,-0.07487221620537313,-0.08234034864207644,0.06278414571831692,0.023615580030635734,0.035981383968287185,0.0023763566582909266,-0.04365865423729351,0.00347024217984585,-0.06460008950712146,-0.02143983997594826,0.0422862277375587,0.04606550753128417,-0.013463962853518535,-0.028322034016582575 +C18:1 SM,-0.005851069342120667,-0.09936326821877446,0.06018658189084831,0.08011831354015159,-0.1723588895572514,0.18262223691049012,0.025362580817861368,-0.05727474891238563,0.18638971898211817,-0.18632142286912515,-0.12556400273679383,0.16898746521996053,0.12093459888073035,0.11892586869592361,0.1910290953537481,-0.03601047176872039,-0.08595135925656942,-0.10958444441466507,-0.24796494929202356,0.02231906153714046,-0.10388874881320351,-0.10339561564361699,-0.0633354104497843,0.11154180027564224,0.058830716164137986,-0.269964571690267,0.09589668760424007,0.11062724835979623,-0.03745742932542424,-0.10546356374227578,-0.14561191252382424,-0.007623948848883494,-0.08630736812315137,-0.12296738834831604,0.2658703513217356,-0.012365571523079075,0.030888464230528774,-0.08408235932204085,-0.2195305285508472,-0.226992364721216,-0.06327134781851125,-0.047993762076071665,0.16673628100733806,-0.07168137524139036,-0.2398060930981351,-0.2009772381468216,-0.055183689599062107,-0.2993061803702259,-0.018861996739985384,-0.2202568725165735,-0.10026571119681524,-0.15324286222307767,0.09591820038643552,-0.06101073578807906,0.17653592619264627,0.09294211390911282,-0.05240490022703546,0.0037748407348098083,-0.10425330826232888,-0.19463663381508695,-0.08228710008626332,-0.1343737445089551,-0.24657919809957782,-0.10481664849366461,0.0392579821224616,-0.05780926348976285,-0.06241651065637318,-0.26557909938750585,-0.21971521997346094,-0.2334686249343894,-0.1760390319472715,-0.2645955373175425,-0.22108475358085578,-0.2298054086664112,-0.24546232785013247,-0.17123962700036144,-0.15835551557551944,-0.020554821835643288,-0.15863662948705967,-0.2505064682673839,-0.048278533050427744,0.02465984773032994,0.04325495283530555,0.04263092742891371,0.05271083496885404,-0.31235509666125794,-0.08575992899331597,-0.3312253146727887,-0.34343119903721636,-0.34636317049957205,-0.12385272292734517,-0.313171113192727,0.1263304823984944,-0.30899018575167175,-0.12013599289304278,-0.2583042210487449,-0.21181486198660082,-0.21969654330762525,0.026256227135948305,-0.15849494482522195,0.033119747405182406,-0.0948418428986644,-0.2898800427332541,-0.259737413548012,0.19948144886372068,-0.18938825528310266,0.015397486052589296,-0.06275405898513252,-0.25922125597467816,-0.06358548184296768,0.035130569913911974,0.06992475782422188,0.1256656805909585,0.009702194309698285,-0.2552203672834585,-0.08591792264597489,-0.2195189353192475,-0.0031742128640271958,-0.2412112046571038,-0.23551867055058934,-0.19137708159425165,-0.22030519947292515,-0.2024084690734855,-0.06983851736911088,-0.17185017852952644,-0.14851637801616896,0.03652371513181724,-0.020527870965806088,-0.016222059546965657,0.016986926498571746,0.0773375794388408,-0.02311628127528433,0.2632697504967266,-0.13649362331231757,-0.08272473390574801,-0.2594564368321731,0.13252002833844626,0.011495787626401455,0.054282024858499776,0.12936047928442204,-0.07590200610347615,0.1519584129121139,-0.052028457158493364,0.2092085744437894,-0.08738258177602906,0.09458393194109543,0.06561247330986818,0.09740874287510443,0.1850553254697022,0.12682541164330421,0.03148677618295495,0.2512562248234969,0.45488165885273857,0.1389633898680515,0.0804447845471813,0.10499546746468068,0.4087923409096547,0.14697891110407235,0.24030135567804314,0.21318936015855292,0.10925519220702058,0.3139061142390716,0.2509023008436579,0.2502053224864335,0.2264868620199212,0.21338769520439058,0.19650129159603694,0.26303133877625673,0.22676985575783182,0.378420221675968,0.1912982420220854,1.0,0.5179663412835321,0.14862628589978424,0.04573366063867411,0.3079001054561914,0.16073644088869088,0.09928484229519717,0.1422869341419596,0.08424458651319205,0.21348151660052858,0.015061017652356989,-0.13271514295773434,-0.11158911584181522,-0.09584561944263323,-0.136128032148886,-0.1665390188037972,-0.041983263498956994,-0.10165135992080966,-0.15034457438953458,-0.06862761711230213,-0.06793257209807758,0.04462075815256841,0.15608751715514482,0.2017506295995072,-0.031045204479682866,0.029755046409263023,0.1651610457008925,0.15233691530295387,-0.0098749879624542,0.08258815118442835,0.1613217613290995,0.1548235474824928,0.13256654991669586,0.10347175148355707,-0.0043061625914111775,0.13204753552673681,0.1602429961394681,0.0510214898671927,0.04302722640821486,0.15061007960685807,0.07245420418407775,-0.004926134922036023,0.1186105958364008,0.12740046332727029,0.13510829422980222,0.06670268680333771,0.14411569638305635,0.13338238226246357,0.11979848777468347,0.056557722242465795,0.14010047759689953,0.07632764127815717,0.07312637504094992,0.11488130343132018,0.024861717750595168,-0.00435010850543583,-0.02608519336251743,0.07532436219439038,-0.017803475613769874,-0.06354171660398966,-0.022599689313922925,-0.045566520997837,0.020100804975945387,0.093624661633167,0.07615027302508429,0.08122656530069125,0.05385506290386973,0.08547249595696294,-0.03354602956211281,0.054354669706777325,0.07676581785768305,0.08366849336574089,0.011306055081453588,-0.009038941883150445,0.009901882791004834,0.03939593507902073,0.01549993276269529,-0.04884177890116284,0.004717882849893614,0.06245482782531244,0.0022978616032225427,-0.02342537238822406,-0.024551588464566235,0.039999173079507996,0.04615936498019759,-0.00044910321934286875,0.015244557633889886,0.031646088855610564,0.03627035108424905,0.058903903768384225,-0.06365865981992723,0.009124179175741385,-0.008902720758829983,0.010106031238049278,0.01793842057869787,-0.03943873679043691 +C18:0 SM,0.026003345316679274,-0.12450657327177339,0.08123022686690033,0.0797891643418388,-0.20349244649555898,0.13182479803727754,0.01002313799393102,-0.07362019223252621,0.1619956538705376,-0.19945356479388798,-0.18830459900897606,0.14439221541926825,0.1303142257791621,0.12309590084914511,0.19222814841010288,-0.0975537813876461,-0.10432129947018888,-0.12335315484199025,-0.19345199026976265,-0.01089160061176617,-0.04642153667974179,-0.07927766082515639,-0.05591494866169577,0.09080977104942714,0.05627157842087582,-0.18699816844492684,0.05359665388118473,0.05858363860919777,-0.022093784634082767,-0.10998676018801322,-0.1164500616229649,-0.04746193914448846,-0.0980657132583618,-0.10094773226060286,0.2106468014717763,0.0008336741283350948,-0.019864567105754738,-0.11516870421296539,-0.12424795420444343,-0.17172129937277922,-0.03118505389791286,-0.05792600390924344,0.1363902537148116,-0.07114642617407115,-0.2019988184938699,-0.16784567396491346,-0.005568037727247103,-0.24644931817871282,-0.05354721471560582,-0.1842528898514308,-0.10764138956483069,-0.13466882497215385,0.07881848618799336,-0.13310560611029726,0.16819751673242347,0.00047424369581467704,0.011657871817060968,-0.04277039708820428,-0.06946618757321193,-0.14401068137266337,-0.08559866867055378,-0.1157486052007176,-0.224884468411138,-0.06596424275374936,-0.004167794786138733,-0.05756896944950486,-0.07600937268366892,-0.22047489551146893,-0.17982706755232059,-0.18261575965818755,-0.14966700085431495,-0.2317265875145714,-0.18904166797348468,-0.1999765256814318,-0.1877882692091647,-0.1449648759059848,-0.13387429649755309,-0.0026993948166456195,-0.09931838012908187,-0.17328337307267822,-0.05069597904048548,0.05249144157864347,0.037424260609500555,0.02449270962368588,0.08369074167284982,-0.20019271475588152,-0.039105273412782374,-0.24977105870175553,-0.2695928172074596,-0.24746788296062983,-0.09033776216688223,-0.24467987939265254,0.06305851694780092,-0.1881146211547661,-0.07227641361234605,-0.22929878577749144,-0.20199097643285135,-0.19109421819762815,-0.016602928869769534,-0.09027012732807778,0.028804089805583133,-0.08545104922139134,-0.2519909840398986,-0.21873260733264224,0.09808191721935798,-0.17484551318226613,0.015541237715714412,-0.03933698548671869,-0.2108360072806294,-0.07924018613258953,0.01631266831322036,0.07967601791215853,0.1404584187698951,0.06764360781212703,-0.22596627263492627,-0.06572143107826676,-0.16103018117366655,0.021040668088914156,-0.21820599604756513,-0.1583633597459305,-0.11628606591201203,-0.16486336715386884,-0.13410080192959764,-0.05721218096921905,-0.1657975257477157,-0.09545382477766037,0.029278562270141372,0.010477786871597762,0.03231502021011384,0.053960836794815475,0.06186808242536912,0.032042557545005665,0.2164680407116328,-0.06964890353752581,-0.10954029342244842,-0.15797580224145463,0.09062525440257911,0.0687407967557472,0.008267249509105701,0.10021485996745078,-0.10511005353290062,0.1240637137253082,-0.10018365007659856,0.15952799194009537,-0.040483023252619064,0.16107678239215775,0.11937393523165919,0.11038561679017632,0.1684836286673719,0.19938390675958026,0.01997222522709365,0.11337650054597787,0.376414777192428,0.14102996222769554,0.07608242732512248,0.04230647069171444,0.21943553751268702,0.14224861740541736,0.1854349139707782,0.10681281961713977,0.007475621427373302,0.20796696626302355,0.16948220637811806,0.1762172520088933,0.16145747176497122,0.11792768850067382,0.13778719283925978,0.28624667636666495,0.01915952219330657,0.3934678199805692,0.22188875313175152,0.5179663412835321,1.0,0.09053598798064268,-0.01875029673529018,0.3190948133490244,0.2570815587653557,0.13752053798535777,0.04763502257993265,0.017449196738814312,0.1777765871008488,0.028941770225067606,-0.13482223663086296,-0.11930581037694972,-0.13983748089855785,-0.16523627205868166,-0.16724072565347697,0.037827793474549176,-0.1309160331309808,-0.18419289974493283,-0.0752362264914292,-0.07199855835731456,0.12391402734361508,0.1709613564712,0.2219935523081149,0.052725431619512285,0.04919530161113347,0.18385711341318905,0.18324911517841233,0.03636322578938717,0.08268900836508694,0.1829284769849872,0.1820128685466263,0.12999101882559094,0.10592722411469947,0.010496963802159174,0.12456717632946523,0.1720459544288094,0.07191046804340308,0.07790916625882068,0.1459026851142752,0.05766543904697896,-0.021010292173286073,0.13323665492794726,0.18879854990064943,0.14555816341339656,0.12820208169784839,0.1413118607446903,0.13590296015163317,0.1063851093043806,0.029972119246335152,0.17598531243705745,0.10666493854472169,0.07748115247376942,0.10241476181505603,0.0021601490620045596,0.009532427622866444,0.0002260588534767537,0.06278466352527871,-0.016166806976415017,-0.0612702259308299,0.013853240838671545,-0.03555152348166981,-0.03777283684359366,0.05065886037167102,0.033629821494214736,0.05654359828030075,0.04400868983680162,-0.0028983975260303287,-0.001759232490122607,-0.0020755095793312177,0.04722562687609507,0.02710602429814729,0.0007200957178048093,0.02234790464415138,0.03607090157050702,0.04595240929950846,0.05438465321216584,0.006276652126171659,0.027151354442392577,0.061071855424686135,0.014870978317858923,0.001489147560207983,-0.017235892648963774,-0.01534414579196066,0.003901240390693436,-0.030870318080073587,-0.0013983224129499032,-0.002484006934187997,0.014765960835001734,0.028441726071372866,-0.027546978882446983,0.0615187151418895,0.033393572293409786,0.0918183849171095,0.017905146035403913,-0.043520629696085965 +C22:1 SM,-0.04827444226936336,-0.08659374087760666,0.15941501781747783,0.1096012668622553,-0.14602330753968595,0.1340848417697735,0.15713911979866876,-0.1579131042526891,0.2972100185629019,-0.15267548550073504,-0.1205496190754699,0.27513276609160464,0.03280697109575069,0.11793864903918833,0.2775286560569185,-0.07090255824839559,0.0015367199478804252,-0.08588003511820898,-0.32441352267343593,0.0036025660236499836,-0.12434331331850913,-0.0728862050138194,0.06288127146882057,0.23924426149543657,0.034999210193115325,-0.28673074092122874,0.03316313351142302,0.03859896855297806,0.02982419348010781,-0.1559874073872404,-0.24032536327125284,-0.031752545499390786,0.07853017963896636,0.007479284476285148,0.33940434439693895,0.05402563219933543,0.03586131916642992,-0.14121607264459918,-0.2427591328401418,-0.3076488844793784,-0.12218642455782885,0.0014224446497657613,0.28120011624926294,0.040686476252109575,-0.30039184852038026,-0.22803719646927958,0.03136326792185436,-0.3903519188266303,-0.11228211540139751,-0.25076327921336217,-0.14616697203829782,-0.22917446133152108,0.17335332924278427,-0.037892892935320194,0.246026471733723,0.018398884407198685,0.022645712555354636,0.002684588512909338,-0.10931588931087201,-0.2180981662827045,-0.19436554744691634,-0.2229790019224761,-0.3806187400314534,-0.09621572357051626,0.08931686729143538,0.02240146533180106,-0.19697221023084444,-0.35325272516105083,-0.24508363297648053,-0.37716013954580124,-0.31104885883815964,-0.3928103757859988,-0.344148205756945,-0.3550896370011407,-0.3453491290583908,-0.2610633361395213,-0.14788640711652953,0.042106726362636834,-0.25159936334257943,-0.3040747255326877,0.02331948360510912,0.14182743883119248,0.04034622294096123,0.02071938282410709,0.19151586149455363,-0.3676964552269176,-0.05091552979623058,-0.38082563123689517,-0.3911299471563296,-0.4028121220619971,-0.13107504855851526,-0.4101523781299917,0.20743930681525372,-0.35582028956163686,-0.06097021555423934,-0.36972832748233625,-0.2763791006348589,-0.22785290130036084,-0.0074934116021056684,-0.0695613007339592,0.01086613904701231,-0.22142542559648246,-0.4174739444668723,-0.3123418243866984,0.24660232733885248,-0.2963020250698678,0.010183952206725893,-0.18987710155871496,-0.3031379351860204,-0.08250277453323844,-0.06826941786887261,0.14666351064079802,0.23369944535038226,0.0247876524532357,-0.36345753469000336,-0.15838748784009568,-0.17954445047632356,0.03284245221865203,-0.3479768720257066,-0.21433209110889329,-0.1580161451552128,-0.15759119894706328,-0.17513941049271542,-0.02357003182010885,-0.12169351643349663,-0.1552966044688657,0.018427763804496188,0.039884980085486466,0.05839792786624221,0.09453050111040234,0.08886426993721877,0.047251368566702166,0.3367989171727618,-0.0661883420975693,-0.07610752743891969,-0.2936384942900526,0.1469012908820464,-0.0017799636099716147,-0.10523612880347359,0.12313424172426682,-0.11731712254901148,-0.054215107842952207,-0.046238775131397576,-0.004337880733043625,-0.16934775606012728,0.10596768100152369,0.17315557925879857,0.034202165448013695,0.16844849464296188,0.14173285713551936,0.14270783178105595,0.31326748077218786,0.2525351847372727,0.3045712256792596,0.32936536866441013,0.44051232238255117,0.46345909635274096,0.41734049302804566,0.5563486691067597,0.7051400197321633,0.5330922082936176,0.3409528120454225,0.47217315363926354,0.5463702524042138,0.591814308699337,0.31778631776111266,0.421187822793751,0.19123986273413485,0.11943793587648578,0.23145667826391508,0.21125086591372758,0.14862628589978424,0.09053598798064268,1.0,0.4504769009121981,0.20767544904231575,0.12826508634543457,0.1340196789537687,0.13240501307742208,0.2209731366043163,0.214737866679384,-0.05933047089954955,-0.2178322915471893,-0.28634652929505927,-0.19337115787624606,-0.22244815559661812,-0.18993852107357334,-0.1608710988931985,-0.2373206476660072,-0.27745265103811173,-0.09373379559829925,-0.12285513097520458,0.09346736680247988,0.01982817187954198,0.08044824888906461,0.007813535138129803,0.0033485180015966165,-0.033702065059984306,-0.042647403222761844,0.06151938925895865,0.014009993750338593,-0.014996886921525726,0.0009772129087028218,0.22971318898117682,0.2131804331409696,0.11868777316534415,0.07982720182035664,0.0451226434854925,0.26744997279255583,0.266795089686813,0.26764563164060323,0.29389615248628237,0.18975160564624913,0.1273734462165321,0.10682408661348813,0.331174936500815,0.3017323238590085,0.2695306006433919,0.2995880054232276,0.32462256067297324,0.253736518554097,0.14938021434253054,0.3025605379603503,0.2923261516296058,0.29172997990831323,-0.039828202932795015,-0.0718509158135688,0.0869204903803147,-0.004757291351549112,-0.0033838980338205737,-0.020913056643427748,-0.025534552365591587,-0.038401352248132986,-0.07309735404290045,0.03372661326874047,0.02977321803402094,-0.0043462283270787,-0.009205246043438297,-0.04169956453289048,-0.06670127962367592,0.0002767705993099863,0.01750582654754515,-0.02286619086450437,0.028109553385020986,0.049260813512585815,0.028350692432297406,0.08112768031995392,0.028907058903498824,0.07127665041761816,-0.00416655349819079,-0.055591769200019375,-0.11153495724268585,0.024262788109364972,-0.062008468527901206,-0.1337643806045134,-0.002533046895610131,-0.03916841788590705,0.049478764840469945,-0.03273907860950201,-0.030001140175397702,0.042558276428500214,-0.017211881009235194,-0.01289820099378472,-0.02488606619966182,0.030235688613843598,-0.03478275304770843,-0.029993320564090657 +C22:0 SM,-0.08530541387446212,0.16979482212278882,0.10987839124479709,-0.12307962962308493,0.06026680737322512,0.18214154401908686,-0.14330511683621275,0.04003924316579038,0.3282913350479464,0.0859680779262352,0.0754178238508896,0.2968844642484509,0.01129192042401322,0.014786664129480365,0.15386955355211307,0.0833804461888474,0.15916793939375112,0.12014873383316581,-0.35635923248132534,0.20525168436582264,-0.03846047667265871,0.19262110616135772,0.3304073569635633,0.29669540186963966,0.039088482378243125,-0.36147636183137194,-0.16550154053077853,-0.09241248067087675,0.0536154171153681,-0.02467596594814834,-0.2143242607401003,0.20499835432839275,0.31403731445144967,0.19613178917398177,0.09602282362867172,-0.035336952100257495,0.22158118801005255,0.045055556866759466,-0.29503554299763024,-0.3465721858131011,-0.14637905211930535,-0.14382792939955313,0.30558313938707,0.27196504122528947,-0.2690011271316821,-0.25913825350251857,0.029699024689423068,-0.3322180325274642,-0.024806989926409215,-0.36777229613211365,-0.025723131185640322,-0.016679548903575293,-0.05162691095793657,0.08076264211334834,0.048939989553798705,0.01060438875769091,0.07827641768453845,0.05160252220918502,-0.04962654137810985,-0.0069580569161919225,-0.26272990646445893,-0.192361013591638,-0.2461616959227171,0.014412126454480922,0.10019072203218522,0.11284685813830035,-0.22647595883160107,-0.2949562136956594,-0.205100839532296,-0.3815910233085435,-0.2885361915592839,-0.27628248590400545,-0.18781642155722345,-0.27932490443964797,-0.21472901012972304,-0.2258723706110047,0.017487219822085582,0.09828663703505439,-0.3357875247538709,-0.34208422939724525,0.13594600000766355,-0.0743326773847379,-0.1487907318045643,0.09837751922185739,0.03191708295138988,-0.3720844102805003,0.19031907491376313,-0.28664383894311735,-0.22862959240180994,-0.38159531252261275,-0.10008301040019439,-0.35547115165644144,0.3537408705509616,-0.3716016218593105,0.035180479208611774,-0.2330672696624478,-0.2223939675560217,-0.25105873717106386,-0.2343834703229352,-0.023016291437709755,-0.07226964586966338,-0.053440053307520365,-0.30702177046650214,-0.3494287656963812,0.028288916972266345,-0.35263898331497956,0.00023390495558254715,-0.22647636838066681,-0.2772142336449101,-0.05948925191141207,-0.12218826138195765,0.21137030543179483,0.08091557568911847,0.009635881262301246,-0.261434997534594,-0.07851956866023259,-0.004290061892108717,0.11625552371393544,-0.20496900191227518,-0.11616315555262034,-0.03278406069509209,-0.059762530806801085,-0.012965859566082967,0.06410392032180846,0.04824345273173939,-0.11450507959743689,-0.029548370722669984,-0.01668458043414519,-0.023983014169973775,-0.05230992331696194,-0.08353392461222234,-0.03466522577925126,0.1241171646483745,0.06703497718230515,0.17223048778654096,-0.34828862557992146,-0.0020833239515226803,-0.05079303572615287,-0.23703709188671207,-0.12237312381538984,-0.027901792498251025,-0.2920364645429067,-0.0064828410631705136,-0.2545054415169293,-0.25178575850808815,0.08458649781006965,0.2861954232943382,0.18234273967719047,0.14451630793425954,-0.054608312313877264,0.3144500330030931,0.39099285523279,0.10868837596068222,0.1953160723820187,0.2693818480229781,0.63197284651365,0.4414254217221997,0.053682662857550696,0.024690923852849524,0.38064973515600276,0.8726227678883932,0.3918823463448881,-0.02772237944480103,0.034516569825664936,0.2471971432541754,0.5269710019283484,0.013560740401163424,0.28222383430412257,0.2325857189153814,0.26018549265115004,0.1697996288947028,0.04573366063867411,-0.01875029673529018,0.4504769009121981,1.0,0.30632803052193824,0.1765869847148637,0.08206507673765379,0.2776126562837392,0.37128435657262787,0.27096765073187856,-0.02550252557181595,-0.1714897416351272,-0.22754099515123757,-0.17277294246353742,-0.2085901489569127,-0.14320489691978122,-0.10458971519739071,-0.22329610841176764,-0.23052480829809732,-0.19607945659742712,-0.1403495290573853,0.004319496980174153,0.036782386420132346,0.037046288771486795,0.027794029530933666,0.0973918891034799,0.0432846941148978,-0.03154667790020714,0.08958639402595088,0.13917202342347595,0.034406997777248635,0.007708733714857221,-0.06828771438971648,-0.014118235430606857,0.18685534141135945,0.18164016943687353,0.06779662828947045,-0.0050539900966403185,-0.054079356412705455,-0.0727177212000321,0.0186292979263535,0.3048803794412813,0.2134441726225472,0.1365230972203396,0.07412818596090485,0.004895924987122941,-0.0829919285430968,-0.05244169202701199,0.06898238613274511,0.3130046147562402,0.2137879747141845,-0.013276783775660753,-0.00888037427253339,-0.05693407286040446,-0.004596856276894073,-0.07165319038471965,0.020906586658801924,-0.003468552447621875,0.0205113417487379,-0.02082705687814301,-0.032915182638988835,-0.027069209153753677,-0.023040443186654713,0.017164790914823074,0.012380298041554282,-0.00131428927678379,0.005511856620509756,-0.008873988124656148,-0.01839232943994156,0.03573374956523546,0.003693004975152286,-0.012327198204028536,0.047785805219869436,0.04478578620804031,-0.0002794126499656762,0.023715599508169195,0.05636473826457069,0.062437803488994484,-0.018809199317336066,-0.011094220935612903,-0.008255302318799796,0.027549813342517417,-0.020162561661864076,-0.09766911287297637,-0.00041620965109969766,-0.026092158399249846,0.04547840705208826,-0.0004826255373051595,-0.019221589578402767,0.033535878189170636,-0.009425655815305415,0.008296811597077913,-0.04592003066742647,0.008673124610423693,0.008484725403322265,0.012229431589641925 +C24:1 SM,0.006365160552143524,0.022807390631795998,0.05711298377017459,-0.05965282848760003,0.07092644367184332,0.010088253553572067,-0.130905336821137,0.0816758053506905,0.10362319299813108,0.07335812865660654,0.1022552251794059,0.1308254523231705,-0.0393739429962734,-0.018864768820600248,0.00479910348976498,0.03305240126128475,0.0077494435768965825,0.032823005374283745,-0.20555379154508518,0.024485026923870345,0.04230573423848861,0.11073879376137595,0.16034674877063868,0.11622546746480476,0.03178928194865551,-0.15215803542595785,-0.10503367472453008,-0.03624831999626974,-0.012652834869121854,0.017400402726762347,-0.026285056454628437,0.08864311872943688,0.1762721365568513,0.08206436311745144,-0.03069177989774056,-0.039595021431590445,0.062211638177033415,0.025875069134981155,-0.07836540569063774,-0.13556183606668784,-0.015549209364172688,-0.14289092576070556,0.10644071529758105,0.20890531948506857,-0.18933684332728665,-0.08754075409822222,0.0004927424311193516,-0.1918315788117137,-0.11808354937856932,-0.20094147814948427,-0.06253371324859434,-0.13006387317552068,-0.1250655645008011,-0.04279972928732853,-0.06957049747123034,0.05253975228810334,-0.03294706676627504,-0.003111778384500489,-0.07616838651186278,-0.036576529919851566,-0.1747582501103224,-0.12827721534454126,-0.11668434270749599,-0.03217173579054838,0.05751647412553645,0.0022659067949539493,-0.19121999060803704,-0.1388156008425961,-0.12453265283722598,-0.16601180389569845,-0.1486450160320729,-0.12819775183119062,-0.09203257622264267,-0.1342308298339188,-0.11493144898171194,-0.0968014245315731,-0.06974054543460122,0.01702991101250485,-0.17753397845611896,-0.15672588790280606,0.005446052015825442,-0.08128233336077591,-0.01375967798747247,-0.11010929895247619,-0.06930417811056917,-0.2017862822789897,0.0706785658274747,-0.1413774521089663,-0.11794950253501518,-0.20486368066411517,-0.0652229045827871,-0.17291770227033937,0.11990067709081746,-0.1958933663001617,0.0636925732407977,-0.16342936046308779,-0.19491682700210583,-0.19329812923902137,-0.13632462093731743,-0.05452039167954911,-0.13182086800251963,-0.15456404181403655,-0.19276220754449197,-0.1892281730638536,-0.06160940968191172,-0.2252523852417215,0.02398124993679185,-0.12399620377700074,-0.1512312906752846,-0.20163202373657368,-0.11508414936229133,0.03612237899387359,0.00505093576319898,0.02587390615088186,-0.13331982356230312,0.1596922202860136,-0.060898185380401815,-0.06278130524019178,-0.15460692926931274,-0.09201490232603601,-0.05278101126098392,-0.040264547915754414,-0.04997345581375021,-0.013553783349941463,-0.03810001074568981,-0.10114026188288902,-0.07813835370072837,-0.08344881668342986,-0.06333106394123765,-0.06095574403900206,-0.050613472655863856,-0.030928934302775178,0.004317063402078872,-0.0880868476252715,0.06188526193958829,-0.23204774684962032,-0.1055653192804017,-0.10564153158837918,-0.06733224219444546,-0.08423587641497399,-0.019027373192380386,0.01754788673364522,-0.0035804405611517404,0.030651783757491235,-0.19107289147753662,-0.017983198219442588,0.003022332719864133,0.1457279291911026,-0.0855846123785927,-0.10585989894035369,0.12191663732827376,0.20891745096654707,0.3659273104311774,0.05532653374500464,0.11786050190792656,0.24225998090989512,0.3774268171260876,0.025907711915425572,0.054068877456182315,0.23081477508853818,0.3090347830295121,0.3896914393069882,0.08314185208818636,0.09194035602030852,0.10531990423847976,0.6322249849558543,0.005225529647845381,0.5200958283004327,0.2246613107204957,0.5652840332698096,0.14788561151496174,0.3079001054561914,0.3190948133490244,0.20767544904231575,0.30632803052193824,1.0,0.7130200210902046,-0.03500408267449077,0.08677178383020488,0.10458870674061012,0.14620509156151348,-0.02359792852179521,-0.05529188091928144,-0.017584357171530285,-0.03235768085464684,-0.06899470078244321,-0.009636832136914396,0.0732201494548218,-0.014466392336983342,-0.059223449136626014,-0.015354566144612267,0.050453789673893086,-0.07236885749185774,0.03424989455283881,0.04777401496101424,-0.03498451477405379,-0.00012571971573731855,0.11393874888277629,0.05257585931895681,-0.03145272628200625,0.1064951394051812,0.11239568488336256,0.06154378296070926,-0.03561815350924189,-0.014855622081605135,0.04084790874804151,0.17370217526249865,0.13360408877047764,-0.052670732853807786,-0.07770552393356532,0.005364488468646557,0.0035876971838759444,0.09725393903294428,0.19564502946806675,0.1415718835808481,-0.025348462451191878,-0.04030740175761052,-0.03537006640601692,0.00415326603145925,0.06293191132630081,0.1521292606275195,0.2029534663180199,-0.019030965712553725,0.004422773544463803,-0.0016592123621231743,-0.03080129136960788,-0.05185208006294247,0.023846550143938484,-0.020009911155892245,0.023540246379639213,-0.032767106744414756,0.0022600900474170275,0.05984379094793357,-0.060989227134496275,-0.025281710237047856,-0.09378048525416578,-0.0804418221760066,-0.017331425388585054,-0.07042286779326658,0.0014535440052684744,-0.02512728494277752,-0.05078077905524526,-0.058806637950026344,0.044867793860723225,0.06779482423635481,0.016037433584600403,0.06507575013998136,0.13304155746584037,0.10313353004107335,-0.011593502783397444,0.02793707718690421,0.08018750681572229,0.04640301788135591,-0.02790587938750893,-0.048305123378853815,0.020005457780933655,0.004062521282051531,-0.006761381558372404,-0.019922196105987795,0.006071466441541876,0.090237728775874,-0.056466179524010264,0.086893125434836,0.03520644369796828,-0.004566625873383035,0.06045594897935624,0.03444098966394053 +C24:0 SM,-0.044201484792617145,0.09035855658822008,0.015448120709438665,-0.00040024253260841514,0.04331819759316988,-0.022740360026763645,-0.14835252516358358,0.050714014046268366,0.08621519977356963,0.04725765799645985,0.037647827887691665,0.10439244181804519,-0.04834691855389752,-0.06389467840202652,0.04149420980149972,0.12522922770648237,0.005698014070315652,0.03189648113385135,-0.18943899433815417,0.029541667780388886,0.07487797816607909,0.13526411792954915,0.18176579090148415,0.11261166064934251,0.015116589762826345,-0.15923427239686122,-0.09095567987357392,-0.02363288366830136,0.003354938788955928,0.030284691063899274,0.0547080595557816,0.06304291750257315,0.17431146153340546,0.0906654984530803,-0.029295096496717563,-0.05782090806133532,0.08672110141817675,0.07618564534702896,-0.10609042620866047,-0.13358930025248072,0.017796540798863683,-0.05881904315059873,0.09755139775018139,0.17298141370251457,-0.15777494469425524,-0.11808890293501838,0.021965975797236383,-0.17285678605420052,-0.08313001732575451,-0.16261606284539035,-0.02525117077904428,-0.08963269188132503,-0.05515638982760686,-0.03726636761555934,-0.034257154714734034,0.053628729593878176,0.009960345700161011,0.032666509832032044,-0.07881536623401131,-0.005338783593675973,-0.18022615034136916,-0.12007259989403263,-0.11865919083068605,-0.06754735893927609,0.035705403053603875,-0.010838688137836247,-0.17342430584296722,-0.14113820212198533,-0.11507964880441207,-0.14000316608796948,-0.1147049134682759,-0.11208913721847644,-0.08794258777270796,-0.11697883737768812,-0.10800436166013147,-0.08441194330103734,-0.03149041407020856,0.013779246550475676,-0.1776603965480107,-0.15761045634279292,-0.031111142597315695,-0.06272210183082727,-0.03266242227836773,-0.002292212350329064,-0.03950516130637159,-0.15231409001954715,0.07564717046298382,-0.13346357492364272,-0.0987564107117569,-0.1674210821684635,-0.07126361183401067,-0.17136611399890556,0.09490592155037035,-0.15063975915617273,0.05416667277348267,-0.11788720762187452,-0.16522760384718374,-0.11281155905542439,-0.09539435572129018,-0.0307445824417851,-0.10444781597547691,-0.13650737347018327,-0.163205953078046,-0.16656590988089975,-0.06797077173117701,-0.1836920968320982,0.057833617282228696,-0.06635087271832874,-0.08048135824430454,-0.135767550533556,-0.20123310956167384,-0.0030621720854845675,0.05000184274009716,0.02323846731544835,-0.12502186093947182,0.16281155599274197,0.0015618446933966165,-0.015482959612912154,-0.13426014338637082,-0.03739326772826805,-0.001397030377012089,-0.017142468668297148,-0.00290831688928566,0.016372834953725737,-0.009395361939466943,-0.015889694848558344,-0.06172496652757696,-0.03576375567600062,-0.01268350400740311,0.008529666840874153,0.015924588575973713,-0.0054101277971801386,-0.008910817084480726,-0.03421059455085482,0.037082533834825945,-0.1775090837743323,-0.07479438443424116,-0.1075623740991979,-0.06215624196175228,-0.11924480320269011,-0.06000651947639922,0.02464946576432309,-0.051030527291652354,0.060249383640435125,-0.1747743974661667,0.03689418412311673,-0.004866613652150026,0.23181001699082385,-0.07550923898593753,-0.056502042917182145,0.06096084537881253,0.1367482267872682,0.27874193466276564,0.003763004323462308,0.06610504848025087,0.13695963799034935,0.2704025040507743,0.029883872917873814,-0.009215001784330561,0.12076560443274328,0.17968354591733632,0.3564853201778767,-0.009837907599987733,-0.0025041754703306455,0.029002040989411785,0.40231164719883883,-0.03839023583837646,0.4220030869290566,0.13893800649267485,0.5213127253146255,0.10583997783504014,0.16073644088869088,0.2570815587653557,0.12826508634543457,0.1765869847148637,0.7130200210902046,1.0,0.024377764163392993,0.01959987025119325,0.009370686597562065,0.1803096922512274,-0.09263212403166916,-0.09981850048044066,-0.030233142240981423,-0.07762826253257174,-0.12338513737005888,-0.0731011748942056,0.09115277383515064,-0.061973725396211654,-0.1004540208331877,-0.06220971304457781,-0.03490774014397746,-0.009487867057760684,0.09514135254479252,0.14613285277752716,0.026605115274714444,0.007259571291037761,0.16459689076339462,0.18567215675472182,-0.032202509508261,0.08590290658811578,0.18072668540390155,0.21074314959075427,-0.027911928397387157,-0.04053502570617105,-0.007990406376532568,0.13845797658380427,0.23684352872667294,-0.00642145402338289,-0.024340421383636644,-0.004452829943082425,-0.04150363918120114,0.01665958916969195,0.21140234201249256,0.27838616117497966,-0.015854532155128793,-0.03439147569524065,-0.04894932934439113,-0.049831711727580406,0.017467284031408046,0.08239668305089132,0.24903987236096803,-0.061199463359346506,-0.05852751274819944,-0.01935681626431445,-0.054540919519562615,-0.034273160180570215,0.016871025485389858,-0.050127002145152255,-0.007973382393414807,-0.019176343608090732,0.020130918397920642,0.05232299894131383,-0.04890021138157036,-0.05669895278637408,-0.114534943439072,-0.10313134020533053,-0.020622625882006716,-0.08287474859127178,-0.010626011547902178,-0.03530830740549697,-0.051924737971580745,-0.06010427255917182,0.03930666892007419,0.047518806804909275,0.0045775736024119005,0.04150024542598766,0.10331798667496737,0.09190013435467938,0.0018109515741618685,0.011628030911663425,0.06373199198521987,0.05586314145949204,-0.002182398983955045,-0.05041445760528183,-0.018783709276019928,-0.0499757820763478,-0.007737299850617495,-0.0010856921963334346,0.009963226670492225,0.07937931922297234,-0.0019766830347012873,0.0604273951687739,0.061712975387344236,-0.006388098603079935,0.0558174850605381,0.015945719700331214 +C34:2 DAG,-0.09040371436270338,-0.028278643482709823,0.038824286591065356,0.05776537985407405,-0.26197277330138136,0.1917818318606888,0.12823747054826437,-0.121489522497614,0.23827710581566092,-0.24388160713012783,-0.2678717924608578,0.21333467315979443,0.14089186783347704,0.09626458367531142,0.3472873605286668,-0.06739966121062764,0.06524265325463904,-0.10896055077086998,-0.27863460332087325,0.05889663292387479,-0.15434895253165923,-0.15154204339884672,-0.06603449718627705,0.1287862537217696,0.1000834247351449,-0.36422562284304266,0.03966613306316114,0.07877847125237879,0.08992771803603342,-0.25793013985189683,-0.2573351953826373,-0.1075464497886818,-0.12770896168261456,-0.0276148580354725,0.3702942908318575,-0.03829331137116851,0.05037439738853048,-0.1419537118948062,-0.33427550322212796,-0.3261451657034442,-0.10965290884938803,0.009129566598099171,0.2290080086131205,-0.12105394130966321,-0.29534861643817295,-0.30904690058589773,-0.04708325300223286,-0.36920071179733405,0.015921089216917584,-0.21252097124803343,-0.10575418016136115,-0.19648177435388864,0.29715612989559803,-0.012870522355284898,0.3351671124115522,-0.0046334035422830495,-0.013745084190839762,-0.014746480023326649,-0.08618888333634601,-0.1863775435115134,-0.04364593328696327,-0.18304290478628635,-0.2963835076668421,0.013409847917104142,-0.004432741559558157,-0.0025884657811407075,-0.07672487074603372,-0.3069265424656955,-0.1801656358752583,-0.2758820307290713,-0.22758597684264428,-0.3169841894318642,-0.26455798126165914,-0.3020118499235813,-0.2947683875757752,-0.26075735247915505,-0.1322409702296188,0.023297702728174396,-0.1750598800887819,-0.2596504019411378,-0.039571186360381316,0.15892498958049858,-0.10613303331083228,0.04922151337990759,0.2824713248053686,-0.26443359271013783,0.0440650032411848,-0.3936950715106822,-0.38047288759924924,-0.40916438852794135,-0.09264891983136575,-0.3630680441854108,0.13749213183983194,-0.3160657844854649,-0.12960918290410775,-0.2736090294285689,-0.21735688232577194,-0.20687678170588472,-0.031674420721519034,-0.10177151999329138,0.1317302992655938,-0.1015389043008108,-0.37565791039655466,-0.25320841039138303,0.2690651490048046,-0.18585946670705691,-0.01217780850111777,-0.05951897479411714,-0.3296408123864872,-0.0006130277383214731,0.006959254548491484,0.19193005732364565,0.32571868089155476,-0.1262618806497671,-0.30758754302153674,-0.1979648944212986,-0.21118733128052905,0.06937482784119009,-0.17438279358988443,-0.2300181559218609,-0.21969075264307397,-0.16004926486767018,-0.20641346264561963,-0.05238322215183679,-0.13341259453134488,-0.1110797872296056,0.034372337913585176,0.09804821910708798,0.1282858753987978,0.165837590889528,0.11807201969854304,0.07429400658854692,0.2996221250298388,0.03553032182510153,-0.1107544607889626,-0.19491204924388925,0.26841387610660294,0.06143249672843814,-0.11674176946973795,0.11273334086189694,-0.2130620313582349,-0.05364706143747835,-0.1391953279071629,0.059949277637658144,-0.10219114945253617,0.14421225707764507,0.16217156116495185,0.03762816809237743,0.22898772886434063,0.06601685081495443,0.02599567826885185,0.13278655522447677,0.2291897489601224,0.19430280027699784,0.06728157804155449,0.10675799362175617,0.22881119580992626,0.23740688046107394,0.2310525963851716,0.0899040102176903,0.15619225499815914,0.08839774073982698,0.12563910076433626,0.16980777212706197,0.2748104958065655,0.01823068141746645,0.2197524579150227,-0.03573610642975989,-0.1420380561364638,0.139682634600607,0.15474422959626466,0.09928484229519717,0.13752053798535777,0.1340196789537687,0.08206507673765379,-0.03500408267449077,0.024377764163392993,1.0,0.33449437340309585,0.36175829477518734,0.41348392691070956,-0.03273515113145314,-0.22566026108474188,-0.2477892914817131,-0.23023654369516566,-0.27088355880284076,-0.22435880756901336,-0.08311588370838577,-0.2833436864346609,-0.29984077511914564,-0.19173640532687622,-0.234133247450585,0.2878104924481786,0.22515579656743268,0.24443409645839895,0.1749704579356089,0.2144309824768023,0.23703832263485597,0.18682790402878835,0.23892907832791913,0.22540118447498345,0.226798192947398,0.19065036263696658,0.26735628174582116,0.24130822515683853,0.2355850474292363,0.22176349724496514,0.20971880033757193,0.22049632806087416,0.2625170414369013,0.21322881265541807,0.23634545607716298,0.2141204232897744,0.21330704106421366,0.19678167042258154,0.26647792454820907,0.2207451923460482,0.20973920868217527,0.1742348651207248,0.2167758895447505,0.2002778693985093,0.2396736615367479,0.1950591500740697,0.13247914777453187,0.19618631414541735,-0.003666755463077548,-0.049524618272664474,-0.02717015135122964,0.02141872665641729,-0.0779177279750554,-0.06858157078295064,-0.01905607101152619,-0.125864989002696,-0.07044755993589888,0.07899165456012341,0.12121153924676932,0.13662437795687812,0.11068319643214239,0.018634414147982958,-0.06897260857569523,0.022226737536565132,0.08266392206083996,0.06963099826116138,0.012271641570557318,-0.0935841536181809,-0.06108732537325197,0.022112853444162913,-0.04594606874077028,-0.061900729440041886,-0.05224145701323917,-0.0337835302282314,-0.05810915441654433,0.03245671227982835,-0.05008028979133169,-0.03709503451906876,0.03629042316437428,-0.02838167751103875,-0.022449283424590807,-0.015915452155261575,-0.031114826060478266,0.02149690482236425,-0.08461580800383205,-0.028457093280824748,-0.042311929683202125,-0.004652577720608366,-0.029288186762757986,-0.02934540185079482 +C34:1 DAG,-0.10058089179944138,0.15858771139986538,0.17098207409534072,-0.12299052480630346,-0.042416485488422334,0.14684845684758938,-0.14786509783631335,0.035590118908246655,0.30617522069901776,-0.021874304747614707,-0.0272225199492126,0.348606253218415,0.1796327649203151,0.10648117614322884,0.21648972745043335,0.027578249256957583,0.049214792053166666,-0.02260129278120214,-0.36944241571316666,0.14273131858334995,-0.18553980441415696,0.03577779489910784,0.11753774559681526,0.28501218832353176,0.09444498782988019,-0.4120122874283822,-0.0964150006456348,-0.015461204767150712,-0.026756319588687853,-0.03567530467110091,-0.24627885153393142,0.11708133081872567,0.1042368404331531,0.10595991357707221,0.057967280210759545,-0.04559484118400789,0.20275767651763174,0.050001188214324206,-0.3381821291603797,-0.3301751937453242,-0.1269471729202928,-0.20145220685328505,0.3084848854876241,0.10088024873063173,-0.31394538723189397,-0.30605020494138846,0.01404163734147508,-0.32353983540149506,-0.030831413872157057,-0.4165789453808858,-0.038942768209010103,-0.052848547530690244,-0.058860531370145644,0.0573195741735525,0.09227767200449147,0.09081176766079034,-0.040546902538784346,0.10318849814589559,-0.12895759761816195,-0.09908691615658803,-0.26416614780905356,-0.2771083752626529,-0.32635815233292564,-0.037070866953844955,0.018727374139359026,0.035990607414270785,-0.21820258033562553,-0.35255781567760835,-0.22314945179332513,-0.3610312953285789,-0.3309980074813526,-0.3180745047283601,-0.2366611416900992,-0.3423927343579941,-0.2822137531472188,-0.28715042192138357,0.055414499279961435,0.046809336631070064,-0.2968853681895729,-0.2876443524859418,0.013261790994734533,-0.08339147313642961,-0.17471867851829437,0.02258394154191792,0.06558262530797822,-0.35735527757526026,0.14284270517888278,-0.3147345219189505,-0.2539063055290846,-0.39076395456239177,-0.15060005592737002,-0.3283954730179747,0.3105399704811316,-0.38480884729767584,-0.03042852178172706,-0.2152006044252349,-0.22466767129998616,-0.24782679043443281,-0.29823897779379105,-0.167451513009893,-0.04809278517377852,-0.0006574391594246597,-0.3034527061476742,-0.3578150482081558,0.011809822386373226,-0.3675921763813129,-0.048038152138179704,-0.18053590834886174,-0.31272458364857597,0.04473172403271875,0.03173348697183274,0.16234740940470915,0.02463009056012542,-0.03458030443306806,-0.21366286811797452,-0.1726589196655621,-0.09252300047850631,0.03734460979994751,-0.21640899370767858,-0.14647234860080602,-0.0453186441983015,-0.027661210366229812,0.03005569526353209,0.012628353312344503,-0.08229729068806796,0.004579360351212809,-0.03526600726331161,0.051255417281933204,0.03647259953858033,-0.017689524235148375,-0.09707262239905268,-0.056658532456104437,0.0602750988060338,0.009821541129571178,0.07112407235150696,-0.37912638216705163,0.16313292510219232,0.06832960434935585,-0.03987551191549726,-0.04125226772285495,-0.07331373786803054,-0.14835984660285936,-0.06988517262747763,-0.1042056677341532,-0.27030106765587425,0.24393893806306655,0.22915464524772533,0.277886231505097,0.11013097178254348,-0.0014748046620616205,0.23144718563996372,0.3624964024623988,0.2516244711094821,0.1759672977033242,0.14183249405019338,0.32432114823369695,0.265881747821794,-0.04321903873332957,-0.04341482252500826,0.08313272056892552,0.32890734272252825,0.09514255249485143,-0.13544399946818225,-0.12618174330741094,0.02883047999185698,0.22462051446738887,-0.05766051441899477,0.09441937165483394,0.12412219593075788,0.09175205707639673,0.16616393506135257,0.1422869341419596,0.04763502257993265,0.13240501307742208,0.2776126562837392,0.08677178383020488,0.01959987025119325,0.33449437340309585,1.0,0.7498928936684044,0.7507704762140623,0.0920403211159873,-0.1636306924425841,-0.19372053671768985,-0.24319228866017975,-0.2833449580287591,-0.12142878478604888,-0.010638525743165615,-0.3213930414209737,-0.31199705876695855,-0.2438282618173325,-0.23839482081820848,0.33360331934191073,0.4563798491436219,0.40488536772279343,0.2521716039015713,0.446534183318847,0.4894413887266705,0.39543873594771656,0.37195339668704863,0.48708757456209534,0.46280776827542464,0.31089526937318,0.13356268156174123,0.1965273061301171,0.3721162880571873,0.4310454138779453,0.3005566110112549,0.055578707092275505,0.029726816742382447,0.034675054130034084,0.0965560654973099,0.27629749454575925,0.2770264246004807,0.21176750358909024,0.10345524017214938,-0.03383208326243785,-0.07196093586720238,-0.04613649857150165,0.06054409908694132,0.23100465230858577,0.28206036278436525,-0.09713677771312877,-0.08673065818834111,-0.12300208364298063,-0.03210748109059778,-0.10542378141400471,-0.037431836194739644,-0.029421009883396194,-0.027776313869891787,-0.13054689994545363,-0.11023072866951748,-0.11197202270059016,0.03828737452581872,0.1147201223085613,0.11269695554810202,0.07766006165111126,0.0697549677939529,0.09879911462605195,-0.09472741828538635,0.027213951583318206,0.08972092338206693,0.1101627243937992,-0.0198179731329391,-0.03436484432799653,0.011052882862942946,0.05066576137707721,0.0002366229654104713,-0.05091358325662135,-0.010140990241383511,0.03443045777358657,-0.017942344702971274,-0.051965421551106554,-0.06780317350371244,-0.03665813896124809,0.043100327915417104,-0.004301310225433286,0.07513481817463759,0.08983329088138658,0.08175693905649462,0.08010493561776325,-0.13505698607422512,-0.09931690530065769,-0.06166594783047844,-0.051050340361794615,-0.02574795164976291,-0.01821723948358166 +C36:2 DAG,-0.060288919615512165,0.08620939433509367,0.09012315605614275,-0.04586412224704892,-0.10935337708223117,0.13894498563263866,-0.039057252319066774,-0.0623506969638037,0.24932059874723253,-0.11037953274180981,-0.11643871401009435,0.3110814903702825,0.1324358861639042,0.08790784471154241,0.2281454740531943,-0.0016661053588595512,0.030554375954263926,-0.09579849269140966,-0.32666711395629705,0.056517699384137095,-0.14434305349028614,-0.04138063546681185,0.05541945599287358,0.20791372413075412,0.10279149201537166,-0.3531419813971503,-0.08210605497381794,0.007165283394458696,0.02447486991276477,-0.06046639677424774,-0.24943583241672898,0.024237605881372352,0.026634552771576364,0.031909842327527145,0.13115815381613125,-0.06499643834692102,0.15753941440762045,-0.025753004587260504,-0.31208720715439536,-0.3142501423656481,-0.09978252274581703,-0.11212434563875343,0.25323248444888957,0.0058152237658546406,-0.2748967415960127,-0.311485180897182,-0.005431858803074861,-0.31784490566516116,-0.01029975616020475,-0.337616423652732,-0.03765168380302575,-0.1341491199222907,0.004015639658075161,0.052054120181603616,0.1448077561161345,0.05548261594832015,-0.0623531667759069,0.08779021205276816,-0.13514476816473917,-0.1449023963726044,-0.2014391951439751,-0.246035369506748,-0.29619402538573253,-0.061252104324848275,-0.033663146088818964,0.02257977073733176,-0.2095863056290227,-0.31524358615213854,-0.18475451328069997,-0.3313971374537474,-0.2923721060006856,-0.30346884127293633,-0.21757489950876804,-0.31478769510105864,-0.26204528384638354,-0.26984722382833,-0.05342880965963462,0.03173937328412546,-0.2871918992830859,-0.30265662085562156,-0.03938419424267559,-0.013228135487133596,-0.15248845023594734,-0.03963156790155403,0.1448840973024431,-0.37234528409485723,0.15555621436519454,-0.3246086447179539,-0.2739418987067756,-0.3762567606713722,-0.08852798813918149,-0.33052433527175873,0.22066190651149187,-0.36109152530598543,0.011936119975470018,-0.24510407483707908,-0.1961218606105596,-0.27034952547025015,-0.26746831336201393,-0.1814762771698351,-0.08821770219384813,-0.08384159384369848,-0.32482215228796046,-0.26638303828401333,0.07633471334040315,-0.3071694051430093,-0.062378142927706125,-0.14565443906668857,-0.29006219199137095,0.004360847499286662,-0.017071585429081944,0.18303132884989315,0.11127744408658428,0.03787690457006182,-0.22009979266236865,-0.13211122741380765,-0.1754760089396903,0.007636321078847261,-0.19593427719234666,-0.2081896336769928,-0.14487057362371097,-0.0774226036586742,-0.07356645257920578,-0.03522971516457377,-0.12793989656116123,-0.06317482030486976,-0.027596456757380535,0.02215460718281949,0.015919482470821974,8.033708822574899e-05,-0.058505352513247594,0.007027701468538838,0.1261142367818969,0.002180224579771409,0.0037040847597420443,-0.32417777980507,0.15901781841416415,0.09771081505057737,-0.14471148122975658,0.013303332468826609,-0.07124304775784938,-0.19946049397683402,-0.01810218001202982,-0.14722984969302308,-0.18655844307085492,0.06873403146685582,0.17210902265345476,0.08682651144086731,0.08128243867684444,-0.023686080266433557,0.21813472635842612,0.24826265217831756,0.12646867541042808,0.2581455242418395,0.22923323664206394,0.34238679531039024,0.18718179719640862,0.05542037235702204,0.06129195067303928,0.18822484967721212,0.40152696965797485,0.01565511591353452,-0.06898760805048806,0.01776569011190412,0.1772693000953299,0.24127506651625494,0.05236338829039059,0.0668374400101355,0.060273679496630775,0.05469388865437949,0.13437424278631416,0.08424458651319205,0.017449196738814312,0.2209731366043163,0.37128435657262787,0.10458870674061012,0.009370686597562065,0.36175829477518734,0.7498928936684044,1.0,0.6071037283320102,0.046280654067937035,-0.14716370314650518,-0.2241513414118962,-0.20247641188312826,-0.23261656054086413,-0.10753069053142401,-0.0668548811266184,-0.2702273453725706,-0.28439874304571866,-0.17925846783307645,-0.19725878058714336,0.3261846406806115,0.29823197855075734,0.20369504113369036,0.29206542684202824,0.3789451579172535,0.27943094923138734,0.10886960881100094,0.40168543847853005,0.3889571334461184,0.23182326141301962,0.06841281019087331,0.22965759797206095,0.3008560254376116,0.42018481993912543,0.35112568866290605,0.139877739340261,0.16903089131200758,0.1464386562418363,0.1405010491880456,0.24657325885520406,0.40624840271831986,0.2517091880713646,0.12402092102377633,0.17738105768648393,0.11007081588565384,0.07532280089300712,0.11220997751120579,0.18905742412975446,0.35374088066592546,0.24932372739092482,0.08654746058600295,0.08414562033431172,0.03796419247652283,-0.06083060459923012,-0.11231913527352533,-0.05478590125439457,-0.046265868030968556,-0.027103267261092277,-0.09041253719518613,-0.06789138552852522,-0.08670937769076566,-0.02416000646577371,0.018179412047161333,-0.007244642854749605,-0.004521445299011142,0.0022526401907159124,-0.012755982311812498,-0.07846528912872879,-0.04004805485251992,0.003882575791724579,-0.01849782601213185,0.05827530649336673,-0.0013848398056352698,0.03679810024709307,0.09804453235635487,0.039307466225264195,-0.004940710708070587,0.01844970142828921,0.021914144077584873,-0.04053051400687705,-0.03772118903848183,-0.08587853805632914,-0.06529627632028627,-0.014677231345676448,-0.05925294848520644,0.02247274456181444,0.025770189297914026,0.029241896171539085,0.06823386390322565,-0.10319587454940088,-0.07235725141529459,-0.04644009520686789,-0.03322352252235774,-0.042988252022062724,-0.006725987890692941 +C36:1 DAG,-0.14932130763518983,0.04110422437636596,0.14081414213619836,-0.018179624907455394,-0.2002874441873541,0.14745132904179797,-0.029271260583551617,-0.09149996372787593,0.3399241253085347,-0.17029924577194613,-0.17241734955624813,0.3886958108347335,0.15642607213631907,0.1372613044994075,0.3236016899604956,-0.01164620669390215,-0.01923817882298328,-0.11854464917872655,-0.4544531423624479,0.10327554766499546,-0.1941674918780452,-0.064395291540886,0.008742048922219081,0.2772037439958881,0.10330292500316796,-0.4871332800977527,0.03235356468505985,0.0922872449351527,-0.0019034123779177298,-0.21547479883103646,-0.313912094878298,0.020960976684918614,0.01229428285440495,0.01948896004023927,0.27975967454384504,-0.057396046605081026,0.1242347603866192,-0.10372455004001187,-0.43131210204425796,-0.4042082343814939,-0.11930251213284841,-0.1210159103688032,0.34348549207929446,-0.02821642007965257,-0.40150602667573354,-0.37445458500314793,-0.013337944100385286,-0.4560305800655149,-0.05670527179632841,-0.4270939955227058,-0.121956343419519,-0.19517489775174537,0.11792270704958523,0.029666593524038904,0.2736570306829228,0.05127777628015611,-0.05713207082084999,0.044400416371308364,-0.17326868627130673,-0.2231748497803146,-0.24977939465772822,-0.317967835858074,-0.4439199223816848,-0.11917557664085186,-0.03319261049308253,-0.01758568584880994,-0.23195196079458075,-0.4596187605972728,-0.2996017074693659,-0.4344591376525135,-0.38236456570182936,-0.45032466305290836,-0.3632482263759882,-0.4465704822004942,-0.4063152025383514,-0.3620111928563955,-0.11237883371653229,0.014841305884446227,-0.31639406526839214,-0.3452019631536256,-0.004189916768184836,0.017967811582410113,-0.1068791058181077,0.06103052406780356,0.18951432196743423,-0.4419267404885972,0.04817572467365989,-0.4769539631989548,-0.43233640808611157,-0.5207629788099131,-0.16907031511165452,-0.4657357047827905,0.26801575264272043,-0.4682708271226929,-0.10029958926444535,-0.3473155076942564,-0.3206643013057565,-0.2590531480034274,-0.16698718796819575,-0.1459812728625718,-0.05353292953628584,-0.12177710756379796,-0.4598041207836101,-0.4422100158016359,0.16338603432043755,-0.397320059577769,-0.07172529417542883,-0.2056577793858206,-0.3799327952932752,-0.00976728710136755,-0.03382332053366234,0.1769955571175525,0.16328652657817727,-0.03217953124350983,-0.3581422298880299,-0.23875176144319643,-0.20178902724022052,0.05933945488807707,-0.3402479115514914,-0.24082659372794255,-0.1667455454381277,-0.1796876709454082,-0.09965359501841299,-0.04873132365440732,-0.13200854869720527,-0.07349243963880497,0.016931119514634337,0.060530296666880305,0.07277639932112574,0.08235107881528204,0.062492526555769964,0.002914723035009754,0.23963320463481097,-0.048561267187526964,-0.024796878426039674,-0.42516499029694343,0.22249499474062398,0.0036455648441653756,-0.03240958925701018,0.04503504473145585,-0.16029686650429611,0.032655164666956685,-0.13431507956843564,0.11579735884511883,-0.281434799247687,0.2565051827341966,0.20945111696817964,0.33814751872003107,0.20241958897911358,0.12236221828823242,0.00856334932824732,0.2739760253342458,0.3985578145981785,0.06713490030965198,-0.0018773083624763888,0.17443189617007437,0.4150954452477056,0.13467557885430004,0.13554239157374878,0.13934536237550305,0.3114884059977792,0.41325532949662974,0.05731573167997398,0.08104764485136516,0.25327173765413735,0.24217686424760235,0.16775835688424798,0.1263345078504822,0.07427061418682375,0.3025892870714552,0.24874783116615168,0.21348151660052858,0.1777765871008488,0.214737866679384,0.27096765073187856,0.14620509156151348,0.1803096922512274,0.41348392691070956,0.7507704762140623,0.6071037283320102,1.0,-0.010137953037738531,-0.3090615011981627,-0.27714969309955806,-0.3161506028988458,-0.4024290119160888,-0.27333458693272533,0.0020738207471555567,-0.375217508691877,-0.4080996699313484,-0.29713461804677355,-0.2791903957128429,0.3135112543560672,0.453991678898395,0.46936826134151616,0.19422820804055663,0.36123434256684905,0.5014762224220028,0.45268090624388385,0.2929506106090319,0.4395101473597127,0.5275439556328413,0.45634086946968905,0.2750527702058094,0.248826439922954,0.331033862600827,0.4750764899078809,0.5022628256565941,0.2558857977927881,0.23905439569870846,0.20800507121561634,0.22175322323786265,0.31192665198165676,0.48361154410549106,0.4914356699335059,0.27759392486575263,0.17441232516933544,0.1691691897583267,0.14832588670895747,0.23920021481324952,0.3321065223273187,0.4862575644963989,0.13257840707069737,0.12199682343303289,0.14969405180270307,-0.027646715122649917,-0.10427569950276572,0.030827389849548303,-0.014027451351317033,-0.020527502056975244,-0.09805632059746876,-0.05081575482736521,-0.10076596799430691,-0.017214203864686767,0.11386084024770454,0.1053880555567284,0.1015998726862337,0.07434152848147123,0.047610807247611894,-0.06841852673198405,0.005775285389301557,0.10008176786293996,0.06966137880541733,-0.006775313344422973,-0.0550558024385246,-0.014814767019472421,0.026315628297842224,-0.030185149482705804,-0.03220237711867065,-0.008857174319890469,0.009205704871991583,-0.03039154407241979,0.003287409685237057,-0.03299525456231,-0.030138312498865397,0.0639757721658604,0.005216601154124277,0.027605311165403455,0.035067951108433026,0.00962525244320696,0.03429187552339985,-0.10492868398748881,-0.027594910065670566,-0.039808193068073976,-0.04164331241614581,-0.040012178124151886,-0.020096966043641196 +C14:0 CE,0.07857946448923928,0.09116110284949107,-0.09760779472407184,-0.04161518463524742,0.00012543308939538968,0.02561769813950341,0.01859459213220497,0.012676942386429534,-0.2080871619390686,-0.045808311299982016,0.008487586725943727,-0.17804118461542615,0.06107457138658873,-0.06220188298870412,-0.04969387453458929,0.10066119241314388,0.05350214496433427,0.02171704478584097,0.13953020286967727,-0.05327857394489825,-0.0802417782310115,0.018680071153874777,-0.0100358575580682,-0.19433956179933115,0.004018186965586411,0.10013785600872481,-0.07291968674501549,-0.09048394249374633,-0.0008403040544091338,0.0018396898362620195,0.11090867607679089,-0.09747530031420787,-0.07021318690168685,0.044656131338594966,-0.052889801823896986,-0.05569770952206065,0.07098833130159088,0.08871210966040764,0.09964849583350183,0.03815299038216675,0.1445733096619173,0.028579634649396193,-0.21649962357286803,-0.05161740218211083,0.060246665595737124,0.07862081305117344,-0.18281396868154273,0.10073317991074157,0.07863563852270203,0.08927257564998815,-0.0007371645642601696,0.13521205263639774,-0.05867359591088765,0.08086726732872686,-0.016992893751854428,-0.11328070330347033,-0.029315306091079192,0.04633358158245774,0.025365773434345144,-0.06575030302125269,-0.017189714983814067,0.0028535358194752385,0.04010662441441891,-0.005471976613685315,-0.039376480873277206,-0.030789305087585702,-0.003693238892935107,0.10267403053393043,0.07910632914136695,0.08575334246209271,0.027625143621149446,0.06427787003390899,0.042891853689284394,0.04085129186061343,0.050434416340045043,0.01189349670779804,0.0036977953317870664,-0.027757028427627166,0.05243796735844268,0.11342902102252568,-0.1269763100999307,-0.05680050194092323,-0.005425825046376744,-0.057745172317547465,-0.040593594648437085,0.07443588319267394,0.11239308884839912,0.071310103444588,0.08625655958397004,0.05822356006132075,0.10521866925272941,0.1488216718350411,-0.07628953587529698,0.06749174182730942,0.08935670620100115,0.03572274699122209,-0.0129232135647264,0.0040103520226253825,-0.10392811912721281,0.00018103147383733065,-0.0905460709275254,0.10415055089983186,0.12775418343089504,0.12863869166369576,-0.06346022855820824,0.11768359003120434,-0.11763170261523775,0.06310906220509468,-0.0325142259328206,0.005128288245005764,0.029865309848430648,-0.05777754665032858,-0.03598969528601669,0.03943127871047512,0.09431640338944555,0.04281766004850587,-0.03884084909883656,-0.012137917328611528,0.11028788329549158,0.01734118405661761,0.01764689980665645,0.03249277647338812,0.008617439460813208,-0.036147134864237915,-0.018318472046229793,-0.08295790617393053,-0.07914982344673094,-0.08074383484621565,-0.09137372825318463,-0.12685370293707088,-0.12595108187252665,-0.1164669261994218,-0.057131181919280884,-0.003810909645328678,-0.02247734712191026,0.06983993994171597,0.06632218098751036,0.06156616236633024,0.1126359690243349,0.11868702902881881,0.15594813320487882,0.0572678067485724,0.14490931375040267,0.023710358512201355,0.23925418275178403,0.0013147207391347325,-0.016910843602833674,0.020065040176026346,0.00146808025701343,-0.026361870540132847,0.011305832008448806,-0.031808795225031425,-0.1099107362251136,0.026886791339171576,0.06384355240680174,0.001793495935881774,-0.10101914193078942,-0.0007641636089585108,-0.04627330217951726,-0.008938493522216982,-0.025386742551568385,-0.07440739298051467,-0.03868309712898244,-0.02953758019520781,-0.06318174950586998,-0.042664381488968776,-0.07658518827022323,0.028036593621175613,0.1287152631865069,-0.11679950920966703,-0.027355039517315168,0.015061017652356989,0.028941770225067606,-0.05933047089954955,-0.02550252557181595,-0.02359792852179521,-0.09263212403166916,-0.03273515113145314,0.0920403211159873,0.046280654067937035,-0.010137953037738531,1.0,0.645920427861608,0.5520734345332835,0.4962463657019685,0.4781729809571827,0.6179832028327348,0.6378659883004582,0.46535779516657594,0.42245681161027043,0.5941931120369675,0.5486477377184679,-0.10056339438173562,-0.07275637786674327,0.03444471906789318,-0.07309769584270011,-0.09305200230444473,-0.05808183500276239,0.008614971085983246,-0.09671350915167175,-0.0740059207669697,-0.03404863352945321,-0.03769215279530122,-0.15995294542040303,-0.12977283402186576,-0.08832327745243687,-0.10035557528089854,-0.11976258336843455,-0.18621677837258457,-0.15563923818309094,-0.16333062865975442,-0.16069421120243313,-0.1263140422753295,-0.1918444553722209,-0.1269716605503432,-0.1276044477684544,-0.18425985393240665,-0.1679676898103773,-0.18533319334713014,-0.21045491281395737,-0.18489975961749142,-0.15962473245200753,-0.1965275034219748,-0.17147876813828208,-0.2216131755521744,-0.04949703843443948,-0.08497604936106559,-0.1222092281750077,-0.03313412629806754,-0.027538383236353416,-0.04443128157631728,-0.018257026635036935,0.05504125899003076,0.023533165377887452,-0.0599496057151967,-0.03421492421633517,-0.05703466954578693,-0.029852310620556686,0.0071625692857675595,-0.02052898502367533,-0.0069893637104321725,-0.03905896689634468,-0.004537444348958183,0.013625273152496611,0.017002351605778884,0.013424236149844594,-0.00756488146156611,0.07483503462024076,0.030751482058378302,0.05610300101120163,0.04582297834179882,0.1025107122233983,0.022966299791216786,0.05950507162744799,0.059212905396177185,0.008255596162373579,0.026098628877200096,0.025307885568198456,0.032797481351287606,0.04716097355424714,0.04900215321406209,-0.01730418461287361,0.053311356106796604,-0.049467012536994696,-0.027932366093450102,0.0012127075696647582,-0.005287436646077363 +C16:1 CE,0.1127582830050639,0.1842750096593707,-0.3267828854429788,-0.1412393171929396,0.21167621762418604,-0.17709848430068725,0.01596178815378311,0.15105336045943293,-0.5356765257867026,0.1439415275410687,0.16301593065970146,-0.4838302578734126,-0.09864619197340009,-0.2605613120092136,-0.34070556012921704,0.20474722226356123,0.11103329679729207,0.19139627727959935,0.5468447387178917,-0.10716871022000393,0.06503636673916813,0.13635610267556542,0.04158018573960624,-0.441819427998519,-0.090592011984756,0.455532315571744,-0.19136192389266293,-0.20025983265116234,-0.012665219543138833,0.18987234233495015,0.37217762276590055,-0.0649328562338244,-0.039716152518316485,0.0993260751934936,-0.3490862260488218,-0.0464442782586308,0.014884805494813566,0.27422777854843905,0.44753732747344666,0.3529200720844281,0.20686278318850232,0.043010741435455045,-0.5316299244621734,0.019605532952846293,0.4166560120178492,0.3466073616870244,-0.1566836743907308,0.5111770582110514,0.11270159133453841,0.4130352719289396,0.1838616863388477,0.32386721192692447,-0.1678111697858376,0.10547496693196279,-0.3047600997733483,-0.0904688586923677,-0.056452621334616315,-0.008309014238662753,0.029666760171854895,0.04728307815720191,0.19297210061344053,0.21262809238459052,0.4365587484344654,0.0970821905742414,-0.09072229933425555,-0.036690483159942854,0.20187876984256173,0.4514782276557381,0.3340100217969529,0.4568999586190802,0.3325901184316381,0.4584511837401262,0.380970100058333,0.3926383279183316,0.38161442618613545,0.31021879025441856,0.006510297101244155,-0.1119554803856658,0.25398076121382107,0.33225184147709447,-0.15011030209971282,-0.10136896177212464,-0.010499805814544325,-0.12060255180380818,-0.2700177514263558,0.3888588722501084,0.10493521026169714,0.4031484725636935,0.4133504525178171,0.44002729187662104,0.20030758154586134,0.5425710209483002,-0.330975483413759,0.4316247374458675,0.12104369363204334,0.3666294638744132,0.242134692575194,0.18949832570613895,-0.051116839477815354,0.044782686174390705,-0.13947735550507076,0.1921352631936077,0.47923745471274193,0.44445418961281663,-0.24659983777624228,0.4526828414656641,-0.04467702418939651,0.17267265311178723,0.27096127941468084,0.05363427809110319,0.03777747342957587,-0.2104498219285396,-0.20408491462388278,-0.07893090397203191,0.42648560570489236,0.3089572024135689,0.03669665517190316,-0.0719947529499764,0.426669123207113,0.19789812609967422,0.05911287799160807,0.13550546722730036,0.04642649222115576,-0.0776844969893243,0.05670145169430173,-0.037946496106303254,-0.18039489619368432,-0.19883822631756398,-0.23688812798462727,-0.2677289329353093,-0.1851137993217706,-0.15241435348165658,-0.28551025029414717,-0.05593753934008498,0.0048858619689265345,0.3718336886621133,-0.13199776948968917,0.09837804155779065,0.20950890508599357,0.04308517540707393,0.38487767251242505,0.1259962810088904,0.32187248069339647,0.017138160807931957,0.4858737098372479,-0.22602519649574696,-0.2359108072017409,-0.16612045252763571,-0.19761267096395715,-0.16763593635728588,0.051775761763579585,-0.19578775011568358,-0.35780867384580367,-0.08062631503641991,0.046196472823655174,-0.0635490605595937,-0.34872248728744876,-0.17011569347307343,-0.2279700593739061,-0.15450727379354753,-0.17777736328483465,-0.2777014929021056,-0.17891051138594577,-0.18332673881700226,-0.26072173195138054,-0.1380965216103416,-0.23882421362546197,0.04140653504363147,0.1831166729973877,-0.26748360064232796,-0.26746736204638377,-0.13271514295773434,-0.13482223663086296,-0.2178322915471893,-0.1714897416351272,-0.05529188091928144,-0.09981850048044066,-0.22566026108474188,-0.1636306924425841,-0.14716370314650518,-0.3090615011981627,0.645920427861608,1.0,0.8580493316122384,0.8620248926234569,0.9182073452274028,0.9110980446616561,0.6552223699383621,0.8270845596206065,0.8709250951616503,0.8239202455054486,0.7498939806674056,-0.3290894677554092,-0.4205324876849233,-0.35682371769574434,-0.20188169172528822,-0.3086434371993707,-0.3768769554524808,-0.30164159390497747,-0.25865820025916536,-0.3228539543568158,-0.3562770290975846,-0.3681226851923232,-0.38296306408520814,-0.3228803043490812,-0.26225583056223756,-0.3887525640030284,-0.4401010633593238,-0.37179554731535625,-0.3675553579819203,-0.3535143939732484,-0.35795492737565054,-0.3098499804526872,-0.48274954397179054,-0.4482713903532059,-0.340853034589016,-0.3945961659584159,-0.3812965712257619,-0.39094804053450627,-0.44563643127369834,-0.4100045578734647,-0.47263670173989586,-0.37849271756315284,-0.33719744652617667,-0.39856444860532997,0.028225905163639278,0.07005080390132991,-0.05828996729335781,-0.07779610359996042,0.01828410733257004,0.0985789440783956,0.046920711081154434,0.21007663524025455,0.05207803223795008,-0.1449651231663236,-0.12252042353742623,-0.14700164077072186,-0.07674828648466038,-0.0265846474119604,0.08063524485712015,0.031990645562581396,-0.13095579467558605,-0.016285700108860646,-0.0022833033345473906,0.06766363129826311,0.03314301548263573,-0.0649120509389672,0.09816037755716296,0.08908929682677434,0.07880573984023564,0.05570972042247943,0.17938395918663674,0.04070787949790594,0.09214150870080136,0.08802360723258974,-0.02215707445918985,0.032503371070286495,-0.004476623559840492,0.03701409512289547,0.05582840613796906,0.05089105366235698,0.10991569020881543,0.08240393705061659,-0.03802830061057024,-0.035411492389130626,0.0901889774284035,0.08292808769122272 +C16:0 CE,0.0917852575008311,0.17746529100520006,-0.3133807784479581,-0.1268872924608043,0.19854086030872897,-0.17950119701280523,-0.03233675696210628,0.12879774770598842,-0.5521650374551471,0.13747168494675635,0.15024122123033423,-0.48813036934309895,-0.14994590164929564,-0.27330411383947956,-0.3449334908781289,0.20297853620383602,0.048361676188204125,0.1507340052284199,0.5456548654452008,-0.1520468398514696,0.06778534342636695,0.10156953047592278,0.007943155964908959,-0.44439602558269786,-0.13292810634727792,0.42501012646716024,-0.1635817159657313,-0.21376370461488642,-0.026623581171773002,0.17864893164741147,0.37886578447814645,-0.10062863997942877,-0.05365354746402127,0.08804815184600669,-0.3710873630298678,-0.11068580420442611,-0.010596945793352656,0.2497065495997572,0.47955601799411934,0.3392642063055613,0.1955057402424028,0.024284653761660818,-0.5433265086201835,0.005453624449174264,0.42703947610528026,0.38632099240272955,-0.13228498843308628,0.5452066325669892,0.08401458758840566,0.39443543705261425,0.12525766343018604,0.2906801678768641,-0.18546333053879396,0.08466410033537848,-0.30532853611262123,-0.08787074742912783,-0.059840099414253604,-0.06464462878435627,0.014738576962046477,0.060977336962487756,0.17433958170728037,0.1932911038112283,0.4251077805573867,0.07174767803458373,-0.13898716449166987,-0.03920707698702721,0.17541332066511867,0.46882384163585,0.36416161199712854,0.46477268843810565,0.3355559761520029,0.4617316217023197,0.35972251586619913,0.38933036483160927,0.3731199714516272,0.33926293430661103,0.02173725143246552,-0.11878047183011946,0.2788498280446088,0.37076290200236933,-0.14689119183092936,-0.12085297743182154,0.0077146408668264084,-0.09787868544645896,-0.2784579745475428,0.4296583283887694,0.07758401887241619,0.4104915387878193,0.4112737422755372,0.44591443435863015,0.19213674300556335,0.564203834884705,-0.34322077176488336,0.4496616723945058,0.09006888316578199,0.3552196784188685,0.19309530722016482,0.23806295652580253,0.017741169759428275,0.11115526301995704,-0.12107020000362044,0.16877376978079742,0.4952288406821594,0.4254295854103109,-0.2367953775041319,0.42976976519919124,-0.06161456558514306,0.1509998633910259,0.2887212380061639,0.042098574291042294,-0.004129104753459658,-0.2235322638803446,-0.21243385228867956,-0.06302679669515913,0.41178563295738335,0.30971773717820317,0.07424068927448961,-0.07886959999398786,0.40544661993837117,0.2201183919700459,0.09890494538168754,0.11634750285967496,0.07798354148984674,-0.044641212710869224,0.05087266000004544,-0.010202856102604674,-0.17356704409861787,-0.17875471119987288,-0.2058767081326161,-0.21905976489466283,-0.14549933375405807,-0.13968808929033805,-0.2922072206673709,-0.035499540581634376,0.011407630900231858,0.35125070666178293,-0.14017941089338978,0.04683168153998954,0.2868157731734566,0.039992251774662674,0.3943810501148852,0.2234736004742309,0.34401867092020055,0.11451547982414632,0.48374216637828976,-0.19908720595970128,-0.26899515827052106,-0.08876678490252764,-0.18703092648062353,-0.1781116453030103,-0.03709911335495991,-0.22154704612821405,-0.2634344375324784,-0.18904512388136452,-0.05947898977265718,-0.16228714688231363,-0.2883778390145184,-0.18349810393398336,-0.260800624155357,-0.20279945095476437,-0.25082286525977493,-0.18409482061661933,-0.18768915867715819,-0.2117269664910189,-0.31728534590996704,-0.14981932486588434,-0.2936213254137965,0.09159108004135882,0.19344151879123367,-0.18445953377289603,-0.2520730438735811,-0.11158911584181522,-0.11930581037694972,-0.28634652929505927,-0.22754099515123757,-0.017584357171530285,-0.030233142240981423,-0.2477892914817131,-0.19372053671768985,-0.2241513414118962,-0.27714969309955806,0.5520734345332835,0.8580493316122384,1.0,0.7781461587093409,0.848408928039883,0.8410341778881273,0.697967082177565,0.7806477008531287,0.8453185973533367,0.7117842235612202,0.6943844610558865,-0.341532675273777,-0.3463764427536409,-0.27701964680101815,-0.2126660734499135,-0.29541892767275196,-0.2834250419070312,-0.19322930651712228,-0.29147022423876684,-0.27243902833274636,-0.2559527454633918,-0.2375275907615096,-0.3587243469860642,-0.34392001822620333,-0.2712330932735133,-0.30848067132856927,-0.29761890864192403,-0.3303517025493944,-0.3295411490895404,-0.33234446325434897,-0.3608233085795706,-0.3120134951800706,-0.3681274043798985,-0.32481747030306163,-0.3449402505036023,-0.370265594238546,-0.33489280532190513,-0.3731775492915782,-0.42045650561647563,-0.38132912447892126,-0.37401128122455657,-0.36540493614846126,-0.33134519248045347,-0.35601255718137453,0.044278113872527135,0.08925655517822566,-0.05096704451655459,-0.0811065737589425,0.06065905896851039,0.13581587022342667,0.04243562364864348,0.22088393790757094,0.055117152643218405,-0.12267369584886784,-0.11563447022700293,-0.14076272440151197,-0.07997162986166727,-0.012322915566825979,0.12510169408823166,0.04602994415796417,-0.1396119616846462,-0.013644642308121596,-0.019760975042396454,0.05278748195586088,0.02287580460932023,-0.07354528805861288,0.07233500369669132,0.0687831087754711,0.07804542739915002,0.055013974436269625,0.15368869314661268,0.02630476094224632,0.0983793710349621,0.11132659539971278,-0.025235748767491958,0.045726934925801085,-0.019394432235870784,0.029586972949721364,0.05110603091050782,0.04345241788822127,0.12285053506507736,0.08727916890790463,-0.06776580888915815,-0.05104209504304337,0.1008217774263787,0.0684755940600916 +C18:3 CE,0.12175761045039792,0.14455113209041023,-0.3442409082883442,-0.09488549434442506,0.1760446987783944,-0.14635315573438692,0.1158847355700491,0.13298754439427185,-0.5317210497859657,0.12008155450548597,0.1341444149474796,-0.49276810543710875,-0.16815154257566048,-0.23445624389789296,-0.30980027722374137,0.20567814840073328,0.07278767848377932,0.1373138853601278,0.5602367832917482,-0.09103185592999534,0.08494871217693041,0.10410156529151136,0.018463238388264684,-0.45520862566745846,-0.09100647325597273,0.47581220570187377,-0.14376005162025693,-0.1503648882436158,-0.009805119552731448,0.15030503261506786,0.3370382925152834,-0.07610523450320117,-0.07601580665907187,0.0775733436852708,-0.2451056388200964,-0.03877888031076655,-0.04428216794630935,0.24221370517121646,0.4565322721254195,0.3512911569383394,0.20688591881855997,0.07657272307779474,-0.5252610911923976,-0.011209388481010694,0.41087409839180633,0.3621403823857279,-0.13447336502975274,0.5119375435457927,0.10927791996206984,0.4453539985153302,0.17239112527287806,0.2601811215537518,-0.11148819049618142,0.1336379843882324,-0.22737441889573395,-0.10571073753573929,-0.07184500961445481,-0.008416953508930144,-0.019369978625608276,-0.030255777260983427,0.25163384238442565,0.1823223544660553,0.42137039122803477,0.10525187571688042,-0.06018102228752975,-0.03159015225403905,0.25179023247390736,0.4234692471828192,0.3749129592862667,0.44344657993512315,0.3225495087270589,0.43652403599477946,0.3528021004456389,0.36944844339652266,0.33748682520600753,0.30518300515999575,-0.05830250523922861,-0.10119814633060041,0.2802415917813117,0.3218015855112802,-0.12192885104196252,-0.07962668286567878,0.03166542295221558,-0.09101858690526303,-0.20889397519273417,0.39285422920494645,0.049997152878981606,0.35112464407548627,0.33117505909634526,0.44446887861112394,0.23434945336593505,0.5196094545567536,-0.3578015898857859,0.4463092899043456,0.14494260021127406,0.33033739819004165,0.2337719362015986,0.1973569342155658,0.060672857678222766,0.016233497081737124,-0.08696531219751588,0.13717668856426962,0.46235439660947214,0.464692897028839,-0.1729195057260761,0.46382376130539527,-0.04327023500393494,0.17016446178948452,0.2507890089648198,0.05521437731020396,0.02577022805880761,-0.2504529262296664,-0.12119848791111212,-0.0511364498496191,0.40655625960698505,0.31228956755037696,-0.03400203546337997,-0.03224670024264863,0.3862027942229534,0.1537961096069262,-0.02225245793175275,0.06377595408633573,-0.035704439787120894,-0.09407985934742435,0.03512039531963351,-0.06714512058660273,-0.17655589359273152,-0.18565189554487233,-0.20661474674061903,-0.20947516444197797,-0.09980919574462854,-0.1107477081560088,-0.21339299221348634,-0.09291839273642317,-0.03240687921506956,0.3948863676168271,-0.13223596760923573,0.030369618257981543,0.2229700319977143,0.10898847402548001,0.3420367965252439,0.20103838434362176,0.30922827173926337,0.11740819297605778,0.5185976799712153,-0.2813912877925486,-0.31409766508290055,-0.19596876211600672,-0.15697202151520193,-0.12872402570770108,-0.06844378094940191,-0.2433409458337076,-0.3107160373484062,-0.11901705353385819,0.011041746286378426,-0.14215713813786865,-0.26577714492660154,-0.09869779813027643,-0.1265899733116947,-0.09241997418264407,-0.17825530246239474,-0.19369797140445905,-0.052296500216272496,-0.045866194179655866,-0.15423792720099463,-0.15425833665272848,-0.12699893495793377,0.02456166111255411,0.15283199889586538,-0.2161711209722451,-0.22778017121417676,-0.09584561944263323,-0.13983748089855785,-0.19337115787624606,-0.17277294246353742,-0.03235768085464684,-0.07762826253257174,-0.23023654369516566,-0.24319228866017975,-0.20247641188312826,-0.3161506028988458,0.4962463657019685,0.8620248926234569,0.7781461587093409,1.0,0.8956121803544043,0.7734579924399654,0.5682848917420574,0.8628650576096026,0.882336443236057,0.8106857490212594,0.7427244432890447,-0.4050633139870224,-0.4911265526626465,-0.38099007558597686,-0.2835894796702439,-0.42583894307728754,-0.4608563301018788,-0.35289163159260095,-0.37087147224942146,-0.44387217992067846,-0.44127693443638133,-0.36847500911487674,-0.3531443847121133,-0.34672227633846286,-0.3786578339598191,-0.48876393214396785,-0.4528755026266676,-0.32625043711125185,-0.3026771380044996,-0.31891778810528787,-0.37640250298714945,-0.3823741348071384,-0.510653846840527,-0.4195130355131589,-0.2583383059727609,-0.32707898750416375,-0.2856593389481764,-0.3264267762746531,-0.4237472909636941,-0.4476104615840678,-0.4893691726514475,-0.30766323188991623,-0.2726020659927448,-0.30987630369344943,0.04159906837199657,0.07215189782505047,-0.02542020125289666,-0.09273121887523951,0.034666406851217926,0.09702769158401058,0.0509960189391483,0.19014596862556085,0.039978404291144784,-0.13711337144576138,-0.12891500197698655,-0.1386731128194665,-0.0965681694280296,-0.033512762936626944,0.09218043078991835,0.025435464365059966,-0.12891969424285354,-0.02943080852572581,0.0015747819855512011,0.08117803410269686,0.04990774996073861,-0.03597740782053339,0.08049373361431927,0.09453203217583069,0.08419077717398894,0.03326975416417195,0.12843778456266855,0.03004303419516774,0.07990147860970802,0.08661651140967375,-0.03901500373170384,0.011815134705914164,0.0016762504696191686,0.04265218896750642,0.060179855651367034,0.04781706868210609,0.14034226219718832,0.06893548287339953,-0.07250973012458144,-0.04139002947362023,0.05669552994704011,0.05607852515910057 +C18:2 CE,0.12781733325507974,0.17151903972860766,-0.37016711558135673,-0.10626775343068626,0.2229425902959104,-0.19016581762833018,0.09711004366123514,0.16789451205126033,-0.5995921152899274,0.1597475139238569,0.17480903682542046,-0.5547378984117352,-0.17513198600892385,-0.28820557243627926,-0.36923388457323697,0.2110633670595626,0.10630691663753353,0.1889632305117077,0.6563857327517034,-0.11184178108007345,0.1173433965190267,0.12345994699189947,0.019307171860189227,-0.49912525303863997,-0.1060689287847162,0.544946766164602,-0.16951952392321357,-0.1966837036250372,-0.013672708835155459,0.22206423780317064,0.4161153411450745,-0.07018589433089589,-0.06543022751815289,0.10643921992944398,-0.333509862075739,-0.055140934502830107,-0.038004687561566594,0.278199119874114,0.5561462394266822,0.434210315051136,0.22009276654005747,0.0793517000154498,-0.5956351049135831,0.009176970403216892,0.4901479749607145,0.425338077547412,-0.14550941301656412,0.6054597143867071,0.13712341011016918,0.49656513538644337,0.21942456053097223,0.29972518942174714,-0.13231681952110708,0.11729784698584374,-0.2913833467513484,-0.09296428051521154,-0.05585489848508525,-0.01929599579068118,0.021786702610634142,0.04181747125320772,0.27173631889047906,0.24748789913222163,0.505040146880044,0.11955986034259461,-0.08385762944938814,-0.036248762680699126,0.2769534552289938,0.5148117393304311,0.4240931816414572,0.538555307927273,0.39919696010543537,0.5274829709241529,0.42235685876529583,0.454394355490515,0.4204317723058844,0.38462568403747366,-0.007048667279688857,-0.12632088769565342,0.32815944482873427,0.4020795085572831,-0.1223978860923763,-0.07058543287797579,0.016404494380786266,-0.10985241244432674,-0.24217969006347576,0.47941336561045217,0.05473616663040848,0.44650744794019603,0.4381649000935238,0.5398157678330898,0.24125694566006498,0.622798068916411,-0.40215915279594316,0.5236032058611948,0.12574133624367007,0.4265207046499038,0.2962017303101142,0.24899466598634196,0.06276265936374568,0.05785428496377675,-0.08376958618068374,0.17499265422417967,0.5480465634158163,0.5216197561299881,-0.20920535775403817,0.5475573086321821,-0.015475624359317328,0.21280546536026762,0.3461173207785665,0.08233693405373974,0.03890878078438577,-0.24127717215652444,-0.1792348271363727,-0.10124885143570529,0.49940576012169696,0.35293407416935074,0.018020343502094097,-0.05833432404169537,0.46571077260417876,0.20972386805990637,0.03316897375725862,0.10648143225002249,0.01330372642426626,-0.09208137445609407,0.05918075680852568,-0.04501544897345216,-0.1767912097000795,-0.20042636378021175,-0.23930825437331782,-0.2543732831332644,-0.1582789548443414,-0.13554192439497884,-0.2663569072659981,-0.05905601023548719,0.00456907305332951,0.45777721114278225,-0.15926310973529886,0.05945843836209099,0.2310886506040791,0.09055798127057696,0.38810147684011476,0.17268414965987672,0.33286670232098015,0.05436388646724331,0.5760342753060053,-0.27948073422459946,-0.3043279056085173,-0.2532239013645417,-0.2036136395868852,-0.1414623244255123,-0.028456743835885475,-0.2607746198901275,-0.39723127917094037,-0.12337141844379207,-0.0077882955756822525,-0.14590079583289095,-0.36064353624271445,-0.14889887986531627,-0.18178794845986526,-0.14555710411980244,-0.22072479260839675,-0.28313305858981747,-0.10041540942728251,-0.10385857931950515,-0.2081851670793693,-0.1801123252714651,-0.1791964471016614,0.014839507069985311,0.1549175802215274,-0.2862655006970374,-0.30207549158970226,-0.136128032148886,-0.16523627205868166,-0.22244815559661812,-0.2085901489569127,-0.06899470078244321,-0.12338513737005888,-0.27088355880284076,-0.2833449580287591,-0.23261656054086413,-0.4024290119160888,0.4781729809571827,0.9182073452274028,0.848408928039883,0.8956121803544043,1.0,0.8529724530982136,0.5363958216595577,0.8761379885168349,0.9537723605814694,0.8245976818584722,0.7539200300211463,-0.4333127950123177,-0.5623463586194637,-0.4821068905048078,-0.292248138134733,-0.4455440739309319,-0.5258467824380382,-0.43655185030211474,-0.3771394641969193,-0.4728158402075636,-0.5115215064903362,-0.4787362842111946,-0.4139229258857816,-0.38446693309777374,-0.3803724703317306,-0.531450904209335,-0.5506891692376997,-0.38534681452542807,-0.36566358905694446,-0.3656478080744782,-0.3935565690185787,-0.39865721356140227,-0.5804890263108086,-0.5408086771703831,-0.3170917219124315,-0.38082810037385695,-0.347511869480577,-0.36553801351327614,-0.4559487472328935,-0.47666252697705774,-0.5770651448185309,-0.3433414913313889,-0.3122249442457748,-0.35883094624254486,0.05569126365224787,0.09314879276570463,-0.04689323274906506,-0.08249479372610374,0.04204002556245597,0.12317650442496617,0.06150184649381768,0.2136145899809469,0.03938917764113798,-0.14907700891862435,-0.14978755951753359,-0.15780664774651912,-0.10245389137592491,-0.04145451204892836,0.11368655257982233,0.03698125982888842,-0.15945829579525717,-0.036412393569177595,0.002751065896603411,0.08052847401449167,0.06358445382620274,-0.05569793131720623,0.09166419930620917,0.08966416619199677,0.09938579289040561,0.06755721704716348,0.1616476614677301,0.03012360344292079,0.08096717805065635,0.09139473446259559,-0.05126905999182137,0.006106268284209596,0.0029258294462837166,0.041353593382392334,0.06280193329911968,0.03880883115315942,0.1467359595114748,0.08115528124497388,-0.05981216024250527,-0.050522017739639366,0.09152925692829308,0.07980161537423995 +C18:1 CE,0.0899056088769842,0.19306241842473756,-0.2785454082339511,-0.187546061184522,0.24196365908894588,-0.18162793830178228,-0.05852153393122041,0.15712625292297552,-0.4985314243034771,0.1788546116078301,0.20768304928688355,-0.4407614170680425,-0.11163695575694446,-0.2654301226014011,-0.3563019565875427,0.19537227238681948,0.09971902030568942,0.19183827554347152,0.4881486743430178,-0.11961920494084605,0.07488772091854555,0.15250542850309753,0.060674034121577174,-0.394821761817795,-0.11682173368866425,0.42404680544579815,-0.21229045061330387,-0.21735500205422184,-0.04286802807430765,0.22214021311811416,0.3234860092902216,-0.05817173988772036,-0.014204843564299442,0.11986800995437055,-0.4306970795321165,-0.04872950654169341,0.033291902659296754,0.2504525310788544,0.4468467391567996,0.3499147276969138,0.15077614526003413,-0.013184148690773667,-0.49512489100471796,0.05841775957040006,0.3839323762616615,0.3560403635162498,-0.1104393583209814,0.5053447782156589,0.038433094508913065,0.3679482794415052,0.14937531472031074,0.3211463151897503,-0.24780481521534525,0.05125936401153981,-0.3661844231606553,-0.0909575195533884,-0.04698166815414138,-0.06536443594607977,0.01789338674685542,0.0763472287884717,0.12436658100451259,0.18962970717016764,0.40761947507474755,0.06559390905036891,-0.10382287379407101,-0.030653161109276673,0.1443105063384229,0.4340063214843137,0.32394983749251466,0.4311843905988499,0.30314581351700975,0.44329099008466855,0.3665540920607043,0.3784902369171107,0.3755529866367091,0.3041337627501842,0.05554414681580127,-0.095678121450225,0.2319648705424968,0.33064155645509674,-0.15326646187085619,-0.14771049791953167,-0.02023446287762702,-0.13197203497479254,-0.3345679116123857,0.37190291614700943,0.06646785936613891,0.4218229802654384,0.4314807696338448,0.4261483187229796,0.16678109064772356,0.5235586343710068,-0.3042444244024799,0.40863343129973706,0.12105020078625703,0.33066132005239696,0.18646726677240452,0.16593633514896333,-0.09000063575845477,0.056734656462244015,-0.15418454932155118,0.21909876253036104,0.4704530497556655,0.3797769723600235,-0.30218669129765807,0.37161153195695473,-0.05529186244470219,0.1445137373106323,0.2828231180425909,0.01323397478191049,0.0067954439759190305,-0.21570039165308116,-0.24081252526669703,-0.0716261099386655,0.3960848038847303,0.31576963070059866,0.0867225778836642,-0.11077670226597057,0.3826477978590046,0.22280956306133587,0.11222439765576762,0.1566062838333345,0.10801284867578809,-0.0682097143107714,0.0495337003341852,-0.004939372992684381,-0.21012881193870736,-0.21400410214179055,-0.21637614787222598,-0.2347653781392196,-0.17034347691111934,-0.11914937002816017,-0.355760521288736,-0.06853726963406573,0.03239636595058941,0.30767226176859036,-0.20519608365818856,0.045889972052791536,0.18217549437886055,-0.021196370705444924,0.38252351206746066,0.08185178427899231,0.318154100926411,-0.03577983132085643,0.41590861324595746,-0.2622763420396522,-0.2690779973878724,-0.1725334631086647,-0.246684139620272,-0.22866555385035078,0.06343458531356205,-0.1945326420080952,-0.3559927821402914,-0.10971499143398157,0.03544625152750682,-0.04465450630881897,-0.3680964984529937,-0.20400056686199924,-0.2760691027045239,-0.16569794318069542,-0.14524303859256488,-0.26785862604117655,-0.21320740408028577,-0.22021528229572662,-0.3025644529810647,-0.09315020576413897,-0.2901108687352131,0.05217891750359573,0.22274927116039836,-0.25548009505467273,-0.2717915965865453,-0.1665390188037972,-0.16724072565347697,-0.18993852107357334,-0.14320489691978122,-0.009636832136914396,-0.0731011748942056,-0.22435880756901336,-0.12142878478604888,-0.10753069053142401,-0.27333458693272533,0.6179832028327348,0.9110980446616561,0.8410341778881273,0.7734579924399654,0.8529724530982136,1.0,0.7084607410294468,0.7941049544621128,0.8369154946362074,0.8158419241961625,0.7878318652636919,-0.3169348187645044,-0.36737478846167765,-0.32509312507779303,-0.15700502573012906,-0.2366456237836601,-0.30041910121485904,-0.2538823977294474,-0.1889683441596376,-0.21399395403782,-0.268738447881847,-0.31386150740232704,-0.3429984407859643,-0.2683208201190454,-0.14871832710959712,-0.2646357359028303,-0.34034372038617905,-0.3270277418247158,-0.3306611391788925,-0.30470544480810735,-0.280113520874866,-0.1785674040973963,-0.35003515109477124,-0.370284213851821,-0.37501187330593366,-0.3660183315946653,-0.35299484561204225,-0.3504906706372106,-0.3619513125530132,-0.28817866357675,-0.36617677208792176,-0.34259396314965496,-0.2988931364490601,-0.36072853450143544,0.016251595535546733,0.06567271508423218,-0.05755549712863355,-0.07932359994423883,0.03436723289957816,0.10969761084356196,0.032728298285266945,0.19264621791363484,0.054441481605431954,-0.15003446851872285,-0.1418750946613696,-0.17472100049653752,-0.10841385898527225,-0.02671353737587015,0.07775599966602434,0.02149114260031588,-0.1682144342763233,-0.03193290544380264,-0.020407559209495888,0.046735795600188534,0.0018830135820361938,-0.07640415943269802,0.10090612917695772,0.07604693257062703,0.04507196410451101,0.04701653765207739,0.19139039566043625,0.03746163288142312,0.07281830917821441,0.0782191670496885,-0.006426700622705491,0.051138143383448714,-0.029282293376500994,0.023579829271217233,0.05278902017487009,0.07618003556058675,0.08238664325725845,0.0963248640596895,-0.022733243960719404,-0.05672788956617275,0.10383677527848985,0.09954924238365648 +C18:0 CE,0.03717965370687851,0.1311908609702083,-0.14150380799816725,-0.11342999289365176,0.12289096874782678,-0.06885735133079728,-0.06748340973921124,0.10327995790393739,-0.2743171797570968,0.07417172185324829,0.1081339156616416,-0.23924851599772914,-0.017581829924645874,-0.16007166734724562,-0.17301658087068855,0.16840133545615765,0.0038255184059244156,0.06851253871492285,0.1950053504288476,-0.0827749295803619,-0.01003769287351933,0.06763464263022428,0.03254310916560349,-0.20626472192330184,-0.04890977388938007,0.1556898513532416,-0.1867286501615574,-0.13549494082338953,-0.0007711901190004944,0.07513489988453276,0.1651631765655981,-0.07952476814944655,-0.0008780158716006155,0.05913312509520426,-0.2426213736130733,-0.06783172305458184,0.0587467329094238,0.14265773228159054,0.1849228237577583,0.08938400939363027,0.11436579338273595,-0.03534050913838101,-0.27697440852702276,0.015234543011276419,0.13549494397884898,0.1688382489036283,-0.11198729148916166,0.22919768404568583,-0.0049932134930919915,0.14624608113697204,0.018486387732069686,0.2132548046714807,-0.18142893501395074,0.00960776305101415,-0.18323730826114756,-0.08015992540775652,-0.026080634918764167,-0.02426767512975556,-0.012512586515229048,0.019682379449765378,-0.012042325461149405,0.01705545136225165,0.12737170567517503,-0.02208602426215512,-0.07978452236079335,-0.017911224097107405,-0.020084285203906427,0.17557027362767103,0.12343745193827306,0.17011740461149846,0.08440977163182979,0.16954712872556488,0.1263651213588433,0.1238707444963076,0.13343007719394265,0.09122527862328135,0.02484009646331263,-0.04007067134181815,0.08648235965989562,0.15450814115827022,-0.12111244201806724,-0.13619971077536946,-0.017911976482691355,-0.02496393416459621,-0.21253605352447325,0.16618784072300635,0.034558418281152366,0.18347085344665293,0.19975635633736236,0.14565361914705266,0.10043875495214147,0.24674004352366022,-0.19082663722074072,0.17022024073688982,0.12066114913862931,0.11008469531569492,-0.00984292663510947,0.08063397842578338,-0.08433816533581441,0.004459723835815402,-0.14397372492366386,0.14177890055691264,0.22950738804775062,0.15284906715951685,-0.19002561704188173,0.13548446447636547,-0.03286708239839325,0.03347413738354864,0.0764698571290961,-0.024443801539842172,-0.03013027758859382,-0.15170712166538744,-0.10755777370280212,-0.03902481336978615,0.1479878714870372,0.1780539718270898,0.027741627042104082,-0.05509554301977991,0.15924257884934687,0.0886535675108255,0.04451568103753722,0.045904869320506095,0.05444562943125705,-0.061304882276592046,0.02391558946780839,-0.06858087993184575,-0.1665205383406559,-0.15789471267177033,-0.12314803999554193,-0.11381111775338963,-0.0776266645775444,-0.08973199140885424,-0.19629455501173293,-0.05425118747097227,0.02092664604101348,0.0981210582606865,-0.09116930048981033,0.02385368458732903,0.15619763742395423,-0.026416631130638184,0.22354663544189116,0.15073799345223865,0.17890833037549944,0.10590203771163666,0.2222090374037241,-0.12624230585000867,-0.18506737826707495,0.06559765425318365,-0.13297630716575748,-0.15085228371052348,-0.011316367207396425,-0.12288033530658644,-0.07310729226171556,-0.11675350165396298,-0.020022487484309653,-0.06940672225155868,-0.15033829436905013,-0.061729301984757526,-0.18873153744871907,-0.1429872449794795,-0.1330985306075656,0.01290442702961541,-0.14943236696302978,-0.1575504882791927,-0.2098419319747233,-0.043689309062159995,-0.18707938878014702,0.12469749759349362,0.2061027417203068,-0.009123009269340896,-0.11330394381625623,-0.041983263498956994,0.037827793474549176,-0.1608710988931985,-0.10458971519739071,0.0732201494548218,0.09115277383515064,-0.08311588370838577,-0.010638525743165615,-0.0668548811266184,0.0020738207471555567,0.6378659883004582,0.6552223699383621,0.697967082177565,0.5682848917420574,0.5363958216595577,0.7084607410294468,1.0,0.5749188095445067,0.532219536790247,0.6160445372459022,0.6237750102029451,-0.16768034947960722,-0.08746987535376578,-0.0028378479736101167,-0.06290812442840456,-0.09604402622719607,-0.0022070971016698825,0.07989317201475156,-0.10205406872951671,-0.0211926662140484,0.05882074808269758,0.07191713435434123,-0.14538777888501675,-0.13854964732800681,-0.06773595241389255,-0.015347592586365541,0.03843078371048492,-0.1511450244116852,-0.16757198780896354,-0.15876795983136938,-0.15268563174929206,-0.09969480452953564,-0.062634186271918,0.029557886669440765,-0.2438476664380245,-0.21015044552936066,-0.19859130586777304,-0.1997322676440787,-0.20839885797091687,-0.15697752179146285,-0.05806390401755229,-0.23482318872265578,-0.21105905060466906,-0.20022256175492534,-0.014402558675199123,-0.0028232876307269133,-0.04361414678879374,-0.07362352750933797,0.02238488102149216,0.06316507544455398,0.017846184348140053,0.10789744604983614,0.02089895532936351,-0.07955086976220864,-0.053313065509032496,-0.09833491352808302,-0.08408161382017898,-0.0179617282393752,0.03612977093666589,-0.006758081569375055,-0.09299368002221124,-0.02154175215382205,-0.04141144277531789,0.006148729352780319,-0.02648868786059286,-0.04358100841948018,0.06907838397424433,0.05953294629258057,0.04299551657455761,0.027292129194168693,0.13322838365182707,0.05297529330011506,0.08355580461748933,0.08149551631979127,0.01674720293425831,0.05105912877240569,-0.03802840641475289,0.015885537270514387,0.022178412988367924,0.0755873142973897,0.014203652407494147,0.082297244747399,-0.04646696816300709,-0.022978923136245076,0.02929261558391293,0.02484292351214549 +C20:5 CE,0.13173809623140734,0.12971060256219005,-0.376680805547031,-0.05940025273879173,0.17768489301671478,-0.19785122211974032,0.130441235886546,0.12097436337239549,-0.617862738804266,0.10211660080777644,0.1396723059581886,-0.5798418740824406,-0.18210304912041225,-0.2895682374349501,-0.33785378807944894,0.2129337307387607,0.031016342065968663,0.10741718043190526,0.5902924317456285,-0.15787644515866198,0.1356163011612222,0.08585730323318502,-0.02246891358002254,-0.5318770467239369,-0.1039271347098735,0.5383409315641007,-0.11983711129585223,-0.12142091994684036,0.010712420201673956,0.16811468869707966,0.39371310204010407,-0.12169013641211053,-0.1101682613052045,0.036416175961733736,-0.2729093120581964,-0.05815766249233212,-0.045368802736976264,0.21268505713926494,0.5019275330770534,0.38018691432675183,0.2031795124300781,0.08584868938483527,-0.6164278071679977,-0.031471397264827256,0.4580853109687574,0.4309273232465722,-0.1818989232078102,0.558143519756337,0.1258614777980975,0.49203591248216766,0.14789125209818074,0.27729508062657054,-0.07997998847650024,0.10847109943256511,-0.24271034479076822,-0.11394666488766744,-0.07802070377403664,-0.02983615195007906,-0.043320504690064654,-0.04297996148476707,0.2497679219614758,0.20621246022790937,0.4690493768770373,0.0683186258286105,-0.08052730722931073,-0.05051673498094911,0.26847660751017277,0.4889458013029185,0.4356196758643697,0.4990403466496673,0.3682917570348501,0.487198036307711,0.38646339417585135,0.4216223149767473,0.38039226956628547,0.3547902666543311,-0.059867571924379644,-0.11453869887684599,0.34711859278970386,0.38191980274679704,-0.18376437938977416,-0.05038821752137098,0.0700238623397049,-0.1436499630818838,-0.23302671100455194,0.45340531460208483,0.0014866481446487853,0.4084504126165167,0.3780338345154154,0.5031960971850815,0.25171590703370417,0.5738970571500994,-0.43613572968783393,0.4916611516051182,0.14161733035580587,0.34189401809471864,0.21313136285531045,0.2011675938146912,0.08222427506394045,0.07068696095300472,-0.0984320571626671,0.15594834019130738,0.5075329998679085,0.5201152686572903,-0.15107567354509113,0.4978554428534691,-0.02245375684765996,0.20714749609283797,0.31165967177176473,0.02766757052184227,0.00655554074923705,-0.25852467551559066,-0.14341244156628047,-0.07709115913184296,0.431523296675419,0.37315675603751586,-0.03866725140766253,-0.08538110102200189,0.4009532736548488,0.164928134071667,-0.015251455832492973,0.05773705647539702,-0.05268729520806354,-0.11105418226978832,0.02810268123646933,-0.07216574879247029,-0.17033744489529823,-0.19571627613096496,-0.2279868665710736,-0.21406006285289203,-0.09834321869742399,-0.10624652061032372,-0.2273520580248936,-0.10203594671177176,-0.07124391128320152,0.43436998155824386,-0.14707293430810475,-0.0088836965866575,0.22731422169758078,0.11864583417686292,0.36556484112765764,0.23560025675706237,0.3229209240412994,0.1311059704418272,0.5821175121678985,-0.3057249044488125,-0.35592105401834273,-0.2562088633279686,-0.15937349515839766,-0.11643133344160096,-0.14666142425137388,-0.330214859684276,-0.3363459035388661,-0.19547632939634615,-0.09142886664163563,-0.22202544548666622,-0.3122839024119493,-0.09667440160373732,-0.15937871736891,-0.15715570941145318,-0.23921943840359192,-0.2055412733579678,-0.035412413978933945,-0.042174181985284484,-0.179419154686614,-0.18933213140173408,-0.1541667452880032,0.030559871993072526,0.16650933863219217,-0.19793255742655677,-0.2689961012920187,-0.10165135992080966,-0.1309160331309808,-0.2373206476660072,-0.22329610841176764,-0.014466392336983342,-0.061973725396211654,-0.2833436864346609,-0.3213930414209737,-0.2702273453725706,-0.375217508691877,0.46535779516657594,0.8270845596206065,0.7806477008531287,0.8628650576096026,0.8761379885168349,0.7941049544621128,0.5749188095445067,1.0,0.9218316720141704,0.8438292627771882,0.8604319212424455,-0.44644266320513387,-0.5133847254708768,-0.4231036311041911,-0.3119042892970608,-0.43506190160726466,-0.47829894174208004,-0.3791800237370169,-0.37951424057780164,-0.43806969244487554,-0.44023249619072646,-0.39090385485047263,-0.3538089656258018,-0.3475147696514692,-0.35975025555247214,-0.44724877930964235,-0.44202995594670963,-0.3145864226429397,-0.2940459328330362,-0.3117992765455518,-0.3364855988139948,-0.331288613167089,-0.4707588007323808,-0.4218233840426539,-0.2761466259601858,-0.2987452389931315,-0.24855069823950462,-0.29709834651433004,-0.38427528139927325,-0.40198128920164605,-0.469968280294221,-0.2504349089136321,-0.21666229735152814,-0.25998703450168464,0.04123062081077562,0.06308835533179097,-0.046658996096773216,-0.08552030797086568,0.06494188177297933,0.10899800139269311,0.07226325225744971,0.22194642586151092,0.03713659982515698,-0.1406600956533294,-0.16230322063656874,-0.17888128803188466,-0.11854644090019294,-0.044084930963999756,0.1280361614135599,0.01418554283889114,-0.17518190680381412,-0.05646361366756539,0.014404326227382606,0.11544525644162464,0.06950023879591594,-0.04877885895894102,0.09480279981098613,0.12794937390319686,0.0841223286853108,0.0335436085044065,0.15015380651765223,0.04754662610058286,0.0756878377395626,0.06852950807886912,-0.045667436235233956,0.006163640990322721,0.00158818273610105,0.029044017429075152,0.051921985816229616,0.05200573746933195,0.15557997420546626,0.07097337810357579,-0.05756752232344261,-0.03303276932890827,0.06809611303770138,0.06498945938775522 +C20:4 CE,0.12405770827129164,0.17572003335167052,-0.38491355249271586,-0.10125141076385719,0.24404588758258433,-0.20881000789018586,0.08377994962608043,0.1722882078428402,-0.6293149219871454,0.18223594501610352,0.19854120871132683,-0.5894616953025045,-0.1946778360858048,-0.298758035236924,-0.39226775350353177,0.22226432001662694,0.0909527458822056,0.19047243976278294,0.6762632846131017,-0.12656232246452484,0.15420069697003883,0.14639885628267182,0.03401414645144397,-0.5262597378427244,-0.11831368618379509,0.5845644598899441,-0.17476100552391102,-0.17855496329710066,-0.014671455679904364,0.24385556206960923,0.42386804373671977,-0.07310064634198982,-0.05351739889467797,0.09990261761879343,-0.36568177944708663,-0.058906552118874335,-0.05222355920041002,0.28710508023899567,0.5895473178363059,0.45550805518049214,0.2099366865834095,0.08555779189593486,-0.6192666916556623,0.03372500060552389,0.525632516939876,0.47634849433842863,-0.13817648102013502,0.6454113103440315,0.13596553332585884,0.5306554347731248,0.21979504779539918,0.33116496941027973,-0.13532124179178104,0.13204712244280636,-0.3169094005238824,-0.0993908593859328,-0.04354382480927281,-0.020203875343191638,0.0006973312985961263,0.04658836630618571,0.2648829693111319,0.2567240294900147,0.5383963981359445,0.12659694032978702,-0.07881686637033147,-0.034422067558095494,0.29045454124562725,0.5461117774651838,0.4672858884536203,0.5634731629353049,0.42137029082475064,0.5635875797871064,0.45210390159279457,0.4800069793730274,0.44476296873739823,0.40814322667837627,0.006803417583327512,-0.11707964795576434,0.3663011034313938,0.43260795426864446,-0.12088606686857946,-0.08773429159781158,0.04398472172475097,-0.12079613863886506,-0.27971066823350255,0.5280383793489217,0.04912810486194353,0.4855706849427381,0.467364657456545,0.5801160934058648,0.24600163780577228,0.6557856489925841,-0.4272047089321022,0.5583503708471225,0.13275113626942403,0.45249495072220713,0.29300603951176246,0.26730748183100483,0.07921616676763835,0.07881624077588488,-0.0837425821512187,0.19476436460338248,0.5908041485631267,0.5531682209672005,-0.21488394606258632,0.5624131280649795,-0.014336611456104075,0.2142669285192815,0.38167065701573766,0.06516442350246246,0.03117149386620348,-0.25299746745050516,-0.18448604502489677,-0.09932784850869743,0.5247140029031017,0.3705181583293465,0.03093129062429116,-0.06460032628442394,0.47080026375466205,0.22635665136686586,0.04965797209565858,0.10707501343869576,0.012698391923593842,-0.08509115198883646,0.059718578589580386,-0.034698687983155986,-0.17166535012668174,-0.20232985195704872,-0.2424894306915935,-0.25115129959626065,-0.14516206679937727,-0.1395356690902394,-0.3007455067334494,-0.0540055539089611,0.013989376062508689,0.4837596845066589,-0.18387482649650044,0.011235985189169326,0.2487772093594263,0.06111843555900261,0.40590283837580476,0.20447348934674806,0.3552740973624651,0.08135906325061511,0.5965686862503368,-0.29693480057203564,-0.34592631528726564,-0.2331682705617948,-0.20202458743127225,-0.15838377240140544,-0.09871986451459615,-0.30876755520716526,-0.384766821112427,-0.2211834078797626,-0.09911124245822384,-0.21042872172717514,-0.3679514173931214,-0.1907541917505453,-0.2353768304857684,-0.2059196907152877,-0.24792471958526535,-0.25912971359751324,-0.12343004169784821,-0.1414132021058674,-0.26143260606720303,-0.1829713253616524,-0.22783876334893804,0.015332103762104603,0.17606451655834068,-0.2670286668104782,-0.31429082941738995,-0.15034457438953458,-0.18419289974493283,-0.27745265103811173,-0.23052480829809732,-0.059223449136626014,-0.1004540208331877,-0.29984077511914564,-0.31199705876695855,-0.28439874304571866,-0.4080996699313484,0.42245681161027043,0.8709250951616503,0.8453185973533367,0.882336443236057,0.9537723605814694,0.8369154946362074,0.532219536790247,0.9218316720141704,1.0,0.8010606646598806,0.78081342093944,-0.48614297662898076,-0.5667557250933783,-0.47210446447337123,-0.34127015596652466,-0.4728206216729634,-0.5175763377919523,-0.41349057852332693,-0.4268494601454699,-0.48323631981104403,-0.4912060466815598,-0.4403749792546268,-0.4613598045728034,-0.44553023427177346,-0.41024560486850864,-0.5223921435238691,-0.511371415234105,-0.4077837048441575,-0.3899181613277805,-0.4056348480698376,-0.43742220063091986,-0.4075134868493191,-0.5498194618966094,-0.5018032740230455,-0.3482321072226787,-0.4037697954180034,-0.3693702928681735,-0.40499499575280634,-0.48679430688636005,-0.47951596704694993,-0.5522949906795577,-0.36891055064765776,-0.3341340697511424,-0.3812864905189708,0.06554874692722064,0.09329459824499618,-0.040402817368617415,-0.08335148249347879,0.07440855282162531,0.14031056646538653,0.07155154796739716,0.21621040759659257,0.05689622394660443,-0.13601337492375928,-0.1457092115634676,-0.16337877392469136,-0.1161833408097936,-0.01864734282467955,0.1323557463927562,0.04703742119282781,-0.15976519557914307,-0.028784032899039223,0.00014096306343632049,0.09096999937515103,0.05836229413175305,-0.0739898812801837,0.08573204736645156,0.09811045326313719,0.08845447431797067,0.051884155476826024,0.16643997649812783,0.033895784846933244,0.08290106754719065,0.09302964319535412,-0.03730963229700792,0.021375089142138055,-0.00443186174486397,0.0394481159834706,0.0651635144440072,0.043800268873151006,0.1549694909048288,0.09810770761344552,-0.04324727616219097,-0.05971533617472543,0.08857180688472051,0.08457960895611542 +C20:3 CE,0.15475316173435752,0.13854046655710725,-0.30694929507676766,-0.06804225040309125,0.11823504148061002,-0.1593078287424024,0.0989431336844277,0.07275300976446583,-0.5198339043815025,0.039825116319263776,0.086854606644417,-0.47558409390580714,-0.08301935023182055,-0.2338388300727113,-0.2771546161251782,0.19310898563416456,0.043187701013518445,0.09432749614476824,0.46951770149197763,-0.14600055667684192,0.08097352423805945,0.059807181120491944,-0.01568811910112739,-0.4471131608626736,-0.05720149764876037,0.4026088312211708,-0.12774517659710644,-0.0906316606822744,0.01268337219240675,0.11686111070937205,0.3309479535843983,-0.12123593169960115,-0.10480467799690439,0.05675829938989717,-0.20371167984443414,-0.04960901401691035,-0.012769672068642917,0.1723586675946108,0.38938936194232826,0.2566510945109134,0.2166568664355117,0.0728348378128891,-0.5117796962281619,-0.041832791399755376,0.3160725666870989,0.2998078909407607,-0.15802296192343726,0.4039726387527604,0.08655769328507908,0.37659828326798367,0.08914960498192041,0.20735157170815705,-0.08715103686734652,0.08304228766547365,-0.1665900173677773,-0.11148864175648697,-0.06467555153821775,-0.021078449079560316,-0.008630343317397215,-0.07412913398156144,0.1780711423870154,0.18511312904740646,0.34472170304925903,0.032588575559870006,-0.06773113801815643,-0.07634874090489645,0.19255816156189443,0.3819768587469666,0.2968959297411703,0.4130226473840107,0.3042371140265996,0.358415245205029,0.2747007986366664,0.3377979761257886,0.29799033714385553,0.27425761748067246,-0.08646496516158958,-0.13874998435774566,0.19534351336064346,0.27116369776102683,-0.18268051092045529,-0.01573478948322768,0.05032448112091803,-0.1360122711777784,-0.18840518332419967,0.3134093203472025,0.03340242381186106,0.28494908652439527,0.2780121630440465,0.35572587074774725,0.2110598525692613,0.4458861294373967,-0.3482597500336586,0.3651739197429401,0.18694975498211777,0.24200982389091572,0.14945102129116639,0.08186386783532751,0.01619264352304861,0.005493144787943181,-0.11232610371611672,0.10010419036030462,0.36809710878881213,0.41296033170982777,-0.1295773066544007,0.39987421213256985,-0.010610566095683534,0.18620264006804457,0.20424363337797963,0.01794631632770008,0.016072650230138274,-0.220824708949264,-0.10658855657578908,-0.025434909315376855,0.30613123947259235,0.3281365721368873,-0.08300677050671194,-0.07320092945643657,0.30545517216437595,0.09486730831313613,-0.041462185665431785,0.03834388929641814,-0.05181581232394235,-0.12346225901750932,0.02410957408146125,-0.11013128508686708,-0.17727475463373982,-0.18496059094631676,-0.18459184594654698,-0.18157123034507544,-0.09117319564200262,-0.07511741486407161,-0.17447440044006607,-0.1120232838801077,-0.06393098646569932,0.3259529814896853,-0.11122207339103406,0.014330699721665893,0.16393255051313674,0.13557837932601477,0.2671979162894815,0.15910012806225746,0.24474840314635032,0.07870601960357064,0.4698866285507728,-0.264192668795969,-0.30178689107373535,-0.25426064967630074,-0.1392104659729548,-0.08919388519649935,-0.05668351164304675,-0.24216379578612374,-0.3016630632506695,-0.041372250579193394,0.05870124380623939,-0.12313397367886311,-0.27907339530525077,-0.02081681517913716,-0.03216458853833758,-0.03688809704184708,-0.20091569168104756,-0.1953983845480638,0.022347323085046146,0.04535694298729446,-0.0706411326311508,-0.16809070311345914,-0.06486342385257822,0.03476634793692322,0.14459727361814026,-0.1916565578902463,-0.24203918637949606,-0.06862761711230213,-0.0752362264914292,-0.09373379559829925,-0.19607945659742712,-0.015354566144612267,-0.06220971304457781,-0.19173640532687622,-0.2438282618173325,-0.17925846783307645,-0.29713461804677355,0.5941931120369675,0.8239202455054486,0.7117842235612202,0.8106857490212594,0.8245976818584722,0.8158419241961625,0.6160445372459022,0.8438292627771882,0.8010606646598806,1.0,0.8396324714905136,-0.36439074846041813,-0.47964023273007467,-0.3536549483922808,-0.24715212923897142,-0.3992432695009629,-0.4551513951905015,-0.35449456641165333,-0.31252792801062945,-0.4103387892155616,-0.41029015595533275,-0.3774150239889332,-0.24202627264940454,-0.22988406729817568,-0.3105861275206182,-0.43036139917698646,-0.42557600786064376,-0.23228471651429697,-0.2004091287010656,-0.192477952716551,-0.24094609162149652,-0.31427158102450203,-0.47513894652431327,-0.40686429364836796,-0.1856049633405509,-0.22413670090116186,-0.17410512330161934,-0.19291456243569025,-0.3023286024169873,-0.388668757236684,-0.4613123491272113,-0.194174517418079,-0.1780551067163586,-0.19881535294343608,-0.007356609438477468,0.025911503661839405,-0.06003982074317023,-0.11299509589440344,-2.736491408577921e-05,0.07050600577670543,0.06966120794801933,0.18611438028192512,-0.0025027948781745947,-0.1648061864226996,-0.16162464444830993,-0.17304462317725006,-0.11397410251719277,-0.07187143469713951,0.0775310155082559,-0.004769987736364422,-0.17513338011695526,-0.06905094238303261,0.00011100747858275078,0.10149747387934498,0.0542090201179728,-0.03301550991698963,0.09102642670098368,0.1207750981980589,0.07654866430852741,0.05817870320163331,0.14443254679450132,0.04384784195960396,0.06092192678111088,0.059887292678845974,-0.045027969287771204,0.003852949511500367,-0.0231178136256208,0.018519619217931514,0.055165853200293574,0.04528736202167149,0.10185364520341984,0.07823734089521442,-0.06020346805836097,-0.022720117335740468,0.06591593841778416,0.06953142829810684 +C22:6 CE,0.13029893918582203,0.12705188748164017,-0.2726450305278054,-0.06560817111701123,0.15104129414303424,-0.15389370013072634,0.08066942623309552,0.13457256495553022,-0.4955347086832529,0.0818946307567345,0.15036762946103102,-0.4551899127532599,-0.10566052825558253,-0.25732032824232354,-0.28226280253739866,0.191511403041828,0.00795744364025343,0.08247680908144259,0.44319083980809193,-0.1017130612659062,0.09005815782572912,0.08481794932886369,0.010276578453564906,-0.43736568596421804,-0.08574473940218214,0.4146926011432582,-0.11467865055307842,-0.10950982102234622,-0.00024175247430841177,0.1443060758776116,0.2979444347191348,-0.07382959744608263,-0.08273100323525782,0.02845885459411354,-0.22516071469472218,-0.022754878385701546,0.00461217978445195,0.1627947216386458,0.4386287012503844,0.28143995500292573,0.19794158742245996,0.031087555861436016,-0.49105281002868756,0.011529489184000036,0.32948931572023327,0.36923725063177354,-0.171253309787792,0.41714740343520507,0.07135929347453385,0.36380427673960464,0.03737909235225695,0.19195724184896004,-0.0933651231766344,0.05629540656257251,-0.20583137282916603,-0.0991706614534152,-0.08403041240900364,-0.03656955808559992,-0.022621897409647356,-0.055791490094207884,0.1784011694853674,0.16772556706377856,0.32804325838164605,0.013266489683649707,-0.04350262973723328,-0.07178987748023187,0.17152566119270163,0.391132100736592,0.3265382762711659,0.38962051316944396,0.2770580894115732,0.3543097567311089,0.27126126492350794,0.3331297060706471,0.2929430522643528,0.27392894558943015,-0.07490210232269728,-0.12510095649445901,0.2505161716403183,0.2981053215044477,-0.14788605301820013,-0.05906425134971753,0.07007208787394119,-0.13099297245384056,-0.22544553361188815,0.3315639760402327,0.000936235333976647,0.3088607975101949,0.27912040531989246,0.3671000244582801,0.16541119591246423,0.4485048971842632,-0.3110885911426029,0.3578462506911945,0.1231382392196941,0.2192752230816137,0.10967344070916724,0.08961731596364511,0.04966109281048932,0.04977264221321334,-0.150525513178625,0.12304220418817975,0.38270426208303276,0.3753897753614866,-0.0962989126449362,0.34634295380098445,-0.03506740184056928,0.11948964398697612,0.2278802541920819,-0.035997414907989404,-0.023513950440243982,-0.20837638619528256,-0.13253804798289592,-0.042364456979359984,0.28785368691560076,0.3554754741003086,-0.06123107129549114,-0.07257898023365376,0.2567833886531035,0.11724445164576952,-0.0022488034221092496,0.04803374736208683,-0.03319807780888048,-0.12077032686548989,-0.007150584961856241,-0.08638420185200808,-0.1570977350581055,-0.1942544495573897,-0.19733217150384103,-0.17497604383898016,-0.07973225179369829,-0.08145243974380545,-0.1862126237098672,-0.13476808353966926,-0.03489123692422089,0.30756663129848344,-0.13038943645043397,-0.021694187653399585,0.1714193499118544,0.10506459127023961,0.3062845586147087,0.18768142324001522,0.2901956107437257,0.09909298259845362,0.469891329194157,-0.2619120399249543,-0.28715319986496946,-0.22003876993984828,-0.15135850342947327,-0.10378455816706629,-0.10371822900777916,-0.24693351526895205,-0.2670057269730877,-0.11468594738137312,-0.02957331218094457,-0.13946570835034258,-0.2312636468087711,-0.007178925532658571,-0.0802979978738999,-0.07560148971614698,-0.14186041815327427,-0.1376037311882572,0.07026814765354139,0.03238303526261817,-0.10797534385759137,-0.11703815171389376,-0.10208208744141128,0.05729332731271226,0.21847383096846837,-0.14237361434728868,-0.2021259512889911,-0.06793257209807758,-0.07199855835731456,-0.12285513097520458,-0.1403495290573853,0.050453789673893086,-0.03490774014397746,-0.234133247450585,-0.23839482081820848,-0.19725878058714336,-0.2791903957128429,0.5486477377184679,0.7498939806674056,0.6943844610558865,0.7427244432890447,0.7539200300211463,0.7878318652636919,0.6237750102029451,0.8604319212424455,0.78081342093944,0.8396324714905136,1.0,-0.4340752825648154,-0.4737470745544054,-0.3216847824251446,-0.29862691456518425,-0.4061096978054812,-0.4144594984281469,-0.30960447010639197,-0.3486597228672373,-0.3798245293104274,-0.3563337563294392,-0.2948704944011761,-0.3049913372663479,-0.298387020820123,-0.3085705767168746,-0.3657138193582725,-0.3268416952524762,-0.24606634938672495,-0.2383665570738131,-0.24856935644082898,-0.27846352748191816,-0.2651935529000408,-0.37556163526405334,-0.3170082785406096,-0.25195608585004287,-0.21350525361687195,-0.20404260524471807,-0.24501630453372802,-0.3125663966410897,-0.3318231247027631,-0.3811568847312216,-0.1796474863162894,-0.17637475821579238,-0.201471083454907,0.040502945180808395,0.04173367366619952,-0.043237014248282524,-0.0656380756298474,0.08196157017027411,0.1023013162995452,0.0684352500591353,0.1969858665997206,0.01729252506393827,-0.10682401001605334,-0.1329244423681973,-0.15742112588559548,-0.11424730483354521,-0.04910827568197754,0.131091590637395,0.022328866053102282,-0.14787571489665224,-0.040373554790959096,0.025999211190923875,0.11806102627553075,0.05509912891878022,-0.02912472088191694,0.11084572211354139,0.14381434233447313,0.05638431271759697,0.03841466327432452,0.14473749171150393,0.07612267602204885,0.047857658005409476,0.028488095157015943,-0.005212937389209525,0.0023085368824639113,0.010465041086909967,0.03024505635139497,0.05772885446488356,0.07162640689649145,0.11738203831023046,0.08624582202790673,-0.034208679727592305,-0.002586808524372423,0.06858350828143063,0.06572043237431766 +C46:2 TAG,-0.15513504998478525,-0.055282219289681356,0.11564153067431727,0.02513965573123594,-0.2855223736091497,0.0604030420129765,-0.009990943745448755,-0.1919067364175814,0.26776425481937105,-0.2347902572489687,-0.29509573040613285,0.26434606482144435,0.09670295308583361,0.1185648345494701,0.21608370403958094,-0.13008070870082744,-0.05992726594587695,-0.11427526901158319,-0.3578132468039809,-0.0639836861164598,-0.17311898753824975,-0.17519061519100856,-0.10700955902902376,0.20962606836340875,0.01700539277167315,-0.37134527150121804,0.09807560661280809,-0.0005796320994011249,-0.05202105627663143,-0.22719462802639623,-0.2561318745986938,-0.10482980088601422,-0.13504410059375188,-0.08343876714224463,0.22075544994159346,-0.040268575594720794,0.09840826867819841,-0.1732793421529356,-0.40725248220785965,-0.28628833018207417,-0.09912264298521273,-0.04965100874075638,0.2753646002505119,-0.18075928319450704,-0.24375634717621686,-0.3986099302425232,-0.01415269126362297,-0.34757840671155066,-0.05608114060556528,-0.28478827024716435,-0.08440505572910563,-0.11465882529465733,0.0939776212476069,-0.03626047135223161,0.16870650296641426,0.01300432047254604,-0.08040486287369848,-0.07687120506927307,-0.09305608186838982,-0.14401565972135935,-0.10837698258794823,-0.280716372521072,-0.3678714001117096,-0.13697935494335656,-0.2510961556386611,0.023829378150351577,-0.1847671608431515,-0.3844074029622205,-0.2505999444951276,-0.36399155188250604,-0.34669681884056597,-0.4066189297685715,-0.31457670889753053,-0.3800400406998976,-0.3446811093277399,-0.3591380525954951,-0.1558638048553859,0.05348075605951786,-0.21726178368820256,-0.3479869454677511,-0.05782953225940876,0.031717732730923404,-0.14346358971819292,0.042851283375992255,0.19134479710801294,-0.380436121127213,-0.03840109000637782,-0.37306933030487366,-0.3439614077340222,-0.3926182121712173,-0.12339475565737223,-0.36962955554195537,0.06738462807419787,-0.32259029038597886,-0.24116621539704827,-0.31560957165630366,-0.20979825294161472,-0.23691403434257458,-0.15910000961087947,-0.12846661036334467,0.010870548912143457,-0.11008687775660694,-0.36533857945708575,-0.2980422381030088,0.0786986832538216,-0.2838758785030818,-0.07030439834709618,-0.1344142419762798,-0.3058529355373996,0.018173994015249054,-0.06249297425098825,0.08700374080018095,0.1244009157200431,0.08387315449130654,-0.3306958574760544,-0.3322525556672301,-0.15582083963980087,-0.04035234495354953,-0.26537821808158857,-0.22477600603582043,-0.13084954026046022,-0.13345642187032206,-0.056533215740858754,-0.0034964252330505247,-0.09096325996000519,0.0906586343443587,0.07184428366949876,0.23891360210504087,0.25319364002572464,0.19103858064105458,0.08323448206280085,0.15137060129558177,0.16866516130502568,0.028147829838681325,-0.1716562554588642,-0.2717063535650395,0.17453476638425072,0.16529524046754893,-0.080506332317272,0.03460631197710169,-0.2222517495428912,-0.11293784138545215,-0.192055591821024,-0.031515945827036776,-0.2505348846089102,0.22729099577682163,0.20764614630592135,0.0441099685595073,0.1347792248437585,0.07246703204593116,0.26514683413147955,0.29746355462909163,0.16028704037691613,0.3910703603997221,0.23450693904718223,0.2534594448304886,0.17518457776299012,0.09537391618991987,0.1502271899815312,0.08706531661693602,0.048412425821946437,-0.021851760789705552,-0.03333035960543729,-0.0032725918216404276,0.07433820425928668,-0.03568254370746483,0.09175070957219005,0.036237003261564246,-0.13016961980624395,0.09849083058189041,0.22035188141982107,0.04462075815256841,0.12391402734361508,0.09346736680247988,0.004319496980174153,-0.07236885749185774,-0.009487867057760684,0.2878104924481786,0.33360331934191073,0.3261846406806115,0.3135112543560672,-0.10056339438173562,-0.3290894677554092,-0.341532675273777,-0.4050633139870224,-0.4333127950123177,-0.3169348187645044,-0.16768034947960722,-0.44644266320513387,-0.48614297662898076,-0.36439074846041813,-0.4340752825648154,1.0,0.790349228061896,0.5807843750918174,0.8279360758177768,0.8031984547744024,0.641849013045812,0.44284631504842287,0.8025389355727517,0.696370467198304,0.5404313481568679,0.37036013815847946,0.589328812077021,0.6411929786282193,0.643352277928563,0.5594429936184511,0.4214271237302404,0.4289441084826145,0.4473475673817523,0.44031592830086447,0.489181210220298,0.4805584337918835,0.4404013478651995,0.36031694004153525,0.2452250460281572,0.3297901476968959,0.30172408258508165,0.32131165349028945,0.39905785891101,0.40108737803830746,0.44044330612199417,0.24192834816186565,0.2594551427758282,0.22752487825453344,-0.06888124793877805,-0.026675397477652952,-0.019776492113273574,0.0396328424205056,-0.14193369096257358,-0.10709266523060655,-0.079151028408919,-0.16561614375212028,-0.05649329661900701,0.04855247600583249,0.10321184483826054,0.1142360152769033,0.12352925389909192,-0.0008207929710609637,-0.13413691506463768,0.0018100679281073194,0.07384427444587735,0.059905249113003926,-0.011005557874111182,-0.13317259014009003,-0.08464682618178872,-0.006440450588331764,-0.10491446937466392,-0.13114721792244913,-0.06646147891603098,-0.06776554276090095,-0.11924224420386517,-0.03624115173594334,-0.029627818086538853,-0.048409783861984065,0.0379026726031644,0.03837737049107024,0.016188802252286777,0.00013285933149978559,-0.061082407450534004,-0.025442769107851898,-0.05191016813791555,-0.07114441048846105,0.0793115838600393,-0.006284002917818555,-0.04756508711536322,-0.07533075431966987 +C46:1 TAG,-0.207318244398631,-0.06688767530206896,0.19784917005961167,-0.013964401155538788,-0.254716756230732,0.08714120804507094,-0.15352059135997173,-0.18418372129634644,0.36795856205509875,-0.19740786613477196,-0.24262906673976817,0.3647671536007062,0.13271559868251873,0.156446261291363,0.2090743045442219,-0.14975937354744331,-0.08965081566759395,-0.11951316285653932,-0.4924837432032904,-0.025791183927214658,-0.20983659801864543,-0.1346989406222988,-0.0457784184311702,0.302481514860866,-0.024858867653366677,-0.4671174159651897,0.07018263334325166,-0.010865231944010536,-0.08478511271422416,-0.2293595671913712,-0.2856434359298602,-0.03899092225761455,-0.05146666296921746,-0.07363230787663559,0.15645911080259323,-0.03116444933417673,0.09240751392845462,-0.17222437112705105,-0.4964149131791186,-0.3595188602328604,-0.13863957283759953,-0.13643831528618355,0.36607945116427276,-0.10338698823461137,-0.3387243562540992,-0.4048797813572314,0.04240666211146019,-0.4181258434975255,-0.1201523191766783,-0.406662018864462,-0.13738996482569119,-0.09478265868977147,-0.005985701829270298,-0.08900089171068477,0.13071574305562542,0.030410926898031775,-0.06705979876412038,-0.09080351475184094,-0.10989569579927785,-0.08990641165701542,-0.20072067620132703,-0.33383092495459143,-0.43846361829443037,-0.15018841514185732,-0.21109825154412787,0.051001442335702904,-0.2697552744994335,-0.4590826643179616,-0.3039954913280155,-0.4571756656112848,-0.41374303597714474,-0.4575308248799619,-0.35776858280246376,-0.4418332767921018,-0.3912713940327476,-0.3998590035277159,-0.07412743734905013,0.0948702495176836,-0.26602086926852775,-0.3951517270187105,-0.009611381489483338,-0.04185245662093249,-0.13872019425415585,0.1033784967162061,0.08412219847322072,-0.4306831413323144,-0.04358288200516302,-0.4011399857484869,-0.36589903261808276,-0.4651040358230619,-0.21085070461055902,-0.44841112990568727,0.20007634132556823,-0.41463811707809556,-0.244191316750463,-0.3672723609363529,-0.2891690552082329,-0.2603873409102909,-0.19316177946152166,-0.11170855130154012,-0.02668180520376984,-0.07538512448407339,-0.38699914429052507,-0.41204303572170886,0.04466510451642599,-0.42060846513252426,-0.08041080926641203,-0.18465390904834753,-0.34035151607146197,-0.026186492559001476,-0.04110956380533358,0.10324767881761698,0.05783131535888715,0.07931431400761972,-0.3885024124868939,-0.36868030398506685,-0.09551987474841553,-0.01541470693716837,-0.3481481660759804,-0.2057452059619588,-0.05011054713943987,-0.11773970078124708,0.03134934544493388,0.06871148359130873,-0.06036230454271628,0.12955578009984248,0.07361940679201041,0.25292978243141667,0.27286689476501125,0.19569091643087855,0.07478459566975816,0.10197308679298589,0.12776082663364324,0.015644498829721385,-0.08503980449637193,-0.3977839941157695,0.1644815018783362,0.06852678764618815,-0.046258444088976676,-0.0769486228085905,-0.23533474342457428,-0.07807838690722532,-0.23302918194551353,0.009885760132113501,-0.39471042117674293,0.31777981342385614,0.23494170286007118,0.2762496241336634,0.11732672145751716,0.046153942767399814,0.21160189093836948,0.37506510681331606,0.34800346953520606,0.2147973962587884,0.10090787585220655,0.2154437056629269,0.291554788528146,0.008907142602055083,0.01194866577910496,-0.012439050380220747,0.05313236974650684,0.1463514145839633,-0.12358011919336655,-0.1483526678766686,-0.06679310920935091,0.07100918894573956,-0.017142950942175335,0.11109797723400337,-0.02670484013037499,0.24994910840029938,0.25199744663130147,0.15608751715514482,0.1709613564712,0.01982817187954198,0.036782386420132346,0.03424989455283881,0.09514135254479252,0.22515579656743268,0.4563798491436219,0.29823197855075734,0.453991678898395,-0.07275637786674327,-0.4205324876849233,-0.3463764427536409,-0.4911265526626465,-0.5623463586194637,-0.36737478846167765,-0.08746987535376578,-0.5133847254708768,-0.5667557250933783,-0.47964023273007467,-0.4737470745544054,0.790349228061896,1.0,0.7987927704939582,0.6840078689008366,0.8604395357213758,0.915504766070048,0.763247040299258,0.7332309252543223,0.8353002728226783,0.8320393679032415,0.6676473068770391,0.5080977663207794,0.5430476582807627,0.6328988673935987,0.7472286294972671,0.6846941005811811,0.3517893093404814,0.35369803939776745,0.361250488352723,0.40424073028143603,0.4700812473248797,0.6187215593919274,0.5827097367895544,0.14957317745202006,0.22790622787747156,0.2216332822396145,0.2292893748075805,0.3433084880971828,0.4239958208214131,0.6184400633293072,0.1210357175887489,0.14429638831657432,0.14252930782092596,-0.06651619384476298,-0.03889723120652086,-0.002725613102137986,0.038751904255159696,-0.10030695429540294,-0.11812496127695539,-0.11042758058832369,-0.18384774891698696,-0.01412840009782633,0.11929450131867798,0.16217209859541715,0.13604427016973694,0.13446065274875973,0.05590490197470556,-0.13038015429883598,0.012107891822691548,0.11568964990302867,0.09764239986229556,-0.02772502798107037,-0.14098107944929603,-0.07454630946765188,0.011303603381442791,-0.08610383946690976,-0.15476764325595602,-0.07624030459328063,-0.04994729460671537,-0.10343956993465912,-0.06403294371385077,-0.0380205636076278,-0.04124524103269324,0.054316106574221944,0.04059707891522363,0.024403536247978565,0.031158764308839813,-0.024253788299926422,-0.0019566013656486256,-0.08795560906589465,-0.048057691388628795,0.06678494675130972,-0.009852620743589028,-0.05825021512292549,-0.09224630799877843 +C46:0 TAG,-0.15661688130448628,-0.08904096744158631,0.17175602164221354,0.041311852259024645,-0.27622671751326755,0.11718149643373672,-0.09350865977653539,-0.18757622895699244,0.339567647540979,-0.22117186632703145,-0.23129906068632688,0.3214127859637865,0.10968488826184246,0.17741387671580233,0.2798080550375581,-0.12789868688171688,-0.0664756123779355,-0.14353545682202792,-0.4543266039481362,0.03986287396267133,-0.23883849297563675,-0.10639241046249485,-0.045934139002425815,0.2565958514246798,0.06319440843351437,-0.4535882294377719,0.07024772813882738,0.05017058575306173,-0.0687926610027957,-0.2713400965297536,-0.3092480727327884,-0.027235471545928362,-0.03507023319294413,-0.07723656738877914,0.26885412446775564,-0.009522592139763263,0.07475178234271672,-0.1825442430956578,-0.40997827369481027,-0.37643436869106806,-0.09783093780981478,-0.05335297906937912,0.34290161407741904,-0.08541571448045762,-0.3576287213135126,-0.39343923833907424,0.02029597920191154,-0.4561287512957378,-0.08249092392195258,-0.40522355874515803,-0.2086225377585416,-0.14890337281428484,0.08514348991894229,-0.028504512832933968,0.20903234172183607,-0.02232918148886663,-0.03789227410103659,-0.06287142142052023,-0.0778779439882044,-0.14191602729925523,-0.1653729744162808,-0.3066227089648736,-0.44741001681255,-0.09342102006442643,-0.10638673691695744,0.014617972665525641,-0.23370877732137904,-0.42515568770676154,-0.2751418005266504,-0.43046326457507605,-0.39276957710082816,-0.46316177075728215,-0.3908631630626834,-0.4330416029017975,-0.40536616039448065,-0.3810706466724234,-0.10680128508039204,0.06752639855395018,-0.24887494746156633,-0.37406705712109556,0.02279706548454012,0.020182427678890863,-0.07268325304996438,0.05218279755630528,0.14370773050481983,-0.4017697723535575,-0.06155493794446584,-0.42924316276362895,-0.42091993579246734,-0.46923873005660593,-0.20701359958482907,-0.4586403444264241,0.20889496427850657,-0.4184687277304742,-0.18528431717931912,-0.38534646879929185,-0.3255573879470097,-0.2538340775132836,-0.06190986515032482,-0.11211795469003748,-0.03872429156331874,-0.09178340131901687,-0.4068961133325982,-0.44060802463090404,0.12472670975731252,-0.3819708995837084,-0.06920050736416608,-0.16065995745791278,-0.3850049855946117,-0.05033843502446507,-0.021892836361786072,0.1351584339456599,0.14744272212640214,0.07785022081025791,-0.40965255451564975,-0.2857958031410387,-0.12883463981010368,-0.01171895780828115,-0.3658863003176677,-0.19973327952634995,-0.06861627910520372,-0.12718297066638123,-0.005697152450057853,0.04008676005792899,-0.10068651369381662,0.03177250421882323,0.060153189329124286,0.23235962803151533,0.2576786800115457,0.18010726625737522,0.0779590965695111,0.05984992879614012,0.2445090637723274,-0.020981743931407688,-0.0857549228269043,-0.3861602842442758,0.2448250119735421,0.05792900377175372,0.05202531905311593,-0.006786632676753231,-0.2057524190000121,0.025545565197187935,-0.19503367473903285,0.1234178273282711,-0.31702504887500094,0.4411817189030471,0.31596802379526173,0.3739562899780816,0.22152147806780545,0.2029503949241886,0.05637303630378175,0.33668013371186384,0.4068869810711971,0.12946610376504017,0.022995409631826724,0.13918736335596735,0.367268788267617,0.12002672762064977,0.11681648006620284,0.03735075281065936,0.09099055277200645,0.25150368414921176,0.02665937958166148,-0.007886505184429671,0.028908302597500643,0.06390737580714352,0.05225153621290957,0.08673791236090077,-0.008367576770339643,0.2761515059026884,0.30607093435160715,0.2017506295995072,0.2219935523081149,0.08044824888906461,0.037046288771486795,0.04777401496101424,0.14613285277752716,0.24443409645839895,0.40488536772279343,0.20369504113369036,0.46936826134151616,0.03444471906789318,-0.35682371769574434,-0.27701964680101815,-0.38099007558597686,-0.4821068905048078,-0.32509312507779303,-0.0028378479736101167,-0.4231036311041911,-0.47210446447337123,-0.3536549483922808,-0.3216847824251446,0.5807843750918174,0.7987927704939582,1.0,0.39849700390646375,0.5700974661592242,0.7745838496964592,0.8329598657722135,0.42537399302423684,0.5831651540223065,0.761936400996521,0.7755739850993117,0.3705624115470461,0.33020087048710095,0.35999278814842695,0.563454149887636,0.6779446406214268,0.27202979260286764,0.2962628569915185,0.2586959100086337,0.2260978512083608,0.24112003812089688,0.47984116191770915,0.612531765116821,0.17296497631910976,0.18855400219449664,0.2056539653964184,0.16954849337459613,0.20627662623506546,0.23468379763682415,0.5012812421017645,0.08980407860643116,0.10468022195718805,0.10924551756654426,-0.05956192614607298,-0.07343125525444417,0.014035812223738623,0.0569737927177971,-0.05946156770024643,-0.10617551519052984,-0.08093775607812115,-0.14615775586701119,-0.02878699767001957,0.10108901740853521,0.11798821508758388,0.09752514429129591,0.09049249141298765,0.023216067926830886,-0.06845679974555202,0.005331904993017602,0.07208830358740474,0.066927018969286,-0.021540075797716003,-0.1036113842329995,-0.06923742698687589,0.011296225148864938,-0.09732744281636964,-0.12282580326118886,-0.1046257688032911,-0.05945299730081407,-0.13647368935667586,-0.06885317999490786,-0.0681077545186443,-0.04035239014730409,0.06491281804411701,0.050751359565670236,-0.0037843980875275573,0.0019089761130793592,-0.03737915681594362,-0.00618620457988715,-0.061794968018202924,-0.02620372930055607,0.07567504673297494,0.01884803363589638,-0.06471287313241963,-0.07343008421642705 +C48:3 TAG,-0.16005678730335476,-0.012717657053526446,0.0407856741655331,-0.04577826884400213,-0.18697028637938337,-0.03239675814412204,-0.11152083819122957,-0.13294728997008673,0.14966675159874268,-0.14601006030542354,-0.20609994992860348,0.1553806826232048,0.04692286611245713,0.01829764068349413,0.06101086924142981,-0.06395709518243492,-0.03756703484028816,-0.033166385720238944,-0.257102706083629,-0.1103920073801602,-0.11266699973248923,-0.1270441445009596,-0.0766399484872013,0.12389363726350636,-0.047595877056478435,-0.2773595163762991,0.03572180132609355,-0.06281043341450399,-0.0473774911225857,-0.11579871533790909,-0.16869931844842748,-0.10163993146667574,-0.11048504274633215,-0.05989866293257141,0.011771235210633882,-0.07283043782739873,0.0867426367639591,-0.11152084757637677,-0.3038881397477694,-0.2007618776586038,-0.06723247140285658,-0.06762827208834976,0.15040378539688326,-0.14314318134062612,-0.14911633874717625,-0.27889202101314814,0.0027841379944454313,-0.2057156099205276,-0.049416687341173327,-0.22831839177575547,-0.036252362667848724,-0.013036904895097082,-0.06809649381982516,-0.08528662277531578,0.02500027530272586,-0.02105854877835412,-0.08695020901680088,-0.08751325765755068,-0.09120151902521899,-0.04261510673371794,-0.08847099948478686,-0.19942498613788998,-0.2497864980503625,-0.15144818720387465,-0.27814541240312096,-0.005174374780388509,-0.15918196392319336,-0.2712125362710889,-0.20375058832832807,-0.23491147261457948,-0.23928976024631893,-0.27096627989844757,-0.19729239755907593,-0.24641614676221751,-0.20548754921251505,-0.24263544651638724,-0.12140984848320949,-0.0162768126722527,-0.18100147491393107,-0.2928761355619208,-0.04611600848931416,-0.06333708957750943,-0.1673321241589398,0.03542635739930683,0.0479654013167919,-0.29376970276594755,-0.016624444059836596,-0.24338109016782816,-0.1860207067030851,-0.2633232249424404,-0.09859042762540512,-0.2325388988686179,-0.013532829045281088,-0.2112369222091072,-0.1676107973494605,-0.19573935396689654,-0.11474208434172813,-0.2314423595905244,-0.23452629654358592,-0.09254442773266196,-0.06129476100357815,-0.04149170774107729,-0.22378959711528912,-0.19513795131652506,-0.05240520983598099,-0.21349845733413986,-0.04329738789469978,-0.10566743570957217,-0.18675963565784315,-0.0025707373679348896,-0.09585699424143983,-0.02216565913353559,0.0007458191401842999,0.06709882858131816,-0.2021945148086858,-0.23830298907547376,-0.09455518367391137,-0.042055370608112506,-0.18170604579644734,-0.154635858286162,-0.06134111685891689,-0.08086945764347393,0.0102261383991991,-0.025745050687503674,-0.05454093669857458,0.10979959805842099,-0.002110714913543797,0.1404028575235626,0.1738727943273617,0.11333901799225876,0.013638949821143902,0.11914162638666745,-0.0062942027432032616,0.010789304390648718,-0.09503377947224302,-0.21722778630690587,0.008519526036820014,0.1267000652543848,-0.12605064526965157,-0.0579725722436407,-0.163975740382255,-0.1604722675118087,-0.16536512953928212,-0.1196135505693417,-0.23882611301502926,0.03930691714998233,0.047879707143412095,-0.04404916168849167,0.009058996239006382,-0.10530436751033202,0.3654017202423112,0.2580148712099294,0.06996190314294103,0.3762246376197458,0.30168795206060633,0.2827723088936167,0.035746617189348504,0.008200430750376578,0.02247617003936861,0.019276238812549983,0.00607211675516604,-0.10057070441452111,-0.15539641143560717,-0.11827761776223802,-0.02692415662387413,-0.038035413011569805,-0.009777774462972224,0.06880518089948676,-0.08450049559824305,0.05017120689727481,0.12089457358083994,-0.031045204479682866,0.052725431619512285,0.007813535138129803,0.027794029530933666,-0.03498451477405379,0.026605115274714444,0.1749704579356089,0.2521716039015713,0.29206542684202824,0.19422820804055663,-0.07309769584270011,-0.20188169172528822,-0.2126660734499135,-0.2835894796702439,-0.292248138134733,-0.15700502573012906,-0.06290812442840456,-0.3119042892970608,-0.34127015596652466,-0.24715212923897142,-0.29862691456518425,0.8279360758177768,0.6840078689008366,0.39849700390646375,1.0,0.8093737706132441,0.5934239770217377,0.3396264925225546,0.8561681117546103,0.7191079333328534,0.4752061936476137,0.27147580971705976,0.5462499596866806,0.6744383637268314,0.6870457657305185,0.5430106214608506,0.36268432044916404,0.39105017871835407,0.37612361950423046,0.43216687920865005,0.49066198514949977,0.5086595227754124,0.4204315380767639,0.31435223650615685,0.1115314364973245,0.2679564102031172,0.22786664956816247,0.26715121921986995,0.3810669107737643,0.3957460026329303,0.40338058721532316,0.18701353708541424,0.1999024874756206,0.155667835234071,-0.08299833456072332,-0.005824732914580442,-0.03903422305858459,0.009930057487467447,-0.12873210989851355,-0.07178109502333867,-0.06821231128694596,-0.13764082108707482,-0.014604582211589239,-0.005144429962221908,0.05662457451373984,0.06900344761648045,0.07087472649351091,0.0083352960448095,-0.12792028410122125,-0.007308313740366779,0.03727802592725641,0.04403447611449868,-0.024326522983064976,-0.11885228329922617,-0.07997288104367677,-0.017427016806290357,-0.07461774897216597,-0.10222229185797725,-0.026192605377319808,-0.0371935752515527,-0.05186308565583357,-0.02636265489694448,0.013182684567270637,-0.02111479234863853,0.02568618976742973,0.028403337180371385,0.012648885903661675,0.005506064343065159,-0.03575696877662739,-0.011375552909339653,-0.03302101267462196,-0.07455306852962998,0.05482174795695315,-0.034067283108345336,0.003959005337750849,-0.04739447602821995 +C48:2 TAG,-0.2426093828238579,-0.0025197051248649124,0.12949056410660523,-0.09020453846489708,-0.17485212327669114,0.014755941798266824,-0.17839845004240676,-0.15403946659893705,0.27363825251711493,-0.11506739980090425,-0.18204809494451607,0.27694562481852747,0.09144742110844659,0.06369044753859679,0.09779708091027192,-0.12751597000612938,-0.011415524054495217,-0.04863901583040219,-0.39294141372117636,-0.047784981620005544,-0.15922309277071814,-0.10251703459126682,-0.03107297864158757,0.23424106055982907,-0.07674435400827877,-0.3940017751016458,0.0032466526407575226,-0.09546618935095118,-0.08027866958782194,-0.15741782149958183,-0.24928415075918256,-0.024756703451494555,-0.02787094597780996,-0.025586064857427555,0.015157540764830968,-0.031013887994323325,0.11531262266854095,-0.12953925972680008,-0.41841784907970053,-0.2829368459439378,-0.13598768070971293,-0.16270435979621226,0.2695886946177114,-0.06707428164104663,-0.2575586655046966,-0.36596731087045775,0.02045021221768904,-0.32435471572951485,-0.09740678216215244,-0.3479506047806832,-0.06432854267687789,0.01708460502274754,-0.09733174492112322,-0.09302959882863242,0.00919090254605964,0.015621402682538716,-0.0582762824845655,-0.1173903476258937,-0.09535733393836608,-0.03805680687234124,-0.1638373440481328,-0.2657816344760341,-0.3282679954238383,-0.13649811683337718,-0.24148178626638273,0.05180916924593702,-0.22349760603650048,-0.3700174587572923,-0.2536297891854031,-0.36088236634050747,-0.33805685831791915,-0.3520987769939651,-0.24686407596200508,-0.3410501423176064,-0.28645580038476803,-0.328594669671583,-0.06846418680134045,0.04970107356356175,-0.25975741468758123,-0.3800585112170514,-0.018826583401587944,-0.08688492075859361,-0.19460207171600477,0.05633271393640816,0.02548492453455432,-0.37627834766089685,-0.0034495410223481173,-0.3184000139561817,-0.2543164707683601,-0.3885892363041524,-0.1908271901912995,-0.34023472545190464,0.1365400461376894,-0.3379628949175507,-0.2253882831707996,-0.26155590887590696,-0.21050263471809696,-0.26318961932099305,-0.2697866804035661,-0.12685552058459051,-0.024396570828965135,0.004330198191577487,-0.2930654805369414,-0.32777999870247965,-0.054812913847344207,-0.3453535457863295,-0.07644035936716732,-0.20247150327071775,-0.2891650383052484,-0.0076513768777672604,-0.08309276455238412,0.06960046122935548,-0.003986678516950655,-0.0307028535462871,-0.27411038474957405,-0.3316095905000282,-0.07320842626184834,-0.042714342257744516,-0.24400285107172612,-0.17190718576599676,-0.031608269109923245,-0.08235840381806503,0.05204003515151647,0.034978411620822186,-0.04879554013550601,0.1378054330092475,0.002567681618134479,0.1891473889105764,0.21848434646740955,0.14152265388310112,0.00822649241714636,0.10322448534744143,0.03348320391620572,0.025158946303890165,-0.0536651913795401,-0.3393863087110851,0.06869536064615764,0.08935568839609687,-0.11250095424168877,-0.10940035812012759,-0.18382940904459025,-0.1855984455115844,-0.1980604401960044,-0.12556166943468097,-0.3727500628002391,0.14774974083489764,0.134456591056531,0.10226561372413398,0.0034225776338746633,-0.09781245774351408,0.3943808965664913,0.400911414273368,0.16076839950965033,0.3205676071135244,0.22034897026153916,0.3535663590065773,0.17512541697777445,-0.04198059185596182,-0.04628132029699804,-0.03238678850922077,0.09554209945796138,-0.019351257551873866,-0.22263326584821508,-0.2291087642226974,-0.10937166157896136,0.04749259790792073,-0.07434385199296586,0.12000233654997816,-0.024545876444654828,0.12884746717470677,0.1365946644415255,0.029755046409263023,0.04919530161113347,0.0033485180015966165,0.0973918891034799,-0.00012571971573731855,0.007259571291037761,0.2144309824768023,0.446534183318847,0.3789451579172535,0.36123434256684905,-0.09305200230444473,-0.3086434371993707,-0.29541892767275196,-0.42583894307728754,-0.4455440739309319,-0.2366456237836601,-0.09604402622719607,-0.43506190160726466,-0.4728206216729634,-0.3992432695009629,-0.4061096978054812,0.8031984547744024,0.8604395357213758,0.5700974661592242,0.8093737706132441,1.0,0.8306659548249048,0.5599137725439353,0.9282402698439209,0.9336651311830202,0.7167417910270286,0.44663622725678315,0.5542124561727375,0.6825872129230526,0.8369273164661524,0.7749215758873984,0.5412131134408241,0.3744603398367019,0.3657322768648756,0.4023773382633889,0.5298968541386215,0.6468192096058935,0.5939282035937342,0.4211377207009985,0.09025437066955494,0.2336166553336211,0.196328204846616,0.24996988437968726,0.40297268544597803,0.5181526051166623,0.5404051908624598,0.13744467535300853,0.16823543492243898,0.13063990846400408,-0.05379967085452945,-0.01856840603227652,-0.021541273300137588,0.02416382072992324,-0.1091129101858304,-0.09240764129038992,-0.09177771376871803,-0.1630397661734626,-0.006842159728917139,0.08707556477496832,0.14044666595471328,0.12884655751364701,0.12787937956851053,0.05513196535866488,-0.12242700596633554,0.013437182539985985,0.11389658301891138,0.09708462120850893,-0.0546655586056821,-0.12313531239404928,-0.08672519597981966,-0.016721131860180195,-0.07089026984944942,-0.11660141093189082,-0.06962381191452023,-0.03668199530113353,-0.07923249868715923,-0.032671031368633745,-0.018449977281559653,-0.044821910828923686,0.04340734404536478,0.02800637053280657,0.018748365533246915,0.014993167063922345,-0.0377987189184168,-0.02658017235892091,-0.059153225362707854,-0.056462761651647896,0.038242973142100074,-0.03279297962143815,-0.03135237456084678,-0.05802861762114295 +C48:1 TAG,-0.21265767576028735,-0.024295533678408265,0.18348275572785472,-0.06986024146573318,-0.16019972294148255,0.06642882053667315,-0.23899779835300966,-0.10400616017337688,0.34382086704763554,-0.10429044289110638,-0.14689360930070416,0.33949601872691276,0.12817360220467444,0.1030353882548572,0.1497667143910026,-0.1317944963419206,-0.05216648349268983,-0.05979502267079361,-0.47163465335711613,0.022555811845546076,-0.16301968834545033,-0.07635396508069976,0.010475004642871459,0.2899093346636851,-0.03624805533802896,-0.4592101892923031,0.013145079361962434,-0.0444705556923929,-0.08367044090454433,-0.1965330183597807,-0.2624221539548013,0.03102291693846339,0.026491177505010663,-0.03829371143815128,0.04549609985757828,-0.03783727931562797,0.10377203442249289,-0.1463006099331831,-0.4467644305602814,-0.32920253638076624,-0.14564838241503494,-0.18449383642689798,0.34425846143982924,-0.014434135357154302,-0.33291931060128666,-0.3519591510303603,0.040685877609586106,-0.37943518034099344,-0.13365479669862046,-0.4160768724551189,-0.165258691461923,-0.055126289902880196,-0.09422582789492773,-0.1019375439538092,0.04521955169669537,0.040078727759150355,-0.052254917887400346,-0.11977230429786481,-0.09823205705570705,-0.025993755510645592,-0.22332815393543567,-0.2997120003443579,-0.3981962053256168,-0.11134445096397677,-0.15049337723734318,0.036443439896797984,-0.2648869719840033,-0.4134703425807797,-0.3071239079685074,-0.40867830758623713,-0.3737653900622284,-0.40708198054412265,-0.32689864144307257,-0.3924021049687835,-0.34640246312724166,-0.3561336864902228,-0.032735040792495985,0.06506621860223352,-0.26545981236111593,-0.37800934525746555,0.020846346038579232,-0.1029868559397021,-0.1440318698852167,0.07691779824017568,0.0077761726553476265,-0.39841318377210033,-0.01631703029335459,-0.34885195411569325,-0.29439692859062033,-0.4364916100743212,-0.245782822811017,-0.40246654734177145,0.22011765713663078,-0.39281390620236967,-0.20611013936235897,-0.322206166534311,-0.296485892668822,-0.24156517533858007,-0.2159670670754647,-0.08890408031020038,-0.061386330257461263,-0.026951305528575355,-0.3365798318170838,-0.4132595584125143,-0.02737949865796796,-0.42286721116145304,-0.07328934855103045,-0.20077373197779622,-0.31467958666519397,-0.037978164074135186,-0.04574340493722236,0.08711614679118644,0.007765273815792051,0.033738299634767946,-0.3466850615504022,-0.3122832239673611,-0.029625638216188865,-0.02252791630939442,-0.3329494344991887,-0.14404368498323916,0.012556387412336348,-0.07284382506184474,0.08363644607085141,0.07456802905566047,-0.06932040477744897,0.11490969656893711,-0.0022028185913432023,0.16440245395395722,0.20286353369493235,0.1334703407740253,0.019403185014176493,0.030497198527995435,0.05547132243493707,-0.003969862428512045,-0.019690059027355378,-0.4001949523183416,0.08639759709059928,0.0037423077256979707,-0.04161153931392623,-0.13966072110710884,-0.21945182843249067,-0.07439924469018463,-0.23627645654592344,0.009107521894517712,-0.42267785394491986,0.29004503165645906,0.19128002690318296,0.3242986375259972,0.03756478816496978,-0.02409971256830812,0.20917174135401864,0.3945703233946947,0.4180469888665711,0.11595571137624139,0.045697560412799834,0.2100655670124906,0.31117770251297916,-0.04961661986251092,-0.06447599253265439,-0.07218156114867641,0.05479946664906342,0.21000803028596624,-0.17004006109414818,-0.22326724070345566,-0.1436666694564809,0.13594066516220019,-0.09189227788097837,0.16525156143622904,0.044654710060807914,0.313790045438163,0.21537254755627133,0.1651610457008925,0.18385711341318905,-0.033702065059984306,0.0432846941148978,0.11393874888277629,0.16459689076339462,0.23703832263485597,0.4894413887266705,0.27943094923138734,0.5014762224220028,-0.05808183500276239,-0.3768769554524808,-0.2834250419070312,-0.4608563301018788,-0.5258467824380382,-0.30041910121485904,-0.0022070971016698825,-0.47829894174208004,-0.5175763377919523,-0.4551513951905015,-0.4144594984281469,0.641849013045812,0.915504766070048,0.7745838496964592,0.5934239770217377,0.8306659548249048,1.0,0.8513886413167384,0.6843323625677249,0.8865939849883906,0.945806502450062,0.7518259863102286,0.4364475408006432,0.4962026248216918,0.6434646241317373,0.8276309187354308,0.7904015229458845,0.3009856472331377,0.2917450725060988,0.31659845049798574,0.3770935631253639,0.48660760500188094,0.6939722914123587,0.6469673007445885,0.06695875666524083,0.172452100585537,0.1634875120590704,0.17712799879067964,0.3129260106306509,0.4315879498439485,0.664527994162798,0.06021560536441707,0.0803107015404706,0.08836074823735962,-0.06255981838830257,-0.045390349496133645,0.00622275130286555,0.00982104928394683,-0.07759066366874834,-0.1103326896415523,-0.10326101380884146,-0.1556046847936405,-0.005987448046846666,0.11123995376076051,0.1494374234101548,0.11559200429194569,0.11474262500243249,0.06410203054786043,-0.11036902950138724,0.02160945465781516,0.10876280091269239,0.10515133244507403,-0.06366573784148226,-0.14820678455199396,-0.09915576272191874,-0.022949229181338963,-0.09039588911921233,-0.1462530758054881,-0.09005664071726784,-0.0421605146894524,-0.07821626409207155,-0.05052139988997843,-0.024485650318744372,-0.026462916648888155,0.0699444003378772,0.05636646195008153,0.005789278940829323,0.018108608900403892,-0.03323424241985329,-0.01845731386888745,-0.11207695388171249,-0.03386233890297618,0.04849067160069298,-0.044048788365474066,-0.05114878330669759,-0.08090320976241376 +C48:0 TAG,-0.17478909844179877,-0.015891091779024556,0.16235446898179598,-0.03073521275807387,-0.11706597090162495,0.09267684300499587,-0.21868129161572325,-0.0654242298220591,0.3008136756836987,-0.08090797701617766,-0.09678800841302737,0.2668649492431182,0.12272643814157415,0.0994098145539326,0.13578280667616172,-0.08083348723302007,-0.06397496226716969,-0.05311801962577645,-0.4119467762390236,0.08160426252715759,-0.13615188883515142,-0.03322571689301517,0.020772436646379927,0.23962357959852942,0.0027913573266624323,-0.39165765473762415,0.019227446963543792,0.009564155867631183,-0.04366519943013731,-0.16471475299377564,-0.231637097644825,0.05694442855533545,0.039363477823689506,-0.04839939699109758,0.07847788951551114,0.002745102014800494,0.08141698450991405,-0.09701526541310715,-0.37341558207433534,-0.3005806216884297,-0.12333878817238092,-0.14946560076864535,0.29558855213651414,-0.005386843740322545,-0.3082356795693459,-0.29318948149731316,0.0352492159355581,-0.32981460919008815,-0.12424434600589067,-0.35522627077474894,-0.16678877341248452,-0.0502551020569658,-0.06733907062223511,-0.03418753922750735,0.060035313337148725,0.01630589898797586,-0.03477760729269308,-0.07674291123664717,-0.08657264647953149,-0.035275275782034196,-0.19563113557732875,-0.25250207507914824,-0.36082142974514125,-0.08980258361749002,-0.07592404394146651,0.0010308616114727202,-0.19376399459400423,-0.36157793725875786,-0.2889308116639176,-0.34392118490617163,-0.30795077336178484,-0.36415914671985017,-0.3162138520046498,-0.3333139550376221,-0.3114268529558696,-0.3085374074794758,-0.016643383641692974,0.036666230740004635,-0.24551015491563802,-0.31448412053703095,0.028351222482451272,-0.07895913501961882,-0.08136425083885802,0.07907520617395283,-0.00029748085050476555,-0.31693546609643874,-0.035421931398030265,-0.3221167222545302,-0.2805108687742275,-0.3740936296405753,-0.2221534306383692,-0.3519415477988058,0.1910105088694318,-0.3425942516362045,-0.1325449485082042,-0.2918976095079608,-0.2796579468328251,-0.1886721132287579,-0.10563815740701561,-0.05088772156341343,-0.03380102482823335,-0.01826461409985596,-0.2847363726323148,-0.3906199167024743,-0.009197575773906286,-0.35482028093275647,0.0009395879035943736,-0.16604259061442886,-0.27306706912562956,-0.023786962288313528,0.003717267817950221,0.0730994897344106,0.03322190578454925,0.008124957058517523,-0.30091971700785713,-0.21857931400183678,-0.020224573918682483,-0.0017714496347298514,-0.30042118607935886,-0.09668239375734032,0.03383432351029294,-0.06056920890999472,0.10768828761982424,0.07751830564642999,-0.06431223099970335,0.09047207633459943,-0.003550446597345892,0.14877008854690332,0.17518882747193806,0.11527272861868541,0.029271018283461556,-0.020681986151435645,0.0790263511187892,-0.0259671828666823,-0.0046034506751836115,-0.3484283144246333,0.11449267870677003,-0.008904699432835438,0.06736921175329033,-0.11813018640414963,-0.1558338520632894,0.020645331893629274,-0.18086023409172117,0.10044332065270488,-0.34475973623757944,0.39664455806538734,0.23990383270850088,0.44232960930977155,0.10253702537574377,0.09179729163289205,0.052091670867187925,0.3009443996869173,0.3861989591668316,-0.024505156040419303,-0.055533961672789824,0.08106089549668255,0.2885682210468359,-0.01616871953371914,-0.05688358776907717,-0.07513743266975467,-0.00510968089120669,0.2520212612183295,-0.1023980600889685,-0.19461716058815295,-0.1623880471300938,0.06429972616903079,-0.08623663212786821,0.09304375787494654,0.06552623104380839,0.2797277376035846,0.20905631738620797,0.15233691530295387,0.18324911517841233,-0.042647403222761844,-0.03154667790020714,0.05257585931895681,0.18567215675472182,0.18682790402878835,0.39543873594771656,0.10886960881100094,0.45268090624388385,0.008614971085983246,-0.30164159390497747,-0.19322930651712228,-0.35289163159260095,-0.43655185030211474,-0.2538823977294474,0.07989317201475156,-0.3791800237370169,-0.41349057852332693,-0.35449456641165333,-0.30960447010639197,0.44284631504842287,0.763247040299258,0.8329598657722135,0.3396264925225546,0.5599137725439353,0.8513886413167384,1.0,0.3807810819066491,0.6272632261299693,0.8922701355333559,0.8891767618270527,0.2724178345898628,0.25000600295611425,0.35167287406682635,0.6287487997566759,0.7721757027222685,0.18060289631287252,0.18107341697555648,0.15806837056692025,0.16701875143245928,0.22382654314105113,0.5342408674370608,0.6578488107843045,0.04773890513421884,0.07845534039013952,0.0835402333703117,0.06703313175941365,0.11527064372247897,0.1987157116565161,0.5188357907531926,-0.03941228039713481,-0.022971397506829964,-0.0011732150730179379,-0.04281879039425466,-0.03417859483763571,0.023099467859727888,0.012787233379215049,-0.041932004805350274,-0.08690858215909454,-0.06583753425198416,-0.11283450150050123,-0.0022980780995669596,0.10251468316139696,0.1226468300929244,0.08951289404892329,0.08614367642699558,0.055902784719685884,-0.045650778574627994,0.015693986116537675,0.07400435986680956,0.0795017614981696,-0.044640021329980725,-0.12487067075827565,-0.0932391102155599,-0.038565608644018784,-0.09340953950893435,-0.1320871845472302,-0.1059053217264815,-0.0625803843849046,-0.07560664574689664,-0.055707498220153265,-0.029386238945500544,-0.008117564482266899,0.0692644126238404,0.06643814845110176,-0.00107335999760806,0.011551737975884123,-0.020215758788065977,-0.015531431675388854,-0.0723680884710666,-0.012462967088755189,0.04322269012674001,-0.006571077519226942,-0.056047136859833535,-0.08560806126458448 +C50:3 TAG,-0.2066241345603949,-0.028772059963124555,0.09492464755823006,-0.05080314280083491,-0.21605097381535726,0.010870485541175302,-0.10367704501110866,-0.16765277183246916,0.21561704175248003,-0.1604208322434974,-0.21702815546619145,0.22345046216717884,0.08145708961744876,0.05941771148595469,0.10026564612590347,-0.13264715344648825,-0.04708297278244362,-0.09166580990322427,-0.3380522655817026,-0.11112178670508181,-0.1594844726783084,-0.17255708121767885,-0.10862667504797438,0.1719255758481686,-0.037847254591078634,-0.34831753627659506,0.02198560201848934,-0.053461508795299,-0.040325703521311033,-0.1862013680607888,-0.2219450990063907,-0.0987309487086465,-0.09059303112462784,-0.08153979456643391,0.06363100125286467,-0.06019166963027842,0.09744700666798752,-0.16459738261223075,-0.3815131199559133,-0.25529545475385246,-0.0862853030972714,-0.11331440688187647,0.21274486651391575,-0.12894708874268881,-0.22977658797540254,-0.3486434275577942,0.011735371815079602,-0.302481003956653,-0.09018345212750166,-0.2955907936470741,-0.0683686403075992,-0.01733443565066466,-0.04521718246370565,-0.11371965523062358,0.049902020289601015,-0.0039754004692582065,-0.07450872282510314,-0.12638371631126058,-0.09449754466283751,-0.07400751815382252,-0.11933129103401303,-0.2384178256131924,-0.31014282412491023,-0.15273590828238215,-0.24296040176655614,0.011621357234012135,-0.18914226588507835,-0.3360464946735184,-0.24522806142386658,-0.3078271377236451,-0.30083326071944483,-0.3333648134740856,-0.23565740659824533,-0.31560243000965355,-0.27057614699342897,-0.31348365418396273,-0.12784151296514928,0.005783473078438884,-0.22958823855257124,-0.3586468751660907,-0.06391534475307654,-0.02755398443393594,-0.1994149466164205,0.017944158597247788,0.054618109479295976,-0.36484622033891995,-0.011736948771551186,-0.31259462187185505,-0.25512258183034026,-0.3599368627587599,-0.14830110036711944,-0.30798262807604676,0.07367322657478327,-0.2988530641359341,-0.2146718431854489,-0.24982590319436132,-0.18530545891784514,-0.28579168806229566,-0.24425215912297416,-0.1262306075105832,-0.04084140635325836,-0.033248342156345916,-0.2902490364619049,-0.2670492530293766,-0.009446727416418653,-0.28422563672398726,-0.055082656085507366,-0.16408593482886788,-0.2751852364121117,-0.01016894516669136,-0.08781663324010582,0.04685238794784244,0.029853224954096515,-0.008751807721300938,-0.25887602260182413,-0.2989207757386396,-0.1367949881873995,-0.06755690677483797,-0.23085853370515083,-0.1909819873558225,-0.09640035768665818,-0.11940339466470244,-0.019734949118071103,-0.03760928831115497,-0.0911440321136458,0.07945114552727592,0.003142755668638928,0.12161747141673124,0.16344112286272433,0.11091137525953446,-0.0018419304196730557,0.11026288345321084,0.058838570267050395,-0.006437200505201797,-0.12097034414700875,-0.2831808374534656,0.04281279471494738,0.11868082711983223,-0.1574879635307095,-0.05073157204006329,-0.18977091368934257,-0.18602214244398665,-0.1922434523814142,-0.13366305992893104,-0.29887731269715423,0.0361318735361597,0.07879934661419233,-0.0628379979378264,-0.0008320328158137191,-0.07673795973913831,0.38227737916444104,0.3130812229939833,0.10277410287908904,0.398882935830681,0.28565882260457537,0.35216437591232597,0.09881418180111808,0.019601243136688273,0.05323269339938565,0.04582095441286883,0.08751962058378517,-0.08402111661437976,-0.14453156666294723,-0.11400093958235424,0.018555913556279023,-0.0028080875373932084,0.015767179302076963,0.06399815467983938,-0.09775269214616822,0.06457300780841552,0.11417987451816403,-0.0098749879624542,0.03636322578938717,0.06151938925895865,0.08958639402595088,-0.03145272628200625,-0.032202509508261,0.23892907832791913,0.37195339668704863,0.40168543847853005,0.2929506106090319,-0.09671350915167175,-0.25865820025916536,-0.29147022423876684,-0.37087147224942146,-0.3771394641969193,-0.1889683441596376,-0.10205406872951671,-0.37951424057780164,-0.4268494601454699,-0.31252792801062945,-0.3486597228672373,0.8025389355727517,0.7332309252543223,0.42537399302423684,0.8561681117546103,0.9282402698439209,0.6843323625677249,0.3807810819066491,1.0,0.8711971502132021,0.5838276683293531,0.3017070597622851,0.6457741509059306,0.8108365061361265,0.894260278300585,0.7286658186591509,0.4465939266299706,0.47565839414372757,0.47245713773999226,0.5360251754851831,0.6618873950187241,0.7162167828623063,0.5672560374322944,0.36017533884516906,0.16728823783849345,0.3534029613468465,0.3092706516352641,0.38285346851866203,0.52156250503388,0.5719687686727267,0.4994467650575478,0.27806953084142405,0.29210855148721654,0.25132408911960125,-0.06807413577075073,-0.01523556334539716,-0.04420776162037892,0.02148248920071953,-0.11258865045805831,-0.08311841014860671,-0.08408275399752155,-0.15742302925976015,-0.022182468672742414,0.046396196877903396,0.09410147037354065,0.09244929394483385,0.09509089076163534,0.023606769179939927,-0.12390192977824364,-0.02189290870190961,0.0858588782343058,0.05895173185449533,-0.03545368422216569,-0.0901487045979076,-0.061309238344968923,-0.004620121106930925,-0.07292331146793972,-0.0929495843346427,-0.04437177207982898,-0.03102936977871663,-0.08691892207465815,-0.03406314969844561,-0.02600610620902537,-0.057151774940761485,0.011710162411698763,-0.0009571138846182567,0.00713805554780442,-0.00648062864184616,-0.05505134783300635,-0.03723581039498347,-0.021181511425605936,-0.07149779202158288,0.04659792331877104,-0.04059288716826057,-0.01925371278417326,-0.04781567066591192 +C50:2 TAG,-0.23208062501666316,0.01848984505576749,0.14655024086979318,-0.09875041153537986,-0.1534837749711637,0.02444115824036626,-0.22977824986124157,-0.1201148300987826,0.2849708973036139,-0.09283127451986709,-0.14497321540471578,0.28176809728558977,0.09742154328598944,0.045095005496761854,0.09839589135868357,-0.12368006936625404,-0.021131772100170115,-0.04270032798006328,-0.4402205114917534,-0.03619663448250648,-0.16514050438232158,-0.0803371191222455,-0.004950159393942241,0.2392876242101064,-0.06687558297140044,-0.4239647173343191,-0.029029568696592793,-0.085314368345196,-0.06073629885696096,-0.17067076372084994,-0.2545564741440881,-0.01940879169993686,0.0148020790215561,-0.015402231429005691,-0.01146629093391014,-0.05889871528414716,0.13770112960377504,-0.13821558529724987,-0.42403902994456105,-0.3220618754649,-0.15212909716819953,-0.18445704595336504,0.27802140540255094,-0.030177904055999114,-0.3047651062598296,-0.35398695730174295,0.005206946240897209,-0.34282987427352757,-0.1239099777597019,-0.38991001192148905,-0.12093425946253203,0.0037360632605641366,-0.12426052060107115,-0.11380599097976417,-0.004401384678912629,0.01757973440916145,-0.04780428879224963,-0.1336808069043551,-0.10892174470975818,-0.013089705268358735,-0.23412734576679853,-0.2787262170306058,-0.3630524096496689,-0.1433884464403784,-0.2142950109937902,0.03820904573970838,-0.2746014548872186,-0.38383882696940524,-0.28918869366522115,-0.3833460040038908,-0.36018506383134374,-0.3782876015197377,-0.2786530068263376,-0.36479201167136627,-0.3047278839197905,-0.3441079396132934,-0.047791906840442246,0.050108615688482565,-0.2758663163431925,-0.38663243994184393,-0.015692058294103743,-0.10131013842507763,-0.2000268933532139,0.05450288862519919,-0.003796742568681287,-0.3968754943898018,0.009882561071259061,-0.3207391538578768,-0.2484827966988003,-0.41680667467474924,-0.2168956710208865,-0.3585624968638308,0.18647329748481264,-0.3688446736669529,-0.19651357002730188,-0.2944317833735944,-0.27555800120909735,-0.2694645161597351,-0.30569915106866874,-0.09616544638716792,-0.06454870946508406,0.007096693722861956,-0.3087110840441378,-0.3745464911304789,-0.061695739572148474,-0.40441606010273645,-0.07227917518598086,-0.20007459721492202,-0.30306337051178456,-0.04182318288013016,-0.08798356064484435,0.0769780181166419,-0.022781635119324708,-0.029187004670665023,-0.30835850517980384,-0.2917642989158656,-0.04487996826001027,-0.05324051099222572,-0.285575833487679,-0.15583270941771332,-0.005651667112608689,-0.07860861938860672,0.06232018082840767,0.013321493709810546,-0.08249611518970135,0.08650429306455926,-0.02424994686858891,0.11141230413355199,0.1490625051585906,0.08801664252165856,-0.0271272812399288,0.045428040224109026,0.005644439814439567,0.01559805130100552,-0.02301735880071259,-0.3834476049241256,0.020936949339355318,0.015375186521137337,-0.1303277325567916,-0.12981924650668075,-0.19928934794784278,-0.16210622612930858,-0.2145819648404926,-0.10377781164926528,-0.42550029024969466,0.11979689392981986,0.10424414545355261,0.15175326171342302,-0.026937541528692068,-0.14408708744931142,0.32351953544948453,0.38723848446773484,0.2577588913773161,0.20924668619195713,0.12800920981263786,0.32707095795912733,0.2419010452861558,-0.07218591609523133,-0.06685208438811008,-0.027002622689297994,0.14649559344011143,0.11718383923229296,-0.21267217283843703,-0.2361249350105751,-0.10497197053279003,0.15148315457487907,-0.09486169771754088,0.16051992145348734,0.036863449820909014,0.22627630116127354,0.1375637563287195,0.08258815118442835,0.08268900836508694,0.014009993750338593,0.13917202342347595,0.1064951394051812,0.08590290658811578,0.22540118447498345,0.48708757456209534,0.3889571334461184,0.4395101473597127,-0.0740059207669697,-0.3228539543568158,-0.27243902833274636,-0.44387217992067846,-0.4728158402075636,-0.21399395403782,-0.0211926662140484,-0.43806969244487554,-0.48323631981104403,-0.4103387892155616,-0.3798245293104274,0.696370467198304,0.8353002728226783,0.5831651540223065,0.7191079333328534,0.9336651311830202,0.8865939849883906,0.6272632261299693,0.8711971502132021,1.0,0.8285170635006674,0.5537903968230142,0.5279584922535605,0.672396693810246,0.8844473692181701,0.9149546616709477,0.687374828427046,0.3792318059020602,0.3601961718414115,0.42231224534446976,0.5683138744410843,0.744694069822062,0.7544425024585749,0.5575918419040606,0.05991797103626491,0.24927921841360057,0.21613030883754675,0.2760650737104708,0.4631167514857561,0.6203085065857246,0.6696718483342782,0.16143394999086055,0.18872430360330636,0.16324729716258202,-0.06731088995844094,-0.04026681016769327,-0.024743784671295458,0.00993642352666292,-0.10336269521102852,-0.09982989442913268,-0.09239988471522498,-0.1422367883142494,-0.019324051349596298,0.07383278599797521,0.12393773198539346,0.10000250797611765,0.11374177616658397,0.04329627135342105,-0.1209492008210769,-0.008668093847863328,0.08798700701876458,0.07228176302297405,-0.058062166704261446,-0.1340481107356511,-0.1035339237546737,-0.031631982389881706,-0.07593455736441707,-0.12177650846744073,-0.08954268521737183,-0.038091517676575835,-0.06707246824015653,-0.03888303775921144,-0.02550826368976824,-0.04245752799706507,0.04840670298533751,0.03142799633148832,-0.005459717335053659,-0.007795889554798936,-0.05263644812925491,-0.03542317650839205,-0.08516261799007495,-0.05147916592628062,0.04660630085490677,-0.06572799858225399,-0.008851656293122187,-0.03903589800294635 +C50:1 TAG,-0.19396339600566648,-0.013796900098836547,0.18123738642046486,-0.0386072360137869,-0.15738694020895955,0.07805353186918285,-0.22082690880388833,-0.09747286795634835,0.3110393732891934,-0.1120094952880452,-0.1413194794982592,0.2950630424649203,0.12282668616337647,0.07728317820870213,0.1391215870159655,-0.11213541148498835,-0.06699369329883721,-0.07498215223308888,-0.4694127514030946,0.02426951642062015,-0.153732353332376,-0.08184682235548861,0.001031441697833872,0.24409146707009513,0.009074328440867257,-0.43862024445704667,0.019013268932585026,0.007020894649308674,-0.04193962822144043,-0.2102103599462646,-0.2539225975512269,0.008293915485667925,0.027590809868679768,-0.060403756685372255,0.05913042445022943,-0.04367799906115978,0.11102308345372071,-0.1499141387563442,-0.42209581718742006,-0.33902407564673775,-0.14035214190897202,-0.17411197310024912,0.30962579570933396,-0.01912475524977127,-0.3435211717565955,-0.32718700745067014,0.004862336148824651,-0.37547729197702334,-0.13814249240696844,-0.39303200470821964,-0.19970299903615726,-0.0700501969865699,-0.07843281690193434,-0.09165760881856734,0.0615451346726003,0.019925411441096313,-0.030765571378925282,-0.11855888668282247,-0.1121433310193025,-0.042225793810422914,-0.2450959557846614,-0.2999134297193235,-0.40659481286391785,-0.1297143633454605,-0.12257984880974929,0.01142841409131984,-0.2659173858272891,-0.3967325262084598,-0.30909499266767415,-0.3970675582347903,-0.36847293310202817,-0.40987168721560713,-0.3407806012998844,-0.39393085326033983,-0.3513511886037879,-0.3634036208067961,-0.04758033984844649,0.057021445494159564,-0.2579216533423859,-0.3527605996865444,0.009811806644005518,-0.08410969434205746,-0.14155900779920633,0.05519458682157299,-0.005063501361853941,-0.38001167200733216,-0.026680976814920255,-0.34825827291522904,-0.2965364803709021,-0.43004620321941917,-0.23013553254879765,-0.3866543516181008,0.1996327746608774,-0.38353023800910374,-0.16381880818440844,-0.3365448695974239,-0.3355124719433326,-0.23608845002255285,-0.19941848592513362,-0.04918347584533388,-0.06281735289427356,-0.029454898006737132,-0.33077935284228904,-0.4122534075091167,-0.002215108386973092,-0.4154554544983629,-0.03624810755369771,-0.19964375411391133,-0.31686094576327817,-0.045920175894451215,-0.04943563105645665,0.07950578475134087,0.024410082990669445,0.010216444928135523,-0.35541607561977356,-0.25161753648472474,-0.04190807362552013,-0.04278981651878759,-0.33925454372618813,-0.13248775194945342,0.014450724948989099,-0.09481347816734478,0.06475224608810647,0.03337976875789547,-0.10140878797337642,0.05534877092312135,-0.028242619544631347,0.10475524914221482,0.14286659948886862,0.10372621455407194,0.016551967372021366,-0.008866625764296057,0.05622856462761687,-0.022387424545265978,-0.020803726026985818,-0.3869450422006276,0.06854760983649984,-0.03929121480668553,-0.017145902991796393,-0.12197701279664708,-0.20544569462067558,-0.025190076460297844,-0.22227121839634495,0.05764270609389813,-0.40247359561022283,0.28829772450838453,0.18330830646286922,0.3419142824976891,0.055994925310587584,0.026784272864666493,0.08067167519345007,0.31009216405528106,0.438410191160091,0.004243592294286894,-0.06367979052979349,0.12755051862339492,0.31826990327107735,-0.023906783394119162,-0.03755629723142632,-0.054178902063213054,0.052889487186534176,0.2852194925216568,-0.11485086294933548,-0.18146852988253934,-0.10170514535828819,0.1254959119708762,-0.06624940942592746,0.13179553652682827,0.052909400714725593,0.32667903597474873,0.17745435687970254,0.1613217613290995,0.1829284769849872,-0.014996886921525726,0.034406997777248635,0.11239568488336256,0.18072668540390155,0.226798192947398,0.46280776827542464,0.23182326141301962,0.5275439556328413,-0.03404863352945321,-0.3562770290975846,-0.2559527454633918,-0.44127693443638133,-0.5115215064903362,-0.268738447881847,0.05882074808269758,-0.44023249619072646,-0.4912060466815598,-0.41029015595533275,-0.3563337563294392,0.5404313481568679,0.8320393679032415,0.761936400996521,0.4752061936476137,0.7167417910270286,0.945806502450062,0.8922701355333559,0.5838276683293531,0.8285170635006674,1.0,0.828110609936398,0.4171454190645242,0.45561841555606203,0.6089426402019203,0.8613116441523522,0.8824651495695282,0.3179949988140341,0.3181080791731519,0.32507167152959837,0.39987485346774565,0.5072242598722297,0.7661184562109551,0.7355739758440919,0.09768582936511705,0.21085167282758366,0.21447504150919794,0.22268492208618867,0.3385227601771735,0.4573129112013847,0.7131905606112013,0.1164701838405083,0.13141870353988844,0.14648704180724575,-0.06243862279494507,-0.05985709741821157,0.013900752380330937,0.004323021660097066,-0.0703452846943233,-0.09906775174453761,-0.08026779747721223,-0.12410999211513771,-0.0179933579966651,0.09230591176210591,0.12625901158701916,0.08783970563492075,0.099736105017018,0.049229924109275305,-0.0838336877527651,0.0033122317415456883,0.07440459152291688,0.07901617560052578,-0.049529712920095795,-0.13978263250719983,-0.10686811839469636,-0.035746776572924334,-0.08679924035459395,-0.14218671080770115,-0.11702919948275077,-0.06274541708001201,-0.07166115797154154,-0.045505502898142446,-0.03945299040746757,-0.032026702423072026,0.07802090397649214,0.060608062928570815,-0.005672794114839601,0.0004869183826239697,-0.03482389061047375,-0.019914004839664136,-0.10050381240689896,-0.02897282048845513,0.07209765763774137,-0.05318550563316544,-0.04280017567819552,-0.053808393511687896 +C50:0 TAG,-0.15953666817695325,-0.03962958205744471,0.17915731506633165,0.005214838384468138,-0.1621304876166539,0.10788335896909541,-0.1739903604955395,-0.0827816019249075,0.3018733293757903,-0.12450006930223217,-0.11615181923475082,0.269270962341428,0.0910098801661539,0.10224201651902484,0.2121488054309395,-0.06630384791586026,-0.07823888469306117,-0.08966880244282159,-0.4215107444443016,0.08472627343287223,-0.15260612410859117,-0.06341195179095184,-0.010514557999134536,0.2313529455211234,0.03739107764837729,-0.39072730167827224,0.053325544774562375,0.06027071989216254,-0.008578105916139386,-0.2021190677622743,-0.26239454571059767,0.02326717070898044,0.019482719730067415,-0.08249963094812851,0.1504441873832531,-0.03074184980400529,0.07225701226169727,-0.1290192119350354,-0.36400836617811744,-0.33779488666629187,-0.11833390038386181,-0.11602621071100412,0.28554399832369026,-0.04196694928106634,-0.328969646243418,-0.28470497495013847,0.0280696660517098,-0.35759625975792675,-0.1121729569741976,-0.35422377803636795,-0.19483229353548642,-0.12614422696210872,-0.0032825500925774574,-0.043357888395574744,0.12120990824541053,-0.005444598779881719,0.004092117620040829,-0.07181265086343928,-0.13396433608610941,-0.0870521583721845,-0.22417879218937925,-0.28659207133207926,-0.3974188222892762,-0.09927002345273407,-0.05182869021084082,-0.005777875617859741,-0.20305256412382733,-0.37538303091730923,-0.27943722491178496,-0.371805545089938,-0.3407845443111979,-0.40285782686733185,-0.3576181558583975,-0.36692294684630417,-0.35259503699537853,-0.3275622207101497,-0.059632648254939,0.04206765300987126,-0.21868354837771536,-0.3068353756317027,0.03252341707031334,-0.05162426487446809,-0.04463747256185338,0.08404710147263945,0.020716945748385753,-0.3302167882468335,-0.06791088190577046,-0.343945061724918,-0.3220486465041897,-0.38636881106341353,-0.21330877952434849,-0.38793369379534254,0.20243930450217265,-0.3564942353817978,-0.10381466419440033,-0.3365436709333386,-0.3153718104715699,-0.20406698501512566,-0.06466762818232749,-0.0011956009231529829,-0.041439018224555375,-0.0662114482567188,-0.3171692246451926,-0.3973260202408307,0.05508423147779333,-0.3705709838187121,0.008461388820498086,-0.15258715249903507,-0.27497774085496557,-0.02660131293289029,-0.04846718880865756,0.08632167703228677,0.07717693413786626,0.022308517552657767,-0.3488110997172145,-0.19671384119885568,-0.0628484222069846,0.01799798662136228,-0.34792190443303994,-0.12796879717269605,-0.013869853974979212,-0.10357329739925378,0.03572099359930305,0.035830509484304524,-0.09622637654369247,0.009930987650086069,0.0004978974406005237,0.09940951271632283,0.13845504533435093,0.12585644551591021,0.07478162010609368,-0.01907008591989048,0.15565018562030494,-0.06683017791694974,-0.023993264260254384,-0.3443202687431624,0.08845429386826599,-0.07960301568543905,0.022818554345051017,-0.07020223539958607,-0.17651154671115837,0.05506557564623506,-0.17016514114967074,0.13525248520653502,-0.32214279904453913,0.3394940915163806,0.20971317843950463,0.41809092549285853,0.16210226325198313,0.10421424412348386,-0.09364005322443944,0.19791214743100516,0.3542866494769541,-0.09442799803613185,-0.1349934097178477,-0.0021015632690631666,0.30515543537372775,0.045301629412678256,0.007157287404952958,-0.027164910578721203,0.036328188230142264,0.35262188273475353,-0.013481781979594647,-0.08796092135094856,-0.04896187029555533,0.09134336919776606,-0.007491867263889121,0.04194276221781499,0.04202715858446573,0.29371685804646924,0.21747721675286402,0.1548235474824928,0.1820128685466263,0.0009772129087028218,0.007708733714857221,0.06154378296070926,0.21074314959075427,0.19065036263696658,0.31089526937318,0.06841281019087331,0.45634086946968905,-0.03769215279530122,-0.3681226851923232,-0.2375275907615096,-0.36847500911487674,-0.4787362842111946,-0.31386150740232704,0.07191713435434123,-0.39090385485047263,-0.4403749792546268,-0.3774150239889332,-0.2948704944011761,0.37036013815847946,0.6676473068770391,0.7755739850993117,0.27147580971705976,0.44663622725678315,0.7518259863102286,0.8891767618270527,0.3017070597622851,0.5537903968230142,0.828110609936398,1.0,0.29941788883199655,0.2651257280647754,0.32811001462503286,0.6156203735567904,0.8573545640841568,0.25205095767510827,0.24832804635738806,0.23430608945995954,0.22724171936051007,0.2762371227264582,0.6217400996487367,0.8016649321945833,0.10036290088474994,0.19005951159281667,0.18336225830431435,0.16434327822773293,0.21954356913234713,0.2834641340045673,0.608892226220328,0.08332345808919497,0.08297826529982384,0.13204523998011838,-0.04587696792735214,-0.06830618511899267,0.02862079554064712,-0.010160510599364674,-0.044150010462302554,-0.084138806070024,-0.047762978770399776,-0.10254338230902366,-0.021567435916903976,0.08636557638899747,0.09749892259652804,0.07361126961616224,0.0756997771548681,0.03358371663871519,-0.03460993679496481,-0.010920612066017054,0.0677838593248495,0.055752307815391734,-0.01793403160659494,-0.11329829739116469,-0.09720643409609822,-0.025626784453256803,-0.09727928185911462,-0.10977083107688465,-0.11155502908590374,-0.07130576732726274,-0.1044634377539567,-0.032066196088014046,-0.03344190752169841,-0.02325465265558123,0.07363615844439485,0.06593805314159526,-0.003474477131704403,-0.0032539341267479134,-0.03352433623246539,-0.01493565585108303,-0.0794185947817739,-0.01622715084868368,0.05976008352066832,8.005912907207418e-05,-0.058236160976768,-0.06912246184181611 +C52:5 TAG,-0.14209312227617726,-0.26704927304855747,0.12764651722869869,0.16437644701907844,-0.4506694990072426,0.08805202477969724,0.18204259958500635,-0.34301609192257065,0.19781085501347276,-0.41499586093296437,-0.4171148857322919,0.18423655442575582,0.022878507801313352,0.12842127929934774,0.2824426552585239,-0.21765156022346077,-0.18441147984450068,-0.31006148542679657,-0.3702791575073536,-0.18715056425456986,-0.1935855732736913,-0.40179669714329846,-0.3352867928818336,0.0776954771421275,0.005384046673498944,-0.33313165764817976,0.24064213350701835,0.12402034064314706,0.023250105940382806,-0.355260022849832,-0.25366533975379973,-0.26931764923954504,-0.2862270255677466,-0.27371228743665,0.42105850139682777,-0.08118368220832696,-0.09199391390661513,-0.3690554852824269,-0.3903605653116996,-0.3185591723464203,-0.044350032192452246,-0.0004974605717001989,0.1947155704994325,-0.35046530795031877,-0.32484034874880613,-0.3234368162892084,-0.027525038541806865,-0.4279602032972811,-0.06386094817617685,-0.2320307457066517,-0.18016372993333218,-0.35841817653135316,0.2488603370747946,-0.10199931585336654,0.35259632290143295,0.008213986885535809,-0.10266766861551156,-0.12085928463938915,-0.19249953100540182,-0.37323612262654526,-0.059763667411748406,-0.32813307379585377,-0.46471110781019326,-0.25240007740770215,-0.17041459862901692,-0.06585727211847041,-0.14221211294830383,-0.44070879476136054,-0.26670188033942605,-0.38590203572460646,-0.35679709177795094,-0.4876599940300214,-0.40819354410628456,-0.4410823648869631,-0.45310315138838214,-0.3747458056621696,-0.3233595212618099,-0.013758719250234431,-0.18875269084924787,-0.34796054674075594,-0.12169519273026945,0.1959620040804827,-0.027256596012785184,-0.008384796361657393,0.2607448519168225,-0.4011250372092152,-0.18223870071056372,-0.49681675427877836,-0.5229806369554891,-0.4173900104890991,-0.11644570249029645,-0.42530652706918437,-0.026738913812054923,-0.341334227232756,-0.19814285661069977,-0.44670144365218867,-0.2545034722255013,-0.3034160341364492,0.054532836770204006,-0.09797461291408527,0.02771037020809947,-0.27516318820307883,-0.4483346979859249,-0.274697392564065,0.3103565565053215,-0.26611115925451556,-0.07637465729754059,-0.14811815902356346,-0.32760609169552024,-0.052354891347341,-0.08917069005266429,0.06094156174397114,0.2679827876328289,-0.003022604017286292,-0.44139151019577905,-0.32954395602790415,-0.3733125388987731,-0.0751578603560666,-0.40988254049747175,-0.3919590925891895,-0.31160801103056884,-0.32446142575180387,-0.2726685671704876,-0.11909398509844259,-0.2142896099147186,-0.0860322807161875,0.11613091491109599,0.13681241242988826,0.20233279284217934,0.2288026994529421,0.18742859773036774,0.16434581821569916,0.3713686406872669,-0.14028134965902847,-0.30922928924371046,-0.28118450028212005,0.23614771790928102,0.06459787843820596,-0.082552049844425,0.24998640778198622,-0.281894451291349,0.0654271596435952,-0.1809469453846682,0.16220761236340048,-0.16697039493844287,0.06436682275505476,0.048736281708315496,-0.1192850787200338,0.18593415204844457,0.15709761653489662,-0.061637744226582754,0.0561885639092365,0.2563297413848523,0.2716721186857994,0.1107749719675764,0.01647235477268208,0.2067104927662153,0.34601795726116735,0.4747030596855264,0.24048299990583133,-0.051249102513851764,0.08309024525626417,0.3159007168880219,0.40580701180796636,0.41224551404101056,-0.09407814554197866,0.4132813107416199,-0.017687367204228994,-0.22762415488809062,0.1720967141731237,0.18083962682278454,0.13256654991669586,0.12999101882559094,0.22971318898117682,-0.06828771438971648,-0.03561815350924189,-0.027911928397387157,0.26735628174582116,0.13356268156174123,0.22965759797206095,0.2750527702058094,-0.15995294542040303,-0.38296306408520814,-0.3587243469860642,-0.3531443847121133,-0.4139229258857816,-0.3429984407859643,-0.14538777888501675,-0.3538089656258018,-0.4613598045728034,-0.24202627264940454,-0.3049913372663479,0.589328812077021,0.5080977663207794,0.3705624115470461,0.5462499596866806,0.5542124561727375,0.4364475408006432,0.2724178345898628,0.6457741509059306,0.5279584922535605,0.4171454190645242,0.29941788883199655,1.0,0.8648047622721572,0.6132225758417436,0.535752015054182,0.4471309809554475,0.8207031528951395,0.8372275285793263,0.8130521361668835,0.8192234686847288,0.5659730735135698,0.5203314425968055,0.44380368143333665,0.5131140246602844,0.7389011095675413,0.7825318676087156,0.786547035303525,0.7328025328237395,0.53113190362946,0.4845469308728367,0.721131279446472,0.7042750614538974,0.7186949596107699,-0.0729688158535338,-0.11425396964657374,0.006666767238601333,0.014475735326453736,-0.08033223571847475,-0.08408662389954881,-0.023196965678614376,-0.153421751467786,-0.1262781437760156,0.033266153524323126,0.04536837694871345,0.052152279736962445,0.03933414135523666,-0.0880730951529613,-0.08717369872111791,-0.09905288226788228,0.03893246698192277,-0.06213631680342401,0.026827834097803968,-0.03456457233040782,-0.03375467339581169,0.04566130387198237,-0.0945444151068804,-0.031022633713347132,-0.054673268245000226,-0.1051291028346267,-0.16069003735262477,0.002718677543657928,-0.0790809258345162,-0.1014167117051444,0.014411684139237182,-0.02405516780579954,0.00940225198369208,-0.042630598669050807,-0.12027732020444011,-0.05200531046166297,-0.016922082428832898,-0.07124972804004004,0.05221942245471842,0.0021289792503975573,-0.08383951394156713,-0.07858108488478516 +C52:4 TAG,-0.1284190320496825,-0.19445442534696422,0.09235467859885936,0.07600751920926109,-0.3951159735249202,0.04231641365159578,0.07857616383781675,-0.29473194299067396,0.17258245724281268,-0.3552088571793481,-0.3637340837692135,0.1692612468313827,0.07158688036919976,0.11432813048936658,0.2088682991017839,-0.20533340092828042,-0.15627833646899617,-0.25168496035686416,-0.350950886443478,-0.1972651191033335,-0.20593872474188443,-0.3640891185999565,-0.29396668415323346,0.07574271709310897,0.010827644943788697,-0.31897747992927755,0.1463782295462537,0.07718351207542253,0.02213308652607045,-0.29601365713699324,-0.23975766173525706,-0.2363967225108364,-0.2452860317473109,-0.2503927815107326,0.28291283379997406,-0.09356067012903144,-0.018283494420371398,-0.3039769922077498,-0.3704396095327276,-0.2950713077061704,-0.04173505091391512,-0.02767795538814038,0.16248959787758743,-0.28806843267073934,-0.29813129372342934,-0.325882749457525,-0.008224473775620349,-0.3754220747879848,-0.0821699704304556,-0.24200167365541686,-0.16081222987551372,-0.2451343889504146,0.13061189302324855,-0.13338758576832213,0.23413414636630175,-0.01688411921515721,-0.10371024326491175,-0.12692392904151514,-0.15110175492273617,-0.25123450237671874,-0.08585912249675627,-0.26209012989740077,-0.39666706688677916,-0.23531694783243542,-0.19938692798447388,-0.07148426494437916,-0.14973451662936274,-0.3789799560595101,-0.28748205781079283,-0.32256759406482416,-0.30874596262772047,-0.4239688949781321,-0.3404518348275974,-0.37396033698288367,-0.3678292368989701,-0.3437253023230031,-0.2713391573955237,-0.05360625180724837,-0.21524976977079027,-0.3548913581551775,-0.13086674920335806,0.1368099525961086,-0.06725381779472962,-0.029272977056613154,0.1681641439695441,-0.4032391716755355,-0.13321649910049221,-0.419768010703669,-0.408755284940575,-0.39564972734469234,-0.12726982735788925,-0.37523721343194655,-0.002285766397959798,-0.32682462884967245,-0.1639874294371552,-0.36023129777560897,-0.2060506762439124,-0.3264367395047377,-0.06771396940756305,-0.11979466415488817,-0.013878335874160668,-0.2178414435848277,-0.3989264724253553,-0.25362372045627274,0.18918436123617996,-0.2674260613631475,-0.0493835043041841,-0.12978239561125562,-0.30618184573098617,-0.03664704246467356,-0.08293221189709969,0.0504839530225994,0.18338797392003692,0.025799384686866125,-0.36148184699510805,-0.29198732433144736,-0.3241338858838036,-0.10522239657983155,-0.3491089747784489,-0.3499195331009382,-0.27940329777930284,-0.26836629078642676,-0.23288677093644664,-0.14321321229693387,-0.19895512104698676,-0.09101345306242636,0.05728237306319061,0.08208616990989083,0.1375507577186875,0.1538256021156553,0.09636648842378448,0.14169721278755837,0.2609646717530098,-0.10183457162480944,-0.26226995044123025,-0.27633258659423,0.11007661838263773,0.06912437284928227,-0.143450088799684,0.16163709291520414,-0.26613879264631624,-0.02981509486649319,-0.1966275648738663,0.0435049150642042,-0.21241302376977297,-0.035049799986640255,-0.003133467399803204,-0.18523596618134994,0.1201157464547098,0.05226605387165942,0.0841280399837874,0.10738514404890971,0.19517856939797362,0.3244128782720566,0.20636464149230824,0.12870606162929868,0.14297444448077093,0.22602779373495585,0.35604063488622045,0.23735751158266344,-0.001295824970267519,0.010616233498123968,0.18399930757430688,0.2640309738810274,0.32899817910903884,-0.04776351839444208,0.31735684431504413,-0.011671987329690965,-0.2063125348830344,0.11370961571876617,0.14818571732438068,0.10347175148355707,0.10592722411469947,0.2131804331409696,-0.014118235430606857,-0.014855622081605135,-0.04053502570617105,0.24130822515683853,0.1965273061301171,0.3008560254376116,0.248826439922954,-0.12977283402186576,-0.3228803043490812,-0.34392001822620333,-0.34672227633846286,-0.38446693309777374,-0.2683208201190454,-0.13854964732800681,-0.3475147696514692,-0.44553023427177346,-0.22988406729817568,-0.298387020820123,0.6411929786282193,0.5430476582807627,0.33020087048710095,0.6744383637268314,0.6825872129230526,0.4962026248216918,0.25000600295611425,0.8108365061361265,0.672396693810246,0.45561841555606203,0.2651257280647754,0.8648047622721572,1.0,0.7901984965674329,0.6438466885595784,0.4479730716855224,0.6992165601216795,0.7083146978641441,0.8139124867519372,0.8786734143203556,0.6994782717911142,0.576815071328278,0.42307735908726235,0.3755581861824702,0.6372806100756498,0.6603858472152417,0.7278949390076528,0.7702981222090325,0.6203119338903016,0.5061793904082124,0.6085986999568593,0.6023507156040375,0.6150578796145137,-0.07616467575603766,-0.0941514193191257,-0.026685494043375963,0.013060427689973573,-0.1113377885160557,-0.09754051516994663,-0.03658495034857206,-0.14339187085479535,-0.08336774962866068,0.015569128068945032,0.03775033726244086,0.04466847783005227,0.04467156763517917,-0.0484997095650737,-0.10859006573990236,-0.0818426273125858,0.046196669935077025,-0.025435312550704064,0.025081083961309678,-0.036147031520997006,-0.03425177030323436,0.040540830204724015,-0.06563869641078006,-0.030265337737123275,-0.04637003856967674,-0.06219319358163594,-0.1361713034035105,-0.0073279367745356415,-0.0745390415059226,-0.09775196502639032,0.01091462651299463,-0.02965306165289684,-0.0022884288820477533,-0.038940743751356775,-0.09452735465432432,-0.05271148596063906,-0.021287449709326372,-0.07932726582236939,0.053024512338894145,-0.015186579009118949,-0.04116785714515334,-0.06404119062754454 +C52:3 TAG,-0.20998075656148935,6.187425352376951e-05,0.09585013530864545,-0.056899584066740824,-0.17816433124172376,0.020979490180147026,-0.11701552238520763,-0.16095720544901826,0.19646962639395915,-0.1257369329841812,-0.17113354211607346,0.2038121896146435,0.05495217383704298,0.021012800557759868,0.09498291994127916,-0.11938958245708754,-0.027494176009137387,-0.07579560866043292,-0.3638990434539732,-0.08836911498633658,-0.15400717592271612,-0.14498872186215678,-0.07948707530345901,0.12695185051225052,-0.04797146573918991,-0.3418815015450411,-0.029060945002606014,-0.06108888382521291,-0.026797054246352224,-0.17477463582190453,-0.2107857561775929,-0.09016963102297325,-0.03671652866628253,-0.05314688104372744,0.03750188898267401,-0.08339027278667491,0.11843047961442309,-0.15943914604489354,-0.3585791616155277,-0.2803878870963695,-0.102797342808536,-0.11907410367662896,0.18707585458972092,-0.08015972884847698,-0.2549717326791185,-0.309172808131893,-0.015498294778931951,-0.31181747883936756,-0.0745517599883957,-0.29768555260647267,-0.09166359994521965,-0.011469024514629205,-0.046051038577382075,-0.10754560294879512,0.026095219403050107,-0.024839790078142847,-0.042266312227939876,-0.11485385501601279,-0.1166308149873531,-0.05813801486780816,-0.19272654060608058,-0.24297665418932318,-0.31840261910773077,-0.15325974796861944,-0.21179374156468017,0.02230165428103718,-0.22975060911953388,-0.32384751695202046,-0.23786826650929416,-0.32979199391984443,-0.31935167352425425,-0.33427202383560756,-0.22895708771216358,-0.3270106519087344,-0.26895003576167426,-0.31983853176076843,-0.0966435878511047,0.011969888304760468,-0.24260502919824065,-0.35077615995863226,-0.047884372641965066,-0.030560291531768757,-0.2020101350539844,0.005401448628308217,0.027968200643388112,-0.36071175313548914,-0.004586537484905444,-0.30313193932918236,-0.24328342976920533,-0.36995749857669863,-0.16068901640700597,-0.3033283442799724,0.12664662612904312,-0.3155513425915897,-0.16492564462241038,-0.2704164376218355,-0.2332598646939022,-0.2812896379114435,-0.2823951822569223,-0.08219504347779874,-0.056171373661185575,-0.007735647679794588,-0.28518145808862466,-0.28285941820358673,-0.005864243393130184,-0.33210236208875626,-0.07851335331096848,-0.19307406112655784,-0.28772920052246415,-0.04078624901187255,-0.11414218662452717,0.09406550064284143,0.01668591913065181,-0.058177796655385396,-0.27199994590035637,-0.25583698097638413,-0.1244498653427244,-0.0813898146766144,-0.24760999855284005,-0.18083458339941025,-0.07786870590756331,-0.11941854164891856,-0.02714089841034019,-0.09869841957667971,-0.13602252361877326,-0.014708155111539587,-0.041232817489722066,0.04634706268625099,0.08254411686067627,0.05383032060331003,-0.029830849918858246,0.055295906617329985,0.03884505483453564,-0.01475332899318706,-0.07164118010081684,-0.31268653719140266,-0.000948574219606551,0.012277607330388402,-0.2030857651810177,-0.05198227501427705,-0.19064216746168208,-0.20370455410739646,-0.17936849480977402,-0.16304913246598274,-0.3288265305012374,-0.03312551232529875,0.04031114977497846,-0.05956880101285893,-0.015347065302794215,-0.1484775220695283,0.28066488710446164,0.2527859529013504,0.09549309211955083,0.25327754823662224,0.16467129710702288,0.3361888029768594,0.1431774170652911,-0.002208549089637674,0.03754199947378456,0.09789713314915986,0.20696061254225243,0.020606578000461236,-0.13431613361460884,-0.1005472868954836,0.058174987039687695,0.0989405939245166,0.0016466827535950503,0.07717569397992173,-0.041744188717945885,0.10253215375006176,0.07020907156954156,-0.0043061625914111775,0.010496963802159174,0.11868777316534415,0.18685534141135945,0.04084790874804151,-0.007990406376532568,0.2355850474292363,0.3721162880571873,0.42018481993912543,0.331033862600827,-0.08832327745243687,-0.26225583056223756,-0.2712330932735133,-0.3786578339598191,-0.3803724703317306,-0.14871832710959712,-0.06773595241389255,-0.35975025555247214,-0.41024560486850864,-0.3105861275206182,-0.3085705767168746,0.643352277928563,0.6328988673935987,0.35999278814842695,0.6870457657305185,0.8369273164661524,0.6434646241317373,0.35167287406682635,0.894260278300585,0.8844473692181701,0.6089426402019203,0.32811001462503286,0.6132225758417436,0.7901984965674329,1.0,0.842211791872014,0.5366430194196952,0.480133670313023,0.473737496907316,0.5474279193637107,0.7510823527660697,0.8893757024789501,0.7209004055282562,0.4579512635030157,0.13944022959202268,0.3878429903614219,0.35730071166023253,0.44093028346687485,0.6242650486063445,0.7458574485605041,0.6103367711364771,0.34547965077967074,0.3696287660132232,0.33025135979826675,-0.06711003613906594,-0.04795482672526028,-0.04591833083331978,0.018257935881507696,-0.1066975212560857,-0.07889641880320744,-0.06259550906824901,-0.10695845180225674,-0.04978458902894226,0.011203821688172157,0.05453654406650151,0.04619888722751721,0.0706196449602273,-0.013997987001878927,-0.10801289887151397,-0.0473406402282111,0.0401930771633576,0.010711244510157848,-0.03714286427086286,-0.08681628751423336,-0.09004222545789939,-0.03384604355625699,-0.07014751136635283,-0.06748089025319574,-0.085010495073873,-0.05943692969348256,-0.07474092237168477,-0.013391757272154026,-0.046262068523721396,-0.0818319080471532,0.021590321601360502,-0.0071517340993661836,-0.024647732108193793,-0.04767474730557776,-0.08647577801239045,-0.060780915156381544,-0.021026994082062357,-0.06347718753754064,0.05586711342505941,-0.0591255624721372,-0.004982497879840055,-0.030608881621095037 +C52:2 TAG,-0.20542651694536773,-0.022739776150470854,0.16217449795138325,-0.06272861290290804,-0.18734417901653042,0.08308653860571892,-0.17637353749593168,-0.1389184617482298,0.2920762544785942,-0.14514227097451815,-0.1746090044023038,0.2743358613641424,0.094775271941011,0.043562777742836255,0.14064356761027266,-0.14131729102540477,-0.07165688076611303,-0.10443001999428447,-0.47946911893126726,-0.05050892881947777,-0.17340126559549446,-0.11656778541086528,-0.03099509006236439,0.2254820346173905,-0.018275656250781955,-0.44078692161595323,-0.010171293233621382,-0.026778638416824544,-0.013128469215082744,-0.22870245685503976,-0.2831415635630895,-0.06064846567220167,0.01094059287025335,-0.05992120988893212,0.07419414475084445,-0.0737741845222621,0.1229397966007399,-0.19515122088888026,-0.4368124653516327,-0.3620502158936164,-0.17637832320153135,-0.17264588243446624,0.2815170131539408,-0.03978453242539557,-0.35087415373436315,-0.3498973032129135,-0.028688257060318127,-0.39816714156228367,-0.13528847157217666,-0.395736749772568,-0.19198134788208798,-0.07906090278103121,-0.061381493404038964,-0.12380642224897846,0.06816137542917777,0.004246528609130249,-0.03163854439999163,-0.1408862785467605,-0.12582234019508523,-0.062243959626857776,-0.26656182731736777,-0.30241503117148233,-0.41024459112244,-0.16698987670115645,-0.1619393646606833,0.016935988130154934,-0.30094657464879804,-0.3973894118283881,-0.2950791694154914,-0.411279523245674,-0.3858280706385716,-0.41963051102034776,-0.3229670089819023,-0.4076327797126371,-0.3476253227682268,-0.3671288286263529,-0.08345905485708023,0.05055577757689596,-0.2715893669193183,-0.3819734547607349,-0.017210590842026863,-0.046772131601935246,-0.167165933826875,0.030293434438998974,0.016183771102440948,-0.42101365906029264,-0.023049976226451944,-0.3599019741025344,-0.30305821288427737,-0.45465084361348956,-0.20397276542362777,-0.39261119850642834,0.1788476436278465,-0.4003098149818794,-0.17150968789886817,-0.35835038513620987,-0.33603334974474347,-0.28579006540944285,-0.26242169261300846,-0.03928041155581168,-0.06326869805464645,-0.03698740036930503,-0.3577867058422606,-0.40289099154513797,0.0008783467601521086,-0.43716018235037774,-0.06714512019786034,-0.20943316573972418,-0.33518116809680687,-0.08290851638210216,-0.10002863063688962,0.0938354492827034,0.042079859433489256,-0.020880697190394003,-0.3664500250023734,-0.2581744851623605,-0.08837871796266207,-0.0642590644603497,-0.34397894242000615,-0.18368319574805736,-0.042981560623508074,-0.12311656937896555,-0.010267150795685426,-0.043392425818780285,-0.14610401340044696,-0.014381553010354412,-0.04325025443520717,0.05991657935070925,0.0959234700476593,0.0804517915847772,0.0005707750576755975,0.025018840859006478,0.06867022236515541,-0.032228993426759306,-0.041099879837552526,-0.4054679013391305,0.024960168603300747,-0.05594293114158216,-0.14512635160700504,-0.08142007631006158,-0.2234801819776621,-0.09933812057600408,-0.2166588314760017,-0.02307579600390829,-0.41838608736853167,0.11095079965066501,0.11876569921100781,0.15601436388125614,0.0338081467769878,-0.03894678319286646,0.11353902452131916,0.27341782383193397,0.3535041962022086,0.0681583268945542,-0.017884712671198982,0.21538052347799103,0.32162056477779793,-0.0050942433097665015,0.016950595614581402,0.04515950732327962,0.19951382371108045,0.27762508161951677,-0.09197359341007005,-0.10305637219209077,0.020217703095697745,0.21233109660640784,-0.007627026158040282,0.1509319286968833,0.03239275282872251,0.31515812920205827,0.1272679404975896,0.13204753552673681,0.12456717632946523,0.07982720182035664,0.18164016943687353,0.17370217526249865,0.13845797658380427,0.22176349724496514,0.4310454138779453,0.35112568866290605,0.4750764899078809,-0.10035557528089854,-0.3887525640030284,-0.30848067132856927,-0.48876393214396785,-0.531450904209335,-0.2646357359028303,-0.015347592586365541,-0.44724877930964235,-0.5223921435238691,-0.43036139917698646,-0.3657138193582725,0.5594429936184511,0.7472286294972671,0.563454149887636,0.5430106214608506,0.7749215758873984,0.8276309187354308,0.6287487997566759,0.7286658186591509,0.9149546616709477,0.8613116441523522,0.6156203735567904,0.535752015054182,0.6438466885595784,0.842211791872014,1.0,0.8032277529946904,0.4296596744539709,0.4335353584356156,0.48244763299886606,0.6443769383334711,0.8253518500516515,0.9007034446754946,0.6950586207486733,0.14725955030233212,0.3610778188580559,0.35386516395060647,0.410632915122187,0.5786506307149881,0.7405695896104795,0.7886053142034614,0.3089004351294278,0.3239736760096959,0.3305379355673941,-0.07881088203222102,-0.08281001850856949,-0.017991205453133995,0.018428924537244266,-0.09376353185333025,-0.10187032221970642,-0.07719218796323883,-0.12222444379707767,-0.05167815089332288,0.04730851427865225,0.08647924419175418,0.05693027567324275,0.0847676894087744,0.0020177450707544713,-0.10626123796724647,-0.04614874171421249,0.04170712537917843,0.017218979838201944,-0.035254710252886096,-0.12186963230468179,-0.1089498592130772,-0.025692782654588665,-0.08558247241321969,-0.11847768122259109,-0.12033303775364755,-0.05950680352511459,-0.08315850441513108,-0.041860713635410475,-0.05657659290858695,-0.05840728916786539,0.04904868213114875,0.02204906219826219,-0.024070625593971686,-0.041285336769042516,-0.07596273735474902,-0.04748758643490857,-0.07435740654625725,-0.05440362585013312,0.0567372347929837,-0.07417927779896487,-0.008549131285469544,-0.027897067654556084 +C52:1 TAG,-0.19093794284178314,-0.05535706709148839,0.17203839550753847,0.0385150668416737,-0.19875672643426875,0.08279735666041023,-0.14540845242733996,-0.1262007784946584,0.2981518814837266,-0.15781580363063527,-0.1626920760470395,0.2876590145358588,0.0450961737316227,0.06447467434616101,0.18890328289159944,-0.08913358383904273,-0.08775841876222176,-0.12775531573991575,-0.47221253852103906,0.008816189762862435,-0.15828858848615698,-0.13533793060074142,-0.044612826675301046,0.21573610930511644,0.008895947698783985,-0.4393389981399069,0.0452952334397143,0.038558695539097826,-0.0172786257149642,-0.2380836110748834,-0.2609004802062133,-0.040171420168293,0.0015386558154551915,-0.10770855889460992,0.1400381986900357,-0.07742000219350197,0.0685380672054034,-0.19403478998937396,-0.39929799659369847,-0.35538991356183885,-0.11747099235706185,-0.13205851036897742,0.2905682720371205,-0.06858229166434812,-0.35981056537514033,-0.3080614359389175,-0.006260189809204798,-0.40536169334392563,-0.11127623376144587,-0.38104224439322054,-0.22697584778861102,-0.16926641099777703,0.01818191235439936,-0.08847030306780677,0.11264049726335386,6.406729249819952e-05,-0.006164646458770185,-0.11877944810536017,-0.13895239400315004,-0.0970830182782212,-0.251757756169617,-0.30594945692185926,-0.4184881689684228,-0.16098537703356405,-0.08999798564183464,0.0017730159029138695,-0.25886434348172976,-0.39865929293589564,-0.28742239359738064,-0.4074095591758664,-0.37477300388430984,-0.4198847451168602,-0.35119684378696153,-0.40935653530738175,-0.37621391503896884,-0.3673613653621052,-0.09150569055421304,0.057826905515209866,-0.24768105849672445,-0.32954564384610235,-0.0036706639172705215,-0.05517842030316956,-0.08749063146113764,0.06334193001243062,0.005723404777056675,-0.38007541520170246,-0.09121678124330015,-0.3865827024324412,-0.36268537354930214,-0.43314195075120193,-0.19637578099975156,-0.40847251728226186,0.17975920709082863,-0.3944035558008295,-0.14914218276622787,-0.37205581177942615,-0.34727599491621164,-0.23113387352065856,-0.11648206823420869,0.00211482011521147,-0.07313064789584492,-0.07787649620683515,-0.3699138139823787,-0.412811563388677,0.0751980325804148,-0.41952473473961094,-0.03500424254553361,-0.19538167374200546,-0.30746845058890165,-0.07367928745114637,-0.09535958819360671,0.06348884918894528,0.08832028217386996,0.03430532525893175,-0.39269501207261776,-0.21047454336240756,-0.10329616814191574,-0.04402122963048352,-0.376616584640795,-0.1775800938672944,-0.05224582498552505,-0.16422310393615988,-0.028237834936947225,-0.04170479715349525,-0.14306474450887022,-0.03137233539902605,-0.020282705655350036,0.04900202730442046,0.09790461689758752,0.11665591633526048,0.07355831852058022,0.00018308428194850805,0.12116160208375107,-0.08102411892301294,-0.05589826977171533,-0.39338951749931994,0.05051323471004357,-0.14677750097408282,-0.07129729214126268,-0.06338019929496154,-0.24919869368953276,0.035110855007592534,-0.22693313649544422,0.12132425738652727,-0.38230585055192395,0.1937459435126765,0.11675274462512727,0.29520514664437564,0.099356406646494,0.040089077920680324,-0.10727501838975971,0.16058987865802207,0.411751773296086,-0.0994322673108763,-0.15871682867568102,0.007344865293042857,0.33948144905263533,0.06032718329778979,0.04836634783588242,0.02307683164062515,0.09325785571996946,0.42041397200013353,0.010779767869333875,-0.02795331925189544,0.04219265988303517,0.1516480216892434,0.045558311886236935,0.09137810750421169,0.02337993608413728,0.3715160901914306,0.1904770394898129,0.1602429961394681,0.1720459544288094,0.0451226434854925,0.06779662828947045,0.13360408877047764,0.23684352872667294,0.20971880033757193,0.3005566110112549,0.139877739340261,0.5022628256565941,-0.11976258336843455,-0.4401010633593238,-0.29761890864192403,-0.4528755026266676,-0.5506891692376997,-0.34034372038617905,0.03843078371048492,-0.44202995594670963,-0.511371415234105,-0.42557600786064376,-0.3268416952524762,0.4214271237302404,0.6846941005811811,0.6779446406214268,0.36268432044916404,0.5412131134408241,0.7904015229458845,0.7721757027222685,0.4465939266299706,0.687374828427046,0.8824651495695282,0.8573545640841568,0.4471309809554475,0.4479730716855224,0.5366430194196952,0.8032277529946904,1.0,0.40769750359324414,0.4003055096432717,0.3994518115836859,0.4609297766544855,0.5344310575198706,0.8532872614659365,0.8897023664383321,0.16160307280691039,0.3515893550119768,0.3510972194672301,0.3548144191067868,0.4644183624293144,0.5457061856314639,0.7979105218297562,0.2777228239076516,0.27376886168970666,0.3315384016135798,-0.07370984729220845,-0.09104973228729993,0.033943847149405515,-0.018502973681141077,-0.05195745688504022,-0.07918418860768667,-0.058865816006611185,-0.10810299223464563,-0.05213786996239603,0.06294818527051489,0.07439535198118503,0.04432543836214836,0.053967165854724344,-0.0036227977618994425,-0.06715228305063504,-0.03543059676648082,0.04499267816862478,0.02214570419137085,-0.009640340582657692,-0.11438086474489498,-0.12519072105153334,-0.04350560058017861,-0.09950831532387001,-0.08925278210978242,-0.12963438195481888,-0.09087276835438148,-0.08174575370773049,0.00520391519811747,-0.02794725416322034,-0.04367072895676229,0.08160065703579115,0.05802077332224972,-0.02315253377954874,-0.037218573350984885,-0.07197380558223411,-0.034037143629250054,-0.08923296646751626,-0.03377659933563552,0.07519273989209607,-0.04197383497878934,-0.0262790360023854,-0.028070910559710244 +C54:7 TAG,-0.0984170465747131,-0.26836788718361404,0.08289545330481334,0.16582790103795414,-0.416656165862095,0.05579707368131456,0.209424986373248,-0.3252134243746036,0.15910700871978942,-0.3869836953985124,-0.38469522733019956,0.14446340418570885,-0.050094871084577795,0.07970207056791312,0.2484996541709427,-0.19873308523985755,-0.18883912335443004,-0.3116576477604787,-0.32219010771185846,-0.1790671050706564,-0.14330991319021918,-0.39065081097543664,-0.3112104116896536,0.038759305574643646,-0.015716936165117015,-0.2794064536912406,0.23672675345167454,0.12076172646054784,0.0397172525552222,-0.363201352191238,-0.2197151808976556,-0.26906609657458724,-0.26118757060875253,-0.2682652969870797,0.4378197890414133,-0.09018392217989986,-0.11246796727676767,-0.371051341671695,-0.32775812812037747,-0.2986904894438454,-0.027956885091921867,0.07005572201073959,0.1542963859155558,-0.3410065814773997,-0.2596185348971863,-0.2638397710964292,-0.016673482761008333,-0.3681922132520729,-0.07867904609427093,-0.1847581154384803,-0.22238657155414732,-0.3736969508194449,0.3091757777066508,-0.09738755422292662,0.34483388698660633,-0.0211561426531886,-0.07190789985475733,-0.13078238304683557,-0.191436755703873,-0.34842395027741113,-0.05099699710869047,-0.2878626075776384,-0.4378072326737342,-0.2416368764804745,-0.14006337923107703,-0.07623666972457209,-0.123833771265505,-0.3651454070076791,-0.22116993205478683,-0.3397736631696777,-0.308971421496103,-0.4485375925538846,-0.4015336243781247,-0.3927624438095483,-0.41872556354698004,-0.33190318639475463,-0.30745490906104433,-0.05161356208118238,-0.1346297514818925,-0.28301900619854364,-0.09639953157285756,0.2224589422379711,0.019977351203991918,0.002160273774919624,0.24278656016914746,-0.3405348648370725,-0.18190741733999444,-0.4548623757559053,-0.48877380345773336,-0.3732905266790862,-0.12720338854467084,-0.3769887990679337,-0.038920847706039235,-0.29609952350069757,-0.20488515025429233,-0.40517211238976614,-0.27209943975252354,-0.23400123057516567,0.14366616435228569,-0.03854555182268507,0.03004352927187385,-0.3076131020819618,-0.42524134341907033,-0.24471910273272363,0.3635031701271366,-0.23759858000569206,-0.11759873065731233,-0.11638992122662055,-0.2636382005969833,-0.09196008688349538,-0.1446115313489927,0.048517966860079746,0.23007099754355406,0.04532122527561045,-0.4104396980924416,-0.2819742617591984,-0.3379659988039908,-0.06404953294965152,-0.4109374249577883,-0.3360394401476178,-0.2847755371038527,-0.3267865735794609,-0.27150562514948523,-0.08739533964751256,-0.2234865596938711,-0.08081700999984612,0.14504169509124296,0.10695464387936657,0.17545530897054837,0.21987080263305597,0.19789381358192612,0.1513446353178813,0.3454991395461843,-0.15973643104559163,-0.2862973704075924,-0.23802641565764796,0.20529269205299625,0.000784859106065396,-0.07774801686779159,0.18953383937647958,-0.2638485645744499,0.08952224080638517,-0.15299220696071297,0.1780489953689033,-0.12482297841078302,0.044923686529688894,0.03330284356667839,-0.10052539196926485,0.18166044356829814,0.16377695414006596,-0.13829582709773758,0.00510380885173267,0.22650503787952295,0.19435022349331352,0.017916676189172018,-0.035367901482529045,0.2076835796583609,0.3757297086525205,0.4673090907095054,0.2721366760308623,0.0021500431779821454,0.16718903175691335,0.38439341071244126,0.4442013544448366,0.4357434203428794,-0.05871216496127681,0.4107522425919948,-0.053012320472425135,-0.24215468815290261,0.1741988024632438,0.16434084353130254,0.0510214898671927,0.07191046804340308,0.26744997279255583,-0.0050539900966403185,-0.052670732853807786,-0.00642145402338289,0.22049632806087416,0.055578707092275505,0.16903089131200758,0.2558857977927881,-0.18621677837258457,-0.37179554731535625,-0.3303517025493944,-0.32625043711125185,-0.38534681452542807,-0.3270277418247158,-0.1511450244116852,-0.3145864226429397,-0.4077837048441575,-0.23228471651429697,-0.24606634938672495,0.4289441084826145,0.3517893093404814,0.27202979260286764,0.39105017871835407,0.3744603398367019,0.3009856472331377,0.18060289631287252,0.47565839414372757,0.3792318059020602,0.3179949988140341,0.25205095767510827,0.8207031528951395,0.6992165601216795,0.480133670313023,0.4296596744539709,0.40769750359324414,1.0,0.8534289682804918,0.756816557300684,0.7267805302039394,0.4987627523620601,0.492015404710003,0.4458825109210685,0.5495201816704913,0.826407303716035,0.7940752767479536,0.7426248211157662,0.6780582953176842,0.4996674009933745,0.4678448114855818,0.8177620961535509,0.7616886730681574,0.7507816952947575,-0.025714886097682174,-0.1006491443225884,0.023960420606367546,-0.0021081016816421093,-0.021065680540589105,-0.030370997778250183,-0.04512511881305431,-0.12577819404918428,-0.10603495960834172,0.0608507451571424,0.03814587428720903,0.015081586801517962,0.003915285509982618,-0.08560763544501157,-0.037855476491407455,-0.07383326030979713,0.058879819782154834,-0.06683268627182332,0.032936809110635276,0.01021444342731577,-0.03362710376457283,0.033539540417171894,-0.0839743350372277,0.03764606520112154,-0.022440086524601343,-0.10922816151944517,-0.13152699904139714,0.026133761781067112,-0.04305899680013441,-0.10673560153915815,0.03301064812622932,-0.01744020077182833,-0.006694902021803415,-0.04878611091152852,-0.11962396824015308,-0.059107265850242716,-0.001031869880272912,-0.010810728774531394,0.0793243676209461,0.029690923401935722,-0.05740101006216474,-0.06716544147762103 +C54:6 TAG,-0.11392436916822445,-0.2833041880350993,0.057529056565018714,0.19222799357289042,-0.4793633854484772,0.05830657926193627,0.2752159970467526,-0.36151448246536483,0.13443177308826368,-0.4502090506521884,-0.458382171510621,0.12413372768104348,-0.026773988073404045,0.11351341166407619,0.25391010733347585,-0.22899376652430375,-0.20108636704648544,-0.3553700125925807,-0.3158989164077988,-0.20270000735227592,-0.2102707049095966,-0.4221920806062603,-0.3497710125994676,-0.006294145437828407,0.042811569585471804,-0.2916119676507813,0.25553588055700543,0.14160188231925167,0.06758838701227785,-0.42647321727438475,-0.22735302396287493,-0.3241353227852886,-0.31950277014023276,-0.27660908539003887,0.48461501513870126,-0.10834297843923421,-0.1258044409323363,-0.39157891514240994,-0.3528159037526465,-0.3123113635741571,-0.004152982286040937,0.06009231351553565,0.13023945629385847,-0.37084304403601653,-0.2889217711687621,-0.28613391913867303,-0.03057697825235478,-0.41432733195672833,-0.04668542985641387,-0.16835864443744808,-0.23649213816794953,-0.40539885480779503,0.3538714572165965,-0.04405555530155112,0.4240423316926241,-0.052927286945368614,-0.09743073399656149,-0.14847108397002104,-0.17550018135639095,-0.40069563820986115,-0.011435566566692156,-0.28769825604674854,-0.4330580274816859,-0.23598964527600683,-0.14358562403881867,-0.08748036192087023,-0.10094101939607515,-0.3630434684591417,-0.20594731497489163,-0.32912559767297517,-0.3100540796289953,-0.4563841865346265,-0.4052061350226876,-0.4032232854243683,-0.42332074791704727,-0.34733713152145657,-0.3588215782794865,-0.0503528929672119,-0.1466703364383224,-0.2987511667352607,-0.13277941129803883,0.2728952623020443,0.018809593318912212,-0.03353274266289369,0.2933613320220179,-0.34667832444113744,-0.18214717785486637,-0.48143688926404654,-0.5206571207771681,-0.3829267258391712,-0.0702002343395552,-0.3711581489201241,-0.07819418643342096,-0.27583367438990813,-0.18980702593948404,-0.4251331494952647,-0.26247987472479456,-0.23392421865179389,0.14603044851860625,-0.05725136520487168,0.04594884785660254,-0.3139438087473911,-0.4383787649925276,-0.20219117666023012,0.3852332574988906,-0.22495204896782325,-0.1167330808906766,-0.08128984165745086,-0.3100455142278477,-0.0691785696406181,-0.09864858525361841,0.05177987576600154,0.3218136271808578,0.025959620563250112,-0.4265827538698404,-0.3057867572685379,-0.3881320620231063,-0.05854531694283316,-0.40776224881214257,-0.3702550300335474,-0.3336945363924727,-0.33610342956451295,-0.3267899681491561,-0.12636567199182658,-0.23647487590861213,-0.11316750800895288,0.14161355862048705,0.13334224094314515,0.19050130125441783,0.24430791329500212,0.21158974986924534,0.16200792396992006,0.3829321947083819,-0.11580928146842438,-0.34983185579479165,-0.19696148130782015,0.2530433464563706,0.04160838279851213,-0.04651961100855368,0.29349415547654717,-0.2746752265448262,0.113080635858247,-0.1613829897075774,0.21548812685617788,-0.08540663664320501,0.07391305016178742,0.037430815927119145,-0.13912508525344858,0.24237062355422664,0.24444010878285624,-0.19028317682497678,-0.0071666609029507975,0.24430332781583633,0.19652790839315787,-0.004265652624223383,-0.06190862482559873,0.2270005954776141,0.4384931174353168,0.5472092042971222,0.24248455541451333,-0.03229821349869628,0.14343233583522386,0.43893116662178183,0.5122807171127455,0.48477484903087975,-0.12741939265933158,0.4630870033525169,-0.07933102889364216,-0.27627061306270106,0.166776679719031,0.1750341405226146,0.04302722640821486,0.07790916625882068,0.266795089686813,-0.054079356412705455,-0.07770552393356532,-0.024340421383636644,0.2625170414369013,0.029726816742382447,0.1464386562418363,0.23905439569870846,-0.15563923818309094,-0.3675553579819203,-0.3295411490895404,-0.3026771380044996,-0.36566358905694446,-0.3306611391788925,-0.16757198780896354,-0.2940459328330362,-0.3899181613277805,-0.2004091287010656,-0.2383665570738131,0.4473475673817523,0.35369803939776745,0.2962628569915185,0.37612361950423046,0.3657322768648756,0.2917450725060988,0.18107341697555648,0.47245713773999226,0.3601961718414115,0.3181080791731519,0.24832804635738806,0.8372275285793263,0.7083146978641441,0.473737496907316,0.4335353584356156,0.4003055096432717,0.8534289682804918,1.0,0.7879032739652522,0.7560815690465225,0.5031928475630818,0.4800573862194575,0.42046096671321587,0.5810250694286584,0.8430366286167101,0.8476049043229653,0.7868245646973178,0.7041151904423724,0.4848100520707888,0.433990526138953,0.8135225025431719,0.7549555357774346,0.7884081566061749,-0.04373092358630784,-0.12045047028339126,0.014652104813178825,-0.010686256652602713,-0.05565934429308297,-0.06306903250386042,-0.009098819910164282,-0.12018127201901116,-0.14839964113405793,0.03405892350803094,0.0417104012956896,0.036706494141202015,0.026224360260983407,-0.1151089557075887,-0.05255409160827671,-0.10186069951460087,0.039149312216352344,-0.07911471203827808,0.05145952446622851,0.033864713619909344,-0.006665411587912917,0.04832559131733864,-0.07697655679427293,0.018370128779611434,-0.04722380620453322,-0.14814254086961895,-0.17909217287497783,0.012090768836972257,-0.09539594545757568,-0.1346244375494138,0.012357863986485355,-0.037599846142720175,0.01342335293934136,-0.04875889962609829,-0.12071855397657247,-0.05621439828690401,0.037910118987970406,-0.03444956813939216,0.045620776993855854,-0.011563060331305457,-0.09585637690607493,-0.08595583517190081 +C54:5 TAG,-0.09435429799475747,-0.30667629407909314,0.11039027823960613,0.13864910077878295,-0.4564539735304039,0.057188614220584175,0.18796921265143324,-0.33142870773406913,0.1456790498679655,-0.4248680140538377,-0.3867376156074255,0.1380353553173944,0.027347968929733086,0.1306490706574525,0.2558495504331512,-0.23174181595179985,-0.22701380604927734,-0.33038830913843326,-0.32033433357657276,-0.24097367887859955,-0.21042088764291048,-0.42762621120537475,-0.37007996526760945,0.03208731418757589,0.021548946903478874,-0.2686476464808016,0.2678192565635848,0.1509629650022801,0.04206086062842664,-0.3719103289094472,-0.2269999517989167,-0.3029268972443588,-0.31457788556881316,-0.352577779785616,0.41757146257595446,-0.10317406762317327,-0.113100180528635,-0.3909343229703106,-0.3228214754216156,-0.2760372495388993,0.0005448453891585254,0.01962456015959403,0.13248568947005426,-0.3436671702101634,-0.28996132051192064,-0.24932932796376486,-0.01058342171604492,-0.3980637817272763,-0.08304727663662281,-0.21205664718673914,-0.22100184298182168,-0.37306111523316127,0.23323025795831467,-0.13654356858032474,0.3393789969206121,-0.019562132952580972,-0.11083249184417045,-0.145091541146487,-0.1626134996736329,-0.36043556767114954,-0.044770065408838995,-0.25904205025822435,-0.41487001044034205,-0.23207846369371335,-0.15153250058600856,-0.09938922594114444,-0.11112918133801783,-0.35275967129574476,-0.2698516460635562,-0.3090194567910245,-0.293314720001428,-0.440719197183022,-0.3876136083761131,-0.3781333557849076,-0.40197533479916914,-0.3280808608327173,-0.3512495606975703,-0.05932010164639654,-0.1408296905153451,-0.30436244444061333,-0.13363161415306654,0.24024013238152317,0.039572708630760144,-0.05640039926163145,0.2159792558331482,-0.37162357477739816,-0.20760685813533014,-0.4471193591092251,-0.47402842765836095,-0.39545043531877055,-0.09173108361054061,-0.3839808553855789,-0.04196251767055687,-0.2928247222830348,-0.17761513889836278,-0.4131444619430523,-0.23937804437891105,-0.2885324772515651,0.07463588076753463,-0.07528709130757048,-0.011177990785834353,-0.3339478770637413,-0.43894410802312483,-0.2510631278823891,0.3115187594809057,-0.2209786307277277,-0.06738994538756048,-0.07346367389334979,-0.3146424098808373,-0.0782293195790813,-0.07616221132658338,0.06441055808571242,0.228213855134888,0.10604711374540055,-0.4180259398449589,-0.25923185977387436,-0.35330191564047947,-0.11624174533432087,-0.4172579678247785,-0.34710906508489664,-0.3097642960891765,-0.2904745198508939,-0.2937342104645883,-0.12158036132800804,-0.1825020273719858,-0.10234649165605486,0.1373444340935061,0.10551400036555152,0.16054707264792273,0.19212407292657702,0.16608259388419033,0.16771573739270895,0.35005772981974353,-0.19418784468398068,-0.32661088775831004,-0.23251117702889582,0.157656033261574,0.049518582322466344,-0.07521759603523233,0.2523354572475481,-0.25552778276789934,0.09881539300272946,-0.1565752205043872,0.16862673296215341,-0.11880670916834636,-0.0024217851738251757,5.935305173495968e-05,-0.17874297289736188,0.23377871267770073,0.19933337992239428,-0.17361187519180893,-0.03401241644366061,0.23854547526807843,0.1947185670293288,0.06912747495024496,-0.06833810470645023,0.17692058573220193,0.3237445455051924,0.49923809662658325,0.319784310072809,-0.07050965834561598,0.1366230383680815,0.38166769931445366,0.46494587386916003,0.4667057351510617,-0.07470672861318539,0.42906254533907373,-0.1007533324367305,-0.270615900911711,0.1450473721255139,0.15640525668278846,0.15061007960685807,0.1459026851142752,0.26764563164060323,-0.0727177212000321,0.005364488468646557,-0.004452829943082425,0.21322881265541807,0.034675054130034084,0.1405010491880456,0.20800507121561634,-0.16333062865975442,-0.3535143939732484,-0.33234446325434897,-0.31891778810528787,-0.3656478080744782,-0.30470544480810735,-0.15876795983136938,-0.3117992765455518,-0.4056348480698376,-0.192477952716551,-0.24856935644082898,0.44031592830086447,0.361250488352723,0.2586959100086337,0.43216687920865005,0.4023773382633889,0.31659845049798574,0.15806837056692025,0.5360251754851831,0.42231224534446976,0.32507167152959837,0.23430608945995954,0.8130521361668835,0.8139124867519372,0.5474279193637107,0.48244763299886606,0.3994518115836859,0.756816557300684,0.7879032739652522,1.0,0.8205593544169422,0.5602430533977439,0.5217262458365884,0.43158511060913207,0.4939977104526797,0.7468573173326704,0.7884064561027092,0.8087799444488901,0.776845584412936,0.5343595028708947,0.4546307706402687,0.7537070028093869,0.7050600943805688,0.7595433829522579,-0.0736696932152145,-0.11325812695904211,-0.007718033828499119,0.01563441390217434,-0.06968579681624028,-0.07413823527389701,0.01208004876852611,-0.11355656520753561,-0.11910379416754213,-0.022009256389389085,-0.012017795908137964,0.0057947606998516345,0.008890715322686073,-0.11547582020656917,-0.06764527670648217,-0.12378252550552475,0.015579722671975944,-0.09348115712068039,0.06246930055931621,0.0036311037871468435,-0.00041083170745144845,0.07186182687649963,-0.06640316794109367,-0.0028821907622943654,-0.038435651372304945,-0.06736002009040679,-0.15779876474130855,-0.009088667525950703,-0.10369883759682241,-0.10731565764506423,0.006598867968819187,-0.031121144081807318,-0.02432471364584228,-0.05713284985430844,-0.11099455300953666,-0.06129711446545268,-0.004981004589903349,-0.04830517414972989,0.06236446078195661,-0.04044454333760123,-0.029974946983998642,-0.0508065638888951 +C54:4 TAG,-0.13397746230582436,-0.25346601439618754,0.09874238099201732,0.12563444921148706,-0.38330361236325466,0.08663617316361256,0.15602106983293246,-0.3014301952618287,0.15897008413805186,-0.35462372658312225,-0.33644248199279114,0.15429253403045265,0.042412399737651915,0.11730168543201402,0.21500783138656998,-0.24603928038425185,-0.1706998959877358,-0.30594324945157847,-0.3453947044564542,-0.2157871443515804,-0.1853189678270769,-0.3920571236603566,-0.325298635114238,0.05037362387135459,0.016776880705667182,-0.2881016827750698,0.17190461851159541,0.11088342813540003,0.06365428762950284,-0.3144783742563244,-0.2427399824884402,-0.2818104715660257,-0.23845363480477097,-0.2576753766494089,0.33009021512474035,-0.10282114274715398,-0.07747758524238577,-0.3615465729753583,-0.33687319914616043,-0.2990002485011258,-0.07776316982544654,0.021219763624591662,0.14452810179014566,-0.2972993768374543,-0.28850462022213746,-0.2780591472986414,-0.025024807253208325,-0.37912120886446155,-0.06596638113473442,-0.18887678111869094,-0.17492542280367104,-0.30797389047912593,0.20449829272992298,-0.1285063533626982,0.26085706459355906,-0.011367975381176742,-0.05079470076289452,-0.12210209642106744,-0.16780141006803104,-0.2802349238298637,-0.1025208404960336,-0.2767776253229771,-0.406554724025412,-0.24992401454194785,-0.15015391550931104,-0.0521519446249576,-0.1655822446378952,-0.3690627062524049,-0.24624144838943193,-0.331199324204823,-0.3189924589592361,-0.42589935909308635,-0.35334647853327067,-0.38920075786693764,-0.3876030003044458,-0.3504860691266771,-0.2601972435017399,-0.025571191581467676,-0.16960677151079254,-0.30081303863117465,-0.11140755958615152,0.17069219630335195,-0.05157402341491557,-0.04482570201997282,0.19579129567546494,-0.36553321758082535,-0.19265679870913402,-0.40343350440040743,-0.41116806647050497,-0.38304117161493334,-0.10010853940194925,-0.3682621408021028,-0.020038380388661837,-0.31512427875607607,-0.14512390592375415,-0.38418137958892445,-0.2503650086811569,-0.2888402361716993,-0.0009808232666209706,-0.06469955180432949,0.030006425280794585,-0.23396390809776457,-0.4148316841878815,-0.23689649430978046,0.2381281411776048,-0.25439153200584946,-0.05621107725222332,-0.1298268132477456,-0.2947513780420955,-0.08427082662378538,-0.07771522265634638,0.0770180239783901,0.2185769193738308,-0.03135477611070734,-0.3743951615911864,-0.26626773743168963,-0.33518254751584753,-0.1157731723994452,-0.359362109151506,-0.34491040421505886,-0.2766973016892624,-0.2970670806788587,-0.2586269107529319,-0.17454069134044992,-0.22276245876907355,-0.13923142839645233,0.0462839995258833,0.0604352841919894,0.12041659949769072,0.16962422438787728,0.14407862980839137,0.1497499997210975,0.27255302186141933,-0.11991001936457046,-0.2527130646982957,-0.26612253239937583,0.10565334977414029,-0.02081325812029475,-0.17085139277655614,0.17147275278857096,-0.28016473726475116,-0.008644413910735872,-0.19354466657184724,0.06816378855538079,-0.2066008160723662,-0.09945422882626172,-0.05253062827493738,-0.22725598497670418,0.10943789225234779,0.06536310373992485,-0.07164217074621278,0.013810336913923247,0.19131571287855997,0.19757374103679204,0.040985227072801694,0.033590997601702074,0.17304152248525945,0.2729489032978153,0.42173622351538265,0.26600855221117853,0.04038419600266451,0.10133819469101396,0.2792876460606378,0.37282192316297785,0.4401747897339541,-0.005954940288482568,0.39168949182598584,-0.047000739539057354,-0.20089343334524531,0.12401456517438647,0.1017102799145075,0.07245420418407775,0.05766543904697896,0.29389615248628237,0.0186292979263535,0.0035876971838759444,-0.04150363918120114,0.23634545607716298,0.0965560654973099,0.24657325885520406,0.22175322323786265,-0.16069421120243313,-0.35795492737565054,-0.3608233085795706,-0.37640250298714945,-0.3935565690185787,-0.280113520874866,-0.15268563174929206,-0.3364855988139948,-0.43742220063091986,-0.24094609162149652,-0.27846352748191816,0.489181210220298,0.40424073028143603,0.2260978512083608,0.49066198514949977,0.5298968541386215,0.3770935631253639,0.16701875143245928,0.6618873950187241,0.5683138744410843,0.39987485346774565,0.22724171936051007,0.8192234686847288,0.8786734143203556,0.7510823527660697,0.6443769383334711,0.4609297766544855,0.7267805302039394,0.7560815690465225,0.8205593544169422,1.0,0.7828260263058308,0.653409848736027,0.45647797225633957,0.4431929091456096,0.7262379672062607,0.764436567304835,0.8388972151272354,0.9000482900137735,0.748589634432795,0.5671478615332268,0.7532377480757012,0.7566157020559132,0.7685828005509775,-0.08792565229604077,-0.11339846613963703,-0.006340320556521354,0.026583568204646326,-0.09152399400308131,-0.07183365968069265,-0.022084188961587887,-0.12577490050445778,-0.1087253189202519,-0.012036500865450725,0.005538009612907442,0.002086241978105425,0.004814029564698311,-0.08979929804520682,-0.10219586923642077,-0.11552152097726852,0.0018296783204915545,-0.0812442836539768,0.010455136597041847,-0.044113934013231645,-0.04338734757452672,0.03476637507055088,-0.08207915150259344,-0.03521279907533247,-0.057066318614099255,-0.0651146282984479,-0.1391617039610605,-0.0145634369301317,-0.08035511423610374,-0.09122778440884959,-0.006731529152985381,-0.039991422482142894,-0.03922551982377509,-0.07705003042391499,-0.11252407964125846,-0.07448400067444073,-0.018844156648927697,-0.08311833651302769,0.08135016924732483,-0.039950020985106964,-0.03495621817875019,-0.040379297858241736 +C54:3 TAG,-0.19544728155893618,-0.024213206654599334,0.10390565260176014,-0.047767064500565386,-0.17205813537819195,0.06519820606307504,-0.052813182363401656,-0.16303524604462216,0.1911311198262132,-0.14478335133276815,-0.17024248216580803,0.17479414861300627,0.021465867731272462,0.006969742133375489,0.1065832770227683,-0.1271108451031737,-0.028694381791738926,-0.10082203432334087,-0.36567088782993357,-0.0978081943088731,-0.13284314394792449,-0.149435912984776,-0.07184295380434445,0.11291221446643726,-0.040716454799979596,-0.33731306154006424,-0.007413293748676627,-0.03993771273587608,0.035544244579567584,-0.20459354682441072,-0.25374333357061085,-0.11898933227524945,-0.022362136573102504,-0.0616171028048272,0.09087041770303875,-0.11914222889256498,0.10841335764705236,-0.20363361172403802,-0.3439629897730542,-0.29956147436509456,-0.1739366385036799,-0.09725044260411901,0.1719971924824637,-0.06927122592798128,-0.2565156192799783,-0.29445754136424956,-0.038604866465505254,-0.3222281446532134,-0.07094744780150196,-0.2768273057415555,-0.13285797727081336,-0.10708302628388322,0.0017025209375715596,-0.0965349701764955,0.07252331224580134,-0.03574319102274121,-0.01303018268586299,-0.13847789446469294,-0.12556513203891084,-0.09132635663963723,-0.20537625119426173,-0.250768642393521,-0.32190466458221123,-0.1576184075781694,-0.15452946468969372,0.033420262020358714,-0.24291773988119755,-0.30416395627090737,-0.1948869155565954,-0.3305909411040924,-0.3197872851111127,-0.3363649740607623,-0.24040014722195252,-0.3347604807822311,-0.2801379313525287,-0.3127826630524304,-0.10551116569545116,0.045705943771590075,-0.21154140071576474,-0.3130610847553974,-0.04223152083622187,0.017172103037534615,-0.18551433846133916,-0.025412162540261258,0.06263980483638441,-0.3456760806498898,-0.028261038683708533,-0.2881036042271796,-0.24451046234905788,-0.3603035597047596,-0.11251829188106378,-0.3027051707434862,0.11089474268060676,-0.30607411421371217,-0.1266251531848306,-0.30425208957644445,-0.2596985892432597,-0.2630397267320677,-0.23041090647658716,-0.01966354603691113,-0.025135155658348105,-0.05633263552536248,-0.3103852663592664,-0.2790346724726453,0.036838170207153555,-0.32607802613641224,-0.09379208969993706,-0.1767501466379387,-0.26539744472749366,-0.08388873040205636,-0.13868594753113858,0.11651134488563167,0.07647451833259053,-0.06556030573202355,-0.29508103994095614,-0.21546205044916628,-0.13115827032411845,-0.0953035094630061,-0.25714507341965526,-0.18564937767556294,-0.08498664336840923,-0.14606706315200788,-0.069982964401767,-0.1086067594671363,-0.15199250333078843,-0.070596857586286,-0.05558666006447989,0.00997270758568428,0.048256592789197576,0.06070677924211981,0.013778210522802274,0.06654179259535672,0.08551155484290279,-0.027676045805526975,-0.0688026823731472,-0.29182133067324434,-0.013702434383259184,-0.09676908909377996,-0.2458877933768423,-0.022832694297736145,-0.19828426114173556,-0.19204546315419352,-0.16625475815141685,-0.14455620030475438,-0.3000412282730636,-0.0943245712675505,0.01863748329300284,-0.10388413557970505,0.038292566849132695,-0.09513264249796399,0.07416603198737784,0.11801406398162397,0.07275255695174325,0.10084802556829349,0.022017956684448798,0.22921069396458885,0.17347501615528624,0.039899643040628804,0.09397470113418811,0.16695816020919277,0.3226524466018553,0.14249337096214879,-0.02329101160582367,0.030281348521943283,0.18306487769255606,0.1978252232479862,0.09114375665526198,0.04503006385861532,-0.04375025412070052,0.13869415397057855,0.041613521489135705,-0.004926134922036023,-0.021010292173286073,0.18975160564624913,0.3048803794412813,0.09725393903294428,0.01665958916969195,0.2141204232897744,0.27629749454575925,0.40624840271831986,0.31192665198165676,-0.1263140422753295,-0.3098499804526872,-0.3120134951800706,-0.3823741348071384,-0.39865721356140227,-0.1785674040973963,-0.09969480452953564,-0.331288613167089,-0.4075134868493191,-0.31427158102450203,-0.2651935529000408,0.4805584337918835,0.4700812473248797,0.24112003812089688,0.5086595227754124,0.6468192096058935,0.48660760500188094,0.22382654314105113,0.7162167828623063,0.744694069822062,0.5072242598722297,0.2762371227264582,0.5659730735135698,0.6994782717911142,0.8893757024789501,0.8253518500516515,0.5344310575198706,0.4987627523620601,0.5031928475630818,0.5602430533977439,0.7828260263058308,1.0,0.8059282564529301,0.5198648186082544,0.21723953008821015,0.48231969440113953,0.45486336933211674,0.540818404361941,0.7217494558456524,0.8899089566608608,0.6879280655951556,0.49084059182404705,0.5116977313940321,0.48626302849724523,-0.0874599833082629,-0.11047019300550369,-0.05362747864974107,0.008228156531054987,-0.08387435098507974,-0.060178152217712715,-0.031911605275656396,-0.08054409000664438,-0.08998123404582307,-0.03890334711096651,-0.003709538153814881,-0.007796066774044802,0.02781480548985502,-0.07939843474868352,-0.08360240116882106,-0.09645300913133538,-0.02629847374174182,-0.08208332170163143,-0.0029304951851937128,-0.06664815971027226,-0.09500301390761741,-0.026172814545388584,-0.06884650708169038,-0.03988506181673523,-0.10410518878625678,-0.09253060524828471,-0.08679207846701524,0.0004441688727032072,-0.06255642095560578,-0.09998944247644746,0.011250516586420147,-0.022926884650547406,-0.04432746916360887,-0.09379656302851987,-0.1254111542754109,-0.07015031765496016,-0.013544124908058938,-0.06924882607676465,0.07585657737370866,-0.09466319219234968,-0.01153456396927218,-0.004398063966723349 +C54:2 TAG,-0.21194609348541898,-0.05631117712562809,0.1803221035238395,0.00765410171459068,-0.2005889401815706,0.09509166688303555,-0.1201690954546489,-0.14838759670779095,0.2984008284448816,-0.16345329879328982,-0.1794726761733497,0.2743109395949324,0.03359358015028026,0.045981809844394254,0.17995436086887784,-0.12162685625087209,-0.09340615826342076,-0.14288562884287584,-0.49078417520464107,-0.04184400848247315,-0.1507587280008984,-0.1413456244814372,-0.05385538977690983,0.22159905097564445,-0.01713549939449045,-0.4254602214492406,0.041896129610887636,0.01869717036514937,0.0125772952678214,-0.2471842149164384,-0.29027984973128684,-0.0766917486570306,-0.005818570687265384,-0.07819256852057602,0.13700460451263452,-0.10457851416499214,0.07962060421877232,-0.23461517078030866,-0.4132188634564915,-0.3674637642440303,-0.18298371567170202,-0.1153266396195672,0.28828789467438626,-0.06755050064822914,-0.3453856910383451,-0.3236326320165072,-0.022732041648638675,-0.4157690775822587,-0.12845024167296773,-0.3707854212094053,-0.22412978332274708,-0.1844489994403216,0.005650753531419995,-0.13413038752181383,0.1213306415144974,-0.006038736786969797,0.014834206230263942,-0.14165355137069044,-0.1462827472525784,-0.07995019636397938,-0.2819985210644385,-0.30713344320654823,-0.4250962078820923,-0.1884558644851172,-0.1257009943923724,0.026127509988624415,-0.292611722739522,-0.4077515892809224,-0.2853248158364593,-0.4239268020508824,-0.38541195851058707,-0.4344917892624646,-0.3456492547164356,-0.4213522500071811,-0.37180999530702064,-0.37734061266918645,-0.09054308852534701,0.07462918756614108,-0.2425262021376595,-0.33881310410674775,-0.003105311077781116,-0.004640085959244085,-0.12412224074001282,0.06639880213095524,0.056640678864959194,-0.4001517421827173,-0.05765917076070037,-0.372060229553079,-0.3373243408935768,-0.4454518452157732,-0.17277388863381363,-0.41608805246959824,0.18133532183217244,-0.39523977703052404,-0.16716464762550204,-0.38486907279778815,-0.3480847480362237,-0.25304782396504205,-0.17840241315542263,0.02094152725221121,-0.054666558302694596,-0.10636995448906011,-0.3937367372459756,-0.40398809751411097,0.06252828611015171,-0.4339830143646444,-0.06542083640647568,-0.20934420275786286,-0.3058558216931927,-0.0941698528241641,-0.14673883654065753,0.1003172768751342,0.08091728022128308,0.01516089136662533,-0.39751287342209635,-0.24759453108802634,-0.1008994885901459,-0.04888818165984742,-0.38257884100448253,-0.19723633955425598,-0.06536300996057641,-0.18438347706648436,-0.060808914777069484,-0.062118269592392895,-0.16303187729866528,-0.06412946178839897,-0.01891089965358336,0.011858976050475537,0.0649132543086033,0.09030817615644077,0.04983409371881119,0.029287876996782577,0.10269627915025585,-0.04888446737456907,-0.04438695650341407,-0.39447797780475874,-0.008679716623759505,-0.17126521454317206,-0.1958597080060881,-0.07286739738538701,-0.2710174500279735,-0.05914852866556354,-0.24883057020140362,0.016895946976385568,-0.40492384989446295,0.0480560828116721,0.07222967069908179,0.13535681021382692,0.0669906880339163,-0.025754274149719435,-0.0760669604674301,0.1262479309022847,0.3557125275211775,-0.06497935113039566,-0.14010230732974596,0.07815692897264906,0.320613619387978,0.03197583569978055,0.0598052952131218,0.08710317968750124,0.22369539043772557,0.42302954955998767,0.004466810420807658,0.009936766820184849,0.13611741194922775,0.2696360315704052,0.09103610779132724,0.1115437419682351,-0.0020992440300648223,0.3778588929453255,0.12164996447905237,0.1186105958364008,0.13323665492794726,0.1273734462165321,0.2134441726225472,0.19564502946806675,0.21140234201249256,0.21330704106421366,0.2770264246004807,0.2517091880713646,0.48361154410549106,-0.1918444553722209,-0.48274954397179054,-0.3681274043798985,-0.510653846840527,-0.5804890263108086,-0.35003515109477124,-0.062634186271918,-0.4707588007323808,-0.5498194618966094,-0.47513894652431327,-0.37556163526405334,0.4404013478651995,0.6187215593919274,0.47984116191770915,0.4204315380767639,0.5939282035937342,0.6939722914123587,0.5342408674370608,0.5672560374322944,0.7544425024585749,0.7661184562109551,0.6217400996487367,0.5203314425968055,0.576815071328278,0.7209004055282562,0.9007034446754946,0.8532872614659365,0.492015404710003,0.4800573862194575,0.5217262458365884,0.653409848736027,0.8059282564529301,1.0,0.8341658838868522,0.21105382971778128,0.4554536327024494,0.4445154206831534,0.49879335453121104,0.6735990760102484,0.8250181527657312,0.9013747610252771,0.4401417464213169,0.4448602704367231,0.47803338049936356,-0.08057490327600919,-0.11074212159679092,0.0024916428023564596,0.002872132299700101,-0.0698552815053789,-0.07438427856620743,-0.04035661846517663,-0.10720733728598236,-0.08407229954892752,0.024800212329942044,0.0544018855901386,0.037707657469222694,0.057338295410979484,-0.05108292948094924,-0.07689164591840184,-0.0699996765290607,0.016595302417963177,-0.03750113342506539,-0.017186563892680303,-0.10738320001411962,-0.11148936969265222,-0.020899571923625994,-0.0849327251864561,-0.08537458844345121,-0.1144084029845954,-0.08211642056305957,-0.08971648887808048,-0.007266503404116533,-0.039756079665622605,-0.057650156425730806,0.03949420580154256,0.015603227487987299,-0.04017449569519466,-0.06804434897010657,-0.10573043012869371,-0.05254731743298284,-0.06182153692328092,-0.03902326561736504,0.08282251691475123,-0.06934495917160925,-0.00855920029571937,-0.010798256117572055 +C54:1 TAG,-0.16230062501740988,-0.07924570748704932,0.18930736214121835,0.028566609452348547,-0.21940122557649402,0.09250356056948277,-0.09703692122307293,-0.14321439116478507,0.31591350284157294,-0.19564320032665777,-0.1738172220782218,0.2898135427455593,0.0377006984542179,0.10216105471601115,0.23807314118099515,-0.07915484644567512,-0.14388656044634923,-0.17310255649649553,-0.4786249504509185,-0.010333048597308627,-0.16247583846961133,-0.15630302898946005,-0.05791001694880877,0.23441090413858331,0.020741495903310952,-0.4192258950568524,0.0503375418597864,0.05497387022904457,0.0166874169975208,-0.24560255506226522,-0.28822032467620756,-0.05497818200666929,-0.009837057946818025,-0.11693766463485498,0.18578484707871187,-0.0985617183633397,0.04491833354854169,-0.2169157672230451,-0.3970770348938262,-0.36334757611061835,-0.13080194562984013,-0.10060234341741021,0.30560303553312373,-0.08100681272750371,-0.3557399927486116,-0.31881247848526,0.038069954538366535,-0.41523189185402937,-0.1110409143857121,-0.3591507361263044,-0.24284241645458782,-0.2256225636534332,0.03199599732142428,-0.10949250531035601,0.16246147761348706,-0.018069702149621968,0.023934176187946236,-0.09425461496710068,-0.15340885409688534,-0.10381462189456928,-0.28357146012570766,-0.3047553259239265,-0.425566796028278,-0.17380793170522466,-0.08225644570489007,0.01310857092861231,-0.2710502661518755,-0.3987630243178729,-0.28570785813339244,-0.41469570877611445,-0.3704538391487792,-0.4275821624584725,-0.3577785060333155,-0.4157052841974154,-0.38006159352586993,-0.359476972767191,-0.08654648995514351,0.07855220630101409,-0.24002329607185607,-0.3081363225642269,0.006355255428378224,0.0018736472082687772,-0.026940022833681743,0.06897468081107333,0.06300883120095313,-0.373468848183127,-0.08739132641374987,-0.37975081559173435,-0.36213344735357517,-0.4264116418948611,-0.16352106312278827,-0.429854823163988,0.19372723010608528,-0.3950061078326611,-0.08620761756199322,-0.38800083275341973,-0.3320351283283888,-0.22235503045517566,-0.09243929416451128,0.02095731417941788,-0.08412950358620364,-0.14069660447758495,-0.400518964107413,-0.4066947272433888,0.08534231214771752,-0.4202698236358086,-0.05579271498258629,-0.17195267818601412,-0.29795832260085237,-0.09387658899336837,-0.12496394088571847,0.0800154092983535,0.09294008836070237,0.11669234828407915,-0.4031843198884757,-0.21064096112915548,-0.11332052623254874,-0.016795439242109887,-0.39456149780868965,-0.19459785605372393,-0.07425789912405455,-0.16582992641045857,-0.051719345234485674,-0.02528693735729263,-0.13928764732598597,-0.07237079085246728,0.013810112740400145,0.017816153011663213,0.08252324597132202,0.1036821448478403,0.08259862375290776,0.01575846941086862,0.15613140684923346,-0.07420546914171997,-0.0532507126564538,-0.3833359879493833,0.05259646222349087,-0.18175045710573656,-0.1336599025585268,-0.06823014300508332,-0.2593104370375437,0.028180031375096358,-0.23108825970941868,0.11052187304397953,-0.3545474770738081,0.15807152231207125,0.09895664624158947,0.2572017212950286,0.16186322234759112,0.06980196522468257,-0.18302462857682972,0.07051906315158778,0.35234193849430073,-0.11963810990018899,-0.15846396710395758,-0.028497134968508604,0.3030735642742971,0.07959665314206417,0.07360087039656475,0.08518477315248048,0.140499321783327,0.465161439360051,0.042573205622638485,0.04537553980049851,0.13779652845490561,0.2052842004056254,0.1141622704331404,0.051987305447661745,-0.029863175890605147,0.35102059194033247,0.2080853771278555,0.12740046332727029,0.18879854990064943,0.10682408661348813,0.1365230972203396,0.1415718835808481,0.27838616117497966,0.19678167042258154,0.21176750358909024,0.12402092102377633,0.4914356699335059,-0.1269716605503432,-0.4482713903532059,-0.32481747030306163,-0.4195130355131589,-0.5408086771703831,-0.370284213851821,0.029557886669440765,-0.4218233840426539,-0.5018032740230455,-0.40686429364836796,-0.3170082785406096,0.36031694004153525,0.5827097367895544,0.612531765116821,0.31435223650615685,0.4211377207009985,0.6469673007445885,0.6578488107843045,0.36017533884516906,0.5575918419040606,0.7355739758440919,0.8016649321945833,0.44380368143333665,0.42307735908726235,0.4579512635030157,0.6950586207486733,0.8897023664383321,0.4458825109210685,0.42046096671321587,0.43158511060913207,0.45647797225633957,0.5198648186082544,0.8341658838868522,1.0,0.22996554406045228,0.4097829274673847,0.3938545183674369,0.4097632403821657,0.5103235563873146,0.5885284221073003,0.8479180390026668,0.3551264839164446,0.34691563658250335,0.40092319308871266,-0.07203435514850821,-0.12113412555552759,0.025896990028389803,-0.013506995832854253,-0.059057014948095475,-0.07585076994937685,-0.03556496669247455,-0.09949642227061804,-0.07042163943689395,0.029041335845332163,0.04571430914418822,0.04011010583621021,0.050177845333598814,-0.04628627490022575,-0.05804950355886632,-0.05901143047526254,0.022607856455656772,-0.03289303403788129,-0.009175607235524514,-0.09530069160975287,-0.09317422791957697,-0.005029769279525696,-0.08742865185310694,-0.07644925779021772,-0.10019213912248215,-0.08162921237584753,-0.09533769339672436,-0.015402743310621556,-0.03214414776131559,-0.05067838476302145,0.04270160289239666,0.027247946671156563,-0.046178260544275554,-0.04878839186034324,-0.08207857413297771,-0.029173021783783032,-0.06764637625022213,-0.04253321174373286,0.08360937025246283,-0.01717040477595195,-0.04236271222650238,-0.05013634278321715 +C56:8 TAG,-0.030493144318680963,-0.24294566158360317,0.07407862838258492,0.1580173627548032,-0.421353604959396,0.2073432475053211,0.35900440653477317,-0.2938113307567001,0.19438099391281963,-0.3703443613437135,-0.3613162080642549,0.19754110045839982,0.02276640823990105,0.138954499766548,0.3642592325191809,-0.17348292924803144,-0.11785643582955516,-0.28101995157271087,-0.2636847115228901,-0.08167911437213127,-0.1887028885963968,-0.3392979947710728,-0.24083298271618075,0.07796932662772062,0.08897187076555987,-0.28477251527880326,0.2502370280614561,0.1676277231369185,0.09549098408160483,-0.40066597206881077,-0.22082201985547337,-0.19638290001485567,-0.2222624828360625,-0.21914550571640268,0.5960851304731567,-0.008160140935761133,-0.12253398348104973,-0.28394379504259976,-0.35071879982856596,-0.30486856871618007,-0.005852688534059239,0.06850196477882885,0.2080061892882254,-0.2749002162332516,-0.314456925296128,-0.3185542247650572,-0.03892905566776172,-0.4230859034267368,-0.03746427002189585,-0.14549394456629602,-0.18225537040157855,-0.40034082970220486,0.36796419635128497,0.03106820151684317,0.5098113510964735,0.016212899566470398,-0.05710959049402497,-0.062320132375769124,-0.13726933237270858,-0.41030411857695703,-0.0029882586224375175,-0.25076389224823253,-0.4186062953409319,-0.09530163382195722,0.01626898432245736,-0.07915542807935107,-0.040118107768433046,-0.3624117865881418,-0.17377911228502568,-0.3070518289646412,-0.26608062967206336,-0.4378195800613615,-0.40662922208821795,-0.3923960786258304,-0.4310878915484036,-0.3131769667905937,-0.3230690178627673,-0.03528230185144546,-0.16131981310982957,-0.28729112154037595,-0.0613448235961857,0.3041610732422502,0.0361170034520017,-0.023197369977485616,0.37022869394485836,-0.371057510831576,-0.16593342760267724,-0.5088459170385637,-0.5403566572329418,-0.4218832731162754,-0.0016695034915247468,-0.42540189927462657,-0.02980848862456557,-0.3325902374928105,-0.12006294931706367,-0.375436662174584,-0.2616142792222855,-0.23336478155128218,0.2088805564271223,-0.08481932844924447,0.1590548604024846,-0.35140630425865516,-0.4836085841786863,-0.25953187381103826,0.39911845568364535,-0.12966040332878967,-0.05595363918993789,-0.0676476838187556,-0.34097938551837736,-0.03670815885395438,-0.06933101372865845,0.1279133372822264,0.3967563087527684,0.060168404399170664,-0.36399213049417556,-0.24325318007549449,-0.39872603844063703,0.01294708076243351,-0.36159887110886496,-0.34357175668279305,-0.3525691003614714,-0.3279423694627953,-0.3301734583725461,-0.07627616841181539,-0.21669060743024604,-0.1596140079809416,0.1618121327538436,0.1302307646623913,0.16527754404851655,0.2266101422132236,0.22786766837414638,0.15819628388380905,0.45055222580499477,-0.10207412975774405,-0.2685800006340111,-0.231066922492436,0.3302826722990182,0.06979069730247965,-0.05044830471226729,0.32398578544130524,-0.23376505573581893,0.09286919365445169,-0.11068631489612245,0.20445698114646071,0.05397988511276951,0.23452492868140074,0.20703048229615487,-0.049635122557409046,0.3767248212248062,0.4480586197577986,-0.195236932023853,0.0611469762093075,0.2395454526911139,0.21180034988132634,0.044646230552643655,-0.011287306252480079,0.31406180465275013,0.44963756619887285,0.5656407806313652,0.33280185779912813,0.10509557401814344,0.20794246632698482,0.47854986464050187,0.5421044817844493,0.574034951283636,-0.06535458033486205,0.5080078619493222,-0.09033645909123653,-0.2531085990617804,0.1634910066867441,0.21829901633958518,0.13510829422980222,0.14555816341339656,0.331174936500815,0.07412818596090485,-0.025348462451191878,-0.015854532155128793,0.26647792454820907,0.10345524017214938,0.17738105768648393,0.27759392486575263,-0.1276044477684544,-0.340853034589016,-0.3449402505036023,-0.2583383059727609,-0.3170917219124315,-0.37501187330593366,-0.2438476664380245,-0.2761466259601858,-0.3482321072226787,-0.1856049633405509,-0.25195608585004287,0.2452250460281572,0.14957317745202006,0.17296497631910976,0.1115314364973245,0.09025437066955494,0.06695875666524083,0.04773890513421884,0.16728823783849345,0.05991797103626491,0.09768582936511705,0.10036290088474994,0.5131140246602844,0.3755581861824702,0.13944022959202268,0.14725955030233212,0.16160307280691039,0.5495201816704913,0.5810250694286584,0.4939977104526797,0.4431929091456096,0.21723953008821015,0.21105382971778128,0.22996554406045228,1.0,0.5876875005170014,0.6100492441422628,0.5679971251727413,0.4533036591926151,0.2492158420697721,0.208512622376293,0.6170483250126164,0.569841169577765,0.5700804604647207,-0.030382166775465756,-0.14827230614610534,0.0037498434463872766,0.035628783248893646,-0.03157805490380891,-0.059981089871253015,-0.042877720570475876,-0.13004771324123246,-0.15472153642637895,0.03753546515519383,0.006917350912989123,0.0016625381293682768,-0.022362326930322106,-0.1237195555851496,-0.0614173904853851,-0.09017479890427274,0.017509852224494398,-0.09011582649235692,0.045655878928748964,0.04217103256531788,0.029978118578374912,0.04691943674459156,-0.08684404279854137,0.027432973034675994,0.0040105683471180174,-0.1060301410552487,-0.1334741570430208,-0.013502075840181682,-0.06534598015202282,-0.09138914514840141,-0.012962689837061716,-0.06964396752440773,0.053792672272471545,-0.031198833023431054,-0.09352693105501853,-0.07232142609712064,0.041717269858570605,-0.06258748320939397,0.012651278227486986,-0.00961815918742621,-0.06720663429271213,-0.05388498052298116 +C56:7 TAG,-0.049074895810535916,-0.33645614424202697,0.09524473154602303,0.2286523562829253,-0.43567079598453123,0.08035282785125081,0.2777031785527074,-0.3468191278689608,0.15494637114726226,-0.42413015458321185,-0.40707274412448746,0.13401080508621985,-0.008170822007552364,0.12754056658497068,0.29644125264929744,-0.24722680780156092,-0.19315221036345623,-0.3453028971934092,-0.30751045728059984,-0.19645881656511247,-0.16951687331618215,-0.41087151689114215,-0.3327384790266057,0.022416687026324426,0.029524935198269067,-0.24856542159094439,0.2563031393083372,0.16926286923083791,0.0890904311636385,-0.3904316220735471,-0.26123702241537056,-0.2961193251790771,-0.27810097328700295,-0.2832192083927393,0.4954197249175132,-0.07544885705851162,-0.1586154819146577,-0.410258610323762,-0.29491907381369087,-0.2980650440869946,-0.06312991159748102,0.05582972248860714,0.14679886640177647,-0.3462707417566304,-0.27266780054774176,-0.24597062226282274,-0.00021822353067928874,-0.3947331548088656,-0.06659974687126768,-0.17204389212068386,-0.25872051918864525,-0.4425738218590188,0.34108083034167497,-0.06636398816906056,0.4184974418983349,-0.03102631850396425,-0.08370317073779561,-0.1338332602473035,-0.17274345542286174,-0.374460439301422,-0.03987221365300153,-0.2482071853748142,-0.4173560082166811,-0.21933829422816772,-0.09589900709898218,-0.09494776456715429,-0.10522555333393384,-0.3352915530451056,-0.21529450823854715,-0.3069659805316838,-0.27643468279376315,-0.4370696569714141,-0.3976830533752341,-0.36952047752951644,-0.3950699407619747,-0.3080036056823048,-0.3549884872682561,-0.05936761700853954,-0.13388352669079562,-0.26954268876558757,-0.11145614833982762,0.2529793267254198,0.05380034675052994,-0.03646969918054367,0.28372549355805166,-0.3429249338483672,-0.20657040491880485,-0.4587898671953186,-0.4973177654289102,-0.3678947062772484,-0.08893542995436661,-0.3815718023308253,-0.05421837273955414,-0.2949506179572104,-0.15069546613768478,-0.4078253403530016,-0.24897696622868576,-0.2359769194862936,0.18267015618032303,-0.01449911655356548,0.08091663781464156,-0.38252221091187205,-0.45499554174474605,-0.21352181921024185,0.3948381102560521,-0.21852483142925058,-0.0686588906749424,-0.06605728879766579,-0.2779278827093983,-0.12247616878965452,-0.10831366744241076,0.04823303411605091,0.315407205946705,0.08593589501534497,-0.4106190911756674,-0.23989987210576197,-0.3841045868837584,-0.06286010317447978,-0.4190544427584419,-0.36721066954355286,-0.3326737398819354,-0.3385191718373337,-0.34160689735439315,-0.12363671077489953,-0.23777455088874974,-0.14266041585601838,0.1374252580469671,0.10226563332614255,0.16577549322043791,0.23340859789032029,0.20641923125663045,0.17731184626563642,0.40426590877380986,-0.1489382786428561,-0.3209828707737524,-0.21023989223507566,0.19511793944806244,-0.02784000585951297,-0.12864229172908678,0.24969871806346422,-0.29477789292817,0.07698852834756728,-0.1660962865884974,0.16103326360571152,-0.0888482230458806,-0.0023696515978852925,0.01883090050141467,-0.19938970455822502,0.25525967470827593,0.239467568788389,-0.2532227941803931,-0.07600368544264237,0.20885801425822703,0.14657621178728616,-0.014323224525354311,-0.10194380096732947,0.19647199894245382,0.4362843843884264,0.5509657057059631,0.32645180223293485,0.014580691445476893,0.15680229503056986,0.49675039548338573,0.556912247524185,0.5328243415550412,-0.09107722711671297,0.5231344843298062,-0.10212989654506202,-0.265845475608987,0.1616572464346051,0.1837760993197495,0.06670268680333771,0.12820208169784839,0.3017323238590085,0.004895924987122941,-0.04030740175761052,-0.03439147569524065,0.2207451923460482,-0.03383208326243785,0.11007081588565384,0.17441232516933544,-0.18425985393240665,-0.3945961659584159,-0.370265594238546,-0.32707898750416375,-0.38082810037385695,-0.3660183315946653,-0.21015044552936066,-0.2987452389931315,-0.4037697954180034,-0.22413670090116186,-0.21350525361687195,0.3297901476968959,0.22790622787747156,0.18855400219449664,0.2679564102031172,0.2336166553336211,0.172452100585537,0.07845534039013952,0.3534029613468465,0.24927921841360057,0.21085167282758366,0.19005951159281667,0.7389011095675413,0.6372806100756498,0.3878429903614219,0.3610778188580559,0.3515893550119768,0.826407303716035,0.8430366286167101,0.7468573173326704,0.7262379672062607,0.48231969440113953,0.4554536327024494,0.4097829274673847,0.5876875005170014,1.0,0.8322346815919461,0.8016150058340716,0.7158724445600282,0.5035362898731861,0.41849917784208457,0.8887456191662566,0.8243781403772115,0.8238782314590296,-0.0290667856658476,-0.11004798706121245,0.026378127189791763,0.022739969003160568,-0.04091951441401961,-0.06052900026738226,-0.0006423591507987004,-0.08877814023090318,-0.16049779594342276,0.008329444286561433,0.007534794746658571,0.017378815148075818,0.023958829833823757,-0.1265526504597486,-0.0143691343866788,-0.08540008550088658,0.0315943230477782,-0.08636765787108092,0.03400734806159255,0.028011480834315088,0.023733393206162044,0.06701516618651161,-0.09000874370524928,0.01037568333825273,-8.724396238846023e-05,-0.06121031272224401,-0.15214893001495644,-0.0041922571302307155,-0.07911188634830185,-0.09606178887522214,-0.00035151116734617976,-0.05411861886841854,0.013340270594732667,-0.04512299218989121,-0.09860772292347957,-0.07566895835307363,0.026386779326224914,-0.018124630753075063,0.04838546456615416,0.04945710290588341,-0.049109553019720496,-0.07300924827412615 +C56:6 TAG,-0.04718344698451548,-0.3798410665350602,0.05447763646366577,0.23902117387867208,-0.49834303825687304,0.13476679332938923,0.3422737942262302,-0.3559838071837811,0.11398816784319135,-0.4744302982103909,-0.4442985873095539,0.10982322546988578,-0.019012730631164668,0.1603586835874201,0.2993990736947854,-0.2780358557456506,-0.2538544955256961,-0.41227762334496226,-0.27086602059521925,-0.21287068446362042,-0.2085243753645978,-0.48462202757679856,-0.42635769580585275,-0.042186688465938454,0.07284286437803908,-0.23562724189772177,0.3350570038619847,0.2277804086803158,0.08641941034780377,-0.44304694336283146,-0.22325085865153715,-0.3240669128502356,-0.35859840667348336,-0.3652852848357245,0.5649584800757902,-0.10817851395416661,-0.19965709070078977,-0.44970469967709875,-0.29497170117238863,-0.2576800782271056,-0.030278887188895147,0.0742019447858099,0.11499265106740669,-0.4032389016131613,-0.2759171769658302,-0.24221375267366077,-0.023367071081901454,-0.39106812811757363,-0.04876638735850869,-0.11523769589366437,-0.2475046954430982,-0.48597423557778263,0.39897295831098584,-0.07271892968128976,0.4595417040526752,-0.015296674904273826,-0.10727494825260582,-0.1555975381925962,-0.16951096954879258,-0.44309589827016754,0.03269969507804951,-0.2717200078668764,-0.41983670384333244,-0.20505849909208296,-0.07807457906615939,-0.11102983160345703,-0.05197438803672364,-0.3398931605468146,-0.18586915248537747,-0.2953260032585357,-0.2791817143237701,-0.44034081117525387,-0.40357611655828246,-0.3858342457971486,-0.42936868369719977,-0.31140140526579035,-0.38277469159280586,-0.038726748240078726,-0.0937989220125462,-0.24871089710239333,-0.14502343026786996,0.296517440471555,0.08263228022547962,-0.07700254929016943,0.3037143127755518,-0.32892661414550656,-0.29059461744990267,-0.46551179515864927,-0.5325277274961524,-0.35108571253326687,-0.048702172696103684,-0.3702514572979681,-0.10409677388743237,-0.26471594356511374,-0.15948791639713816,-0.43130474331109986,-0.24940691537863532,-0.25071062650356923,0.24379980433830895,-0.022123366018882533,0.05762062064586847,-0.39451456041912353,-0.4508254634584464,-0.19525943745457108,0.44265432105281355,-0.1637769791603611,-0.08187567419480403,-0.04998716050786851,-0.2865234436337349,-0.09892977064055844,-0.06751896447066835,0.061884815350670634,0.35475457111224107,0.05343557558861319,-0.4176814354210338,-0.2437890642991561,-0.4519799970005856,-0.08811659294667165,-0.38754626294515554,-0.4086222185621584,-0.39871513762018157,-0.3955849453089235,-0.398757319594359,-0.17164343415058944,-0.2591335413669336,-0.18477050393853975,0.1447978962880217,0.08586731946825622,0.14363502898640726,0.222883405546341,0.22997543873737908,0.15618705484607182,0.45919939528514725,-0.20653878642578705,-0.376621547124728,-0.18816096125619958,0.25828211513790594,-0.011942533134392306,-0.04548618922828672,0.3491195538451721,-0.2691925361971406,0.18979886158966866,-0.12078511133875493,0.29560012080335407,-0.021944654528444473,0.023274569279605584,0.00682499518279774,-0.2082128806686837,0.28944534744963346,0.31450657553152184,-0.3448732390361903,-0.11767483842319801,0.24574273264576113,0.1131185953681792,-0.07673515758234976,-0.18531606293408226,0.23099804945663005,0.4366810903108349,0.6073061781303335,0.29627149431989835,-0.05170526721195227,0.1851432718861832,0.5402245778989742,0.629862443727254,0.5774199148532102,-0.11446849556658051,0.5474285467761503,-0.12103427511030065,-0.305675618169414,0.16613708271319919,0.1788410267828866,0.14411569638305635,0.1413118607446903,0.2695306006433919,-0.0829919285430968,-0.03537006640601692,-0.04894932934439113,0.20973920868217527,-0.07196093586720238,0.07532280089300712,0.1691691897583267,-0.1679676898103773,-0.3812965712257619,-0.33489280532190513,-0.2856593389481764,-0.347511869480577,-0.35299484561204225,-0.19859130586777304,-0.24855069823950462,-0.3693702928681735,-0.17410512330161934,-0.20404260524471807,0.30172408258508165,0.2216332822396145,0.2056539653964184,0.22786664956816247,0.196328204846616,0.1634875120590704,0.0835402333703117,0.3092706516352641,0.21613030883754675,0.21447504150919794,0.18336225830431435,0.7825318676087156,0.6603858472152417,0.35730071166023253,0.35386516395060647,0.3510972194672301,0.7940752767479536,0.8476049043229653,0.7884064561027092,0.764436567304835,0.45486336933211674,0.4445154206831534,0.3938545183674369,0.6100492441422628,0.8322346815919461,1.0,0.8806127207208688,0.7600808745156302,0.4890962286708059,0.4060202821100418,0.8945426305037562,0.8628170205510686,0.8839255661910549,-0.05438879110366353,-0.12998220096419275,0.014502423682114622,0.021810165883713453,-0.0657468244678431,-0.060134161279991064,0.022999298275261423,-0.10954163485602193,-0.15307275793576472,-0.009394883133461865,-0.0026754908734531293,0.008079940896875956,0.0018020379427252807,-0.13282218047022432,-0.051134874186172886,-0.13277765907233,-0.018391813580235866,-0.12503287914212757,0.05990624898372305,0.0034598394009774367,-0.0007604759812688339,0.0821591703337873,-0.07739553617585428,-0.01435358722574186,-0.04367342147494984,-0.10009798918873526,-0.15837348670477852,-0.019975538522882048,-0.09662488381104842,-0.08952464936528053,-0.004280303198067479,-0.03839066562638192,-0.02923515001914694,-0.07585014518209625,-0.12075442751713542,-0.0683281756132139,0.03306501754394156,-0.03919404629129915,0.06100595122177187,0.006571911699397263,-0.0684339941617431,-0.07220277131634863 +C56:5 TAG,-0.05279330257923714,-0.35141541999421605,0.09047944556467402,0.2043153903219864,-0.4418120072025079,0.11102357194469553,0.2905203846299206,-0.32636195157485276,0.14858414335153702,-0.42433817919981526,-0.3832413460472533,0.13358877986259937,0.012557925986113112,0.16760569300249847,0.3049067155779652,-0.27646037429863357,-0.24636668259178338,-0.38848952484761967,-0.29912297170071345,-0.2114258318777091,-0.1968310621701362,-0.45203982170117846,-0.3873754696300777,0.02990361034666983,0.06631792431683385,-0.2514722336331706,0.2767034380321726,0.2018138376729717,0.07403366160972678,-0.3744161056567897,-0.253327947290386,-0.2965896674605001,-0.2988858556466334,-0.3249657610832256,0.4709211988939999,-0.08417478852854521,-0.17054978405388913,-0.4213430726658352,-0.30024086198512273,-0.2785796160192932,-0.07696118062066609,0.051119786569700454,0.15179187416801584,-0.35694678008021563,-0.29329755263498286,-0.257585750595046,-0.002909242570922452,-0.4021477306745087,-0.0740437518246063,-0.1534964093202277,-0.21646517289699257,-0.4625412944525222,0.31407053223185477,-0.1003031481734941,0.37879005217206213,-0.01679025343035927,-0.07350612294639305,-0.12268801737027496,-0.1450717295986503,-0.3735540781488423,-0.017511389351955956,-0.2451458545515352,-0.40931517414262847,-0.21995510769934337,-0.07010777973610711,-0.09255065058669693,-0.09764215038978859,-0.3587510450648964,-0.22980212881579445,-0.2974619855628966,-0.2698994235942956,-0.42170604993475636,-0.37750640226978655,-0.3675725141678538,-0.3973253101354094,-0.2984348918056777,-0.33970315866364503,-0.042081243512159285,-0.12453735132828087,-0.2549084749191729,-0.11322497010804555,0.25722018173148814,0.03553889863799183,-0.0727491461229192,0.2513110930534942,-0.3472576687660954,-0.25650592713011844,-0.4373345821030931,-0.4865972044286442,-0.3594233230720793,-0.05460788574137844,-0.3794341801552708,-0.07400266951637002,-0.2845847559542225,-0.12933549434195607,-0.3990241303147423,-0.21823531564675047,-0.2626802954174642,0.15140635034212763,-0.046091840224831496,0.07818162401961623,-0.37229506608940877,-0.4576692552215619,-0.22213242715853426,0.35219399238993715,-0.1842745216626763,-0.027523766828368865,-0.09403370989756621,-0.27879863262439647,-0.0903233908311751,-0.051897947690074685,0.08540564183297816,0.3145591240960651,0.0180019350837668,-0.3879193993867986,-0.23596713384447973,-0.4075964146210642,-0.08466154672718326,-0.3662680228404079,-0.39656134978794605,-0.3639197599270271,-0.35649360962291954,-0.347182707444171,-0.18335574710879943,-0.2675461397297991,-0.17825991130693944,0.10720080143948083,0.06936129116929567,0.128798391400604,0.2132494297436048,0.22107120461913318,0.16212211585728642,0.38802156930092047,-0.18999182907045614,-0.31634649461256076,-0.21623683553874112,0.1779692745131955,-0.010727693483071815,-0.1007858150940834,0.2861305345948705,-0.27837300957219246,0.12129857084138092,-0.1545938303177419,0.20198616716158838,-0.08779234299473415,-0.05479147531228411,-0.02098717681131831,-0.24488618395007397,0.19543141013815224,0.2381292198251752,-0.2800524694227803,-0.11109155437311183,0.23109368169568878,0.11904845230939742,-0.06062786896886787,-0.14183400951282982,0.18949790520398802,0.36389286721725833,0.5646336373200799,0.293365666768559,-0.03568522001355323,0.15672510210300739,0.4773971294525506,0.5792600257500334,0.5767622039844179,-0.03973418917196495,0.5611858697166525,-0.10816011307538007,-0.2822652157302277,0.13936736913649397,0.13556592870019132,0.13338238226246357,0.13590296015163317,0.2995880054232276,-0.05244169202701199,0.00415326603145925,-0.049831711727580406,0.1742348651207248,-0.04613649857150165,0.11220997751120579,0.14832588670895747,-0.18533319334713014,-0.39094804053450627,-0.3731775492915782,-0.3264267762746531,-0.36553801351327614,-0.3504906706372106,-0.1997322676440787,-0.29709834651433004,-0.40499499575280634,-0.19291456243569025,-0.24501630453372802,0.32131165349028945,0.2292893748075805,0.16954849337459613,0.26715121921986995,0.24996988437968726,0.17712799879067964,0.06703313175941365,0.38285346851866203,0.2760650737104708,0.22268492208618867,0.16434327822773293,0.786547035303525,0.7278949390076528,0.44093028346687485,0.410632915122187,0.3548144191067868,0.7426248211157662,0.7868245646973178,0.8087799444488901,0.8388972151272354,0.540818404361941,0.49879335453121104,0.4097632403821657,0.5679971251727413,0.8016150058340716,0.8806127207208688,1.0,0.861914810604986,0.596643247403555,0.45096216052267685,0.8592719764251643,0.8501298854513851,0.8980675057794533,-0.06562978834013779,-0.13967443811368857,0.014634345270173934,0.023868068304474622,-0.0755946553154738,-0.07851287798407455,-0.0073445579007228165,-0.13367897647197285,-0.15163421222913023,-0.00013547046127838347,0.004290913842331155,0.013507431188980094,-0.00298386763038574,-0.12167448052155348,-0.07920356992687713,-0.11761614359492309,0.011542403409898885,-0.09498068609203351,0.032849606849754416,0.009087031568833587,-0.0007168304305995382,0.07595109138909059,-0.07399590995030879,0.0004116093368159547,-0.03828704193977318,-0.09021059320376498,-0.15368700556134862,0.0007952954459053582,-0.10669557263120533,-0.10378250426894983,-0.010848160426008875,-0.06001644560426047,-0.005122153069723059,-0.0643883443827488,-0.10901276210577698,-0.07114227076370476,-0.012323915868141933,-0.06655155530078483,0.02830608216531751,-0.003247144086354664,-0.06482095609321734,-0.0707195753030975 +C56:4 TAG,-0.11825326503546574,-0.26509733074678726,0.1294396100099612,0.14942590584996765,-0.3831334228184284,0.1091544060741309,0.1829523089822546,-0.29208849223741423,0.2214440977432285,-0.3673918697478326,-0.3322122731810368,0.21429795401056081,0.06861091336927114,0.17085512563360783,0.3015080514294905,-0.26812237246193116,-0.20506063973192665,-0.3318705426415773,-0.374641042067479,-0.18258259945836977,-0.21903024424351547,-0.38315572923869046,-0.307359501090463,0.10834661743150265,0.037499787297401777,-0.3178502620378345,0.2059600127905151,0.13169137860097488,0.07669547520366182,-0.341327210098293,-0.2705782711142963,-0.26341894603237187,-0.23547799863750107,-0.25393557136632144,0.37664471121031773,-0.10679921724980457,-0.08361391324308924,-0.3915265794508979,-0.3523461126979161,-0.30632712643829046,-0.11231214219384643,0.049420107500317854,0.2099160954987655,-0.2806830523115512,-0.3128508937119499,-0.2890880860112436,0.026132927056478517,-0.4197275003995122,-0.07506080038177511,-0.22559799661477864,-0.21281851835015314,-0.3741583994902054,0.22979523527387208,-0.1636326360216621,0.31341752766721226,0.007625661603265322,-0.022713005270327442,-0.11468554758599048,-0.1429963426615424,-0.2523065738678429,-0.1154502913751002,-0.2637622553691869,-0.4306194286310664,-0.23618421485227858,-0.10512257619297853,-0.061353081839961854,-0.17965197176223402,-0.3865591454258183,-0.25679283807811437,-0.350072933524312,-0.32819409551245265,-0.4476741450370091,-0.3839313360422193,-0.40611384522284816,-0.40595244335727115,-0.34846245621446426,-0.23469494350293596,-0.010494393749993502,-0.16057270496613124,-0.28241540336684057,-0.08014454176492919,0.17963252814908215,-0.020341436207049368,-0.018333587285362912,0.21862326071582255,-0.37813760346890507,-0.21489050857448969,-0.4190470237204287,-0.43377682346731866,-0.40298922220005245,-0.09621569040359318,-0.410053093329964,0.03474731968570679,-0.3475845519556626,-0.15819562301376683,-0.3895804641578101,-0.25422381204039557,-0.2566909969368285,0.04349550127586577,-0.02905691873155459,0.045737686857618726,-0.27798441664263485,-0.46367896525528346,-0.27532965731059716,0.29589079677457675,-0.27893405805024274,-0.07816394369116193,-0.10441358530380199,-0.30420777146468736,-0.08685481645444101,-0.05859396349957592,0.09968811352028714,0.2213371338887337,0.012955115447059197,-0.396698973049613,-0.2787919796580566,-0.312400862101468,-0.08176683142273378,-0.38159062191407633,-0.3457579350165728,-0.2754645246882334,-0.2917352367284668,-0.2638911294993827,-0.1543340423778258,-0.21283916925312715,-0.15526937270446714,0.07306697171298406,0.058426654429791905,0.13270252657984677,0.20486421755549633,0.19403491676362256,0.17529951287611478,0.298835237608893,-0.10466444957888094,-0.23471492639595856,-0.2932423001826429,0.09229873027541802,-0.10851599458540062,-0.204854344820484,0.16732082471467705,-0.32899879053446063,-0.00022095234113008263,-0.23038302179876938,0.07798808544062716,-0.22624861706926497,-0.1054090823971411,-0.051648418062130705,-0.2079741162802453,0.13896053032503844,0.06957042465135414,-0.1629881443710693,-0.006619537061132423,0.24197962722047464,0.11813897617631493,-0.054900215347900155,-0.02567365187082096,0.22934537381219777,0.24112255730966783,0.4364413663088287,0.2630602856238045,0.08795040028289879,0.21668128457414426,0.33827930564820585,0.4272511158334975,0.517779092138442,0.10527935728136507,0.46636023667008397,-0.07610391861266688,-0.20134114748741472,0.17398383061071368,0.15214173405496062,0.11979848777468347,0.1063851093043806,0.32462256067297324,0.06898238613274511,0.06293191132630081,0.017467284031408046,0.2167758895447505,0.06054409908694132,0.18905742412975446,0.23920021481324952,-0.21045491281395737,-0.44563643127369834,-0.42045650561647563,-0.4237472909636941,-0.4559487472328935,-0.3619513125530132,-0.20839885797091687,-0.38427528139927325,-0.48679430688636005,-0.3023286024169873,-0.3125663966410897,0.39905785891101,0.3433084880971828,0.20627662623506546,0.3810669107737643,0.40297268544597803,0.3129260106306509,0.11527064372247897,0.52156250503388,0.4631167514857561,0.3385227601771735,0.21954356913234713,0.7328025328237395,0.7702981222090325,0.6242650486063445,0.5786506307149881,0.4644183624293144,0.6780582953176842,0.7041151904423724,0.776845584412936,0.9000482900137735,0.7217494558456524,0.6735990760102484,0.5103235563873146,0.4533036591926151,0.7158724445600282,0.7600808745156302,0.861914810604986,1.0,0.8025995594415916,0.6380105646162604,0.7656069825002698,0.7655765319372196,0.8138986844199976,-0.09741462599162679,-0.11907521950627988,-1.8796127796123816e-05,0.05501575773392318,-0.09337991195830027,-0.08781236643463929,-0.020553984112084586,-0.14708114018831975,-0.11688683149781566,-0.012691721523405065,0.005056568950562887,0.008214041722473291,0.006328434459048842,-0.10301208352224375,-0.11023857262605709,-0.10838528973618336,0.014950626119842535,-0.08000262796767366,0.01944284869838581,-0.03583472220158781,-0.028933509516869828,0.062696561227318,-0.07841374529589695,-0.028202443033385427,-0.06501747335193145,-0.07396516709276024,-0.15886365037166983,-0.011103923179436183,-0.11556118671864767,-0.11006692789266972,-0.01248146692409709,-0.07092914569489385,-0.013905234201526655,-0.07177065726261554,-0.10680906814298168,-0.061220237704078403,-0.00743861124027886,-0.08770833055940479,0.06835631126729524,-0.05060383009525216,-0.02839379867525013,-0.04239980566538693 +C56:3 TAG,-0.1608530601400433,-0.05795358286910202,0.1383276579927571,0.0064690475310242475,-0.18279953854700648,0.08907035033927604,-0.02330881083451089,-0.16336759496372213,0.25112526007120595,-0.17579991714827958,-0.17511602948599916,0.23010031534005174,0.03813365657419355,0.06684381538939399,0.189054477142485,-0.14545068724899085,-0.06872401935120122,-0.16063324842613463,-0.3958145683965639,-0.07979680899956249,-0.1491197390951806,-0.15904090577393074,-0.06560100319448889,0.17595865611026945,-0.014721250608024664,-0.3631817284118976,0.022363727049948445,0.005947999974337501,0.036796136886207996,-0.22800465035848147,-0.26457501156157326,-0.11681806077342337,-0.025526435885997876,-0.07708096699721415,0.15974825404867504,-0.13212744410370927,0.08179074456100374,-0.24797648399934075,-0.35699150234760485,-0.3421250664733951,-0.17780615358096036,-0.055025107860098274,0.23918909005063296,-0.0957361769122621,-0.27736482730094125,-0.3238881949038461,0.00907357892294788,-0.374961884160432,-0.07749007778540544,-0.3045130740487946,-0.17142010997942211,-0.2145194650636529,0.04724283059820623,-0.12458552238588137,0.1339747088070419,-0.01918477118603974,0.019894763736614033,-0.10359983542841919,-0.1279807346567055,-0.09480614885952159,-0.22768145446273746,-0.2601966104120121,-0.3612701607098102,-0.15531238971016958,-0.09695395813343165,0.019916153938772434,-0.25105508028827445,-0.3467546084510468,-0.22370128468894634,-0.35832672227300083,-0.33428353728102306,-0.3782045181145053,-0.2918257250097454,-0.3670799574592019,-0.32396833524389645,-0.31970734413829327,-0.09926651904082552,0.04734135425524364,-0.2231507243204317,-0.297192453967485,-0.01241396409532357,0.01711219606771871,-0.1285238662107333,0.01921206305151647,0.1073465311313958,-0.36622410801728694,-0.04442217114745426,-0.32623574486389856,-0.2933731265256433,-0.3982108190729509,-0.11313033914071877,-0.3648431470296485,0.14877344981746074,-0.35387769666157615,-0.13841234132204927,-0.3296380312325925,-0.2764998996018455,-0.24436134884531166,-0.13649022138307756,0.021261618371327413,-0.0023818650230974054,-0.13062462439953743,-0.38329336232269107,-0.3195515523915457,0.08904681560585188,-0.33925956794325485,-0.10315630464482643,-0.174941304749659,-0.2885811404978862,-0.09385347099893182,-0.10886733902859552,0.15751684253246623,0.11705076279629725,-0.023086036831739504,-0.32584276843244553,-0.2291299875848455,-0.13609185210260363,-0.0444648488206535,-0.30341286887175273,-0.20376861969728466,-0.09875756514208692,-0.18338590616470546,-0.09960317556402645,-0.08622588765393821,-0.16825257591789616,-0.09366300857699443,-0.03531942657854092,0.011438844215095815,0.04514252005062143,0.08086399012011769,0.054913794561794745,0.07667701141808043,0.13134369947559912,-0.034479927372970225,-0.05381984560940459,-0.33783463926930973,-0.013694636426533558,-0.17639103936928124,-0.2873602819605721,-0.03189040111452731,-0.26591686008806664,-0.18811581117046713,-0.21934636430508264,-0.12444656173612166,-0.3218443504753927,-0.07659531748921959,0.03960675017920629,-0.07152033924054993,0.0596426301451305,-0.08017358239859766,-0.02413001515732588,0.09629312443087495,0.17516247548507613,0.034907617041083486,-0.056695596543129535,0.15264794989025807,0.24206127938604005,0.06067091047747904,0.1478009258170291,0.20648626969185227,0.33079742115942945,0.23667538899195267,0.05777708022963577,0.12638374562701238,0.2745306715898908,0.3332537354195081,0.17878480309031525,0.031626507629118075,-0.047625189236785555,0.19319237492946217,0.0798294544159522,0.056557722242465795,0.029972119246335152,0.253736518554097,0.3130046147562402,0.1521292606275195,0.08239668305089132,0.2002778693985093,0.23100465230858577,0.35374088066592546,0.3321065223273187,-0.18489975961749142,-0.4100045578734647,-0.38132912447892126,-0.4476104615840678,-0.47666252697705774,-0.28817866357675,-0.15697752179146285,-0.40198128920164605,-0.47951596704694993,-0.388668757236684,-0.3318231247027631,0.40108737803830746,0.4239958208214131,0.23468379763682415,0.3957460026329303,0.5181526051166623,0.4315879498439485,0.1987157116565161,0.5719687686727267,0.6203085065857246,0.4573129112013847,0.2834641340045673,0.53113190362946,0.6203119338903016,0.7458574485605041,0.7405695896104795,0.5457061856314639,0.4996674009933745,0.4848100520707888,0.5343595028708947,0.748589634432795,0.8899089566608608,0.8250181527657312,0.5885284221073003,0.2492158420697721,0.5035362898731861,0.4890962286708059,0.596643247403555,0.8025995594415916,1.0,0.7996998410272864,0.5341438485595407,0.5633840708210592,0.5613861746208103,-0.0920316169331434,-0.12492357399093451,-0.03868640805671677,0.015127984774787408,-0.08202179365654269,-0.06876946420555356,-0.03248045557925604,-0.08530117966170597,-0.10018061755183205,-0.033661278275169536,-0.0007491578469904014,-0.0001526061737456153,0.02339058715260595,-0.0867213941399774,-0.08203311874145182,-0.09398360518237434,-0.011630906573151242,-0.08155021806017669,-0.01384382720507246,-0.07054039747515,-0.08486131812319916,0.003393408702372372,-0.08647433741808327,-0.051178458052300105,-0.10031415810005877,-0.09113723094769922,-0.11380055288078551,0.000764882468279546,-0.06840729088610184,-0.0966781866695956,0.009904769411109847,-0.033256716894134536,-0.045226464778796965,-0.08683632230073689,-0.12402232117461016,-0.06730841883233234,-0.006702929192075199,-0.06307900931505331,0.07437077139195233,-0.05200610290136811,-0.008740302629470906,-0.021745191779938833 +C56:2 TAG,-0.1946417479378995,-0.047309592004203836,0.19592120417186373,0.020432650350178553,-0.22202684278423582,0.11427995781263751,-0.11700639071951137,-0.14732972818173204,0.32656913195609244,-0.19060031007457387,-0.19359500858256148,0.30376314741895916,0.05741623287559124,0.07740956456688562,0.22358393519121564,-0.11010929364151804,-0.10175585287718347,-0.15309113037498295,-0.48458158271253177,-0.03714567052543715,-0.1756586384552634,-0.11706818067638881,-0.01768892460792196,0.2555196353048854,-0.0010782275212066958,-0.4394645799020497,0.034846887846019775,0.028372248314082808,-0.0031660221137964103,-0.24653112969295543,-0.27269060055258587,-0.08195917448975998,-0.0029568935661922553,-0.060017090889081776,0.15576756596503746,-0.11947877956849576,0.09072172714480657,-0.20724462471759786,-0.41802593995011844,-0.3838489706538724,-0.17281525388498808,-0.10822475960936435,0.3194348354697121,-0.07433658998506368,-0.351939662032393,-0.3512405119906321,0.006999325991558376,-0.43733585017471804,-0.10562726160120557,-0.3869163264913673,-0.21083658458422708,-0.22449923480633222,0.011799152180134992,-0.14216603700734787,0.14141114157824766,-0.005619482305031181,0.00857087957201462,-0.11221792009784123,-0.13722607414733756,-0.07203605985126228,-0.2898455301262999,-0.297185042397929,-0.42213282510009076,-0.19953580975099966,-0.09994054696851648,0.016255055069440187,-0.30683772663505365,-0.41834253273111244,-0.2904312869712127,-0.41920551705899517,-0.375174367380314,-0.4341837327691704,-0.3490061645361521,-0.42104993414396413,-0.3713732213511072,-0.36463432568874915,-0.07684887085405964,0.07697232104279277,-0.2641108614465623,-0.3407128802838813,0.004547756558516211,-0.015123414117597175,-0.0943759778247055,0.0683065452285122,0.07607069009521521,-0.4079022913540761,-0.04899853420834888,-0.38183631004743557,-0.34846030235950354,-0.45206928134814856,-0.17248467320779387,-0.44193094791151266,0.21953852542043373,-0.41315940469131684,-0.17208962593537203,-0.37436430557762657,-0.31780951915955996,-0.24372548890344006,-0.13707595148091775,0.022699696538020866,-0.046588444093878835,-0.1321097519113498,-0.4185171590807403,-0.4042411913468729,0.06311832783612856,-0.420681370573809,-0.10391488212724159,-0.1913913917895117,-0.30545515186664174,-0.10252205751397966,-0.12842028040561643,0.129763602459939,0.08351241468081808,0.052583254652733905,-0.39969474603017796,-0.252895144621424,-0.10346074825991548,-0.023079696113869255,-0.38274064691579923,-0.20151067457766406,-0.07611619324338315,-0.17242202492798842,-0.07500108916145895,-0.021392900479237906,-0.1616806737666207,-0.05010351743906088,-0.00969308589516733,0.006495341241383117,0.057541447289767865,0.07559829544243589,0.039473429218128624,0.018190722174576686,0.12518904420671476,-0.02454405559350373,-0.03317060272419086,-0.4068953270144577,0.014791732303425219,-0.17106531467682695,-0.19869734422721042,-0.07881804755302942,-0.27084265368588945,-0.07631993231515978,-0.2501452656599588,0.011161364415006942,-0.386791951565583,0.09452006637712942,0.09163386160983786,0.16381391215211916,0.090678232724904,-0.03272696626763302,-0.07804842929223313,0.1311239403929598,0.37550545271627966,-0.04609546740399953,-0.12650577222803197,0.06789013927843478,0.3187528463285211,0.050721669127994785,0.06413151335369485,0.0916307594321997,0.22287220667875557,0.4012978066219,0.0033513593708417947,0.029619663893529477,0.1479825972931754,0.3289588578018153,0.10285821430529131,0.09601083314701106,-0.03017140122376651,0.34904080614195043,0.16300825309121594,0.14010047759689953,0.17598531243705745,0.14938021434253054,0.2137879747141845,0.2029534663180199,0.24903987236096803,0.2396736615367479,0.28206036278436525,0.24932372739092482,0.4862575644963989,-0.15962473245200753,-0.47263670173989586,-0.37401128122455657,-0.4893691726514475,-0.5770651448185309,-0.36617677208792176,-0.05806390401755229,-0.469968280294221,-0.5522949906795577,-0.4613123491272113,-0.3811568847312216,0.44044330612199417,0.6184400633293072,0.5012812421017645,0.40338058721532316,0.5404051908624598,0.664527994162798,0.5188357907531926,0.4994467650575478,0.6696718483342782,0.7131905606112013,0.608892226220328,0.4845469308728367,0.5061793904082124,0.6103367711364771,0.7886053142034614,0.7979105218297562,0.4678448114855818,0.433990526138953,0.4546307706402687,0.5671478615332268,0.6879280655951556,0.9013747610252771,0.8479180390026668,0.208512622376293,0.41849917784208457,0.4060202821100418,0.45096216052267685,0.6380105646162604,0.7996998410272864,1.0,0.402974356501786,0.4167794737437893,0.4381991241925798,-0.08258004182917222,-0.12710501586812953,-0.011320817182831025,-0.012633193317162452,-0.06423991143459087,-0.07228526540879529,-0.05898066367782606,-0.11864185000915495,-0.07766204816393053,0.027445889121529215,0.055285294739284195,0.04066479192188126,0.05269768036896514,-0.04624951651252374,-0.07888104254161411,-0.06605670606542148,0.042557467579692636,-0.03494286134585389,-0.03393706634777767,-0.09965242946694608,-0.09393395381277479,0.007932950444459458,-0.08288987213254255,-0.0807677613350641,-0.11193569109771616,-0.10486442833702016,-0.11700850956511097,-0.004321305447332746,-0.051492658801329895,-0.08861359438663823,0.050987209924830176,0.012838452603642454,-0.02686277999136883,-0.05146845012782718,-0.09613314242914377,-0.039033994950866034,-0.07495571872011207,-0.045600779833071536,0.0657457199663451,-0.030143898476705292,-0.025247792742240285,-0.04612882966915757 +C58:8 TAG,-0.04289225128800906,-0.36366716510167885,0.08762474394612768,0.22205680152354404,-0.44107022194513235,0.09443109045595374,0.34381803998560434,-0.346223824819918,0.1305188729156331,-0.42141898248903686,-0.3935294990859341,0.10699539064614255,-0.044124064940382283,0.11792882826576259,0.27741606757687315,-0.26727767815062614,-0.20963627597587142,-0.35966615732991164,-0.2516510740847524,-0.21650471291382226,-0.1642163493501031,-0.4247812026475347,-0.36877320399036534,-0.0059154638375542015,0.01715977935708037,-0.19968617156733431,0.30589241927268646,0.1947154007660244,0.07966314653500804,-0.40568444796956116,-0.21695465684648577,-0.31667458338026183,-0.30708930571568865,-0.2958538336337484,0.5248754245588777,-0.06448367625970634,-0.18882072769812905,-0.43009329102621124,-0.24728316041499282,-0.2211841909682127,-0.031537351085675285,0.08839806811351375,0.126192920851339,-0.36443530113368183,-0.24170789154800137,-0.2078202826776875,-0.031957008411511355,-0.35541592824548085,-0.07313128009101853,-0.10624288151653913,-0.25548831727674803,-0.4752919833580556,0.3855146631800993,-0.1077415291986185,0.41805650194125005,-0.03548848487641066,-0.0741057062611955,-0.14294877542867865,-0.14820874231052325,-0.37323430855219164,-0.00102535981698094,-0.23020068700760682,-0.40124490975352434,-0.20748788141505659,-0.06496273458109744,-0.09319041906827065,-0.07663216806815994,-0.29866710543080904,-0.1788279949917005,-0.2711250865981424,-0.24819676855608303,-0.4070474158516084,-0.38124186580785674,-0.3505042932934516,-0.3847555417431346,-0.2844879397301658,-0.3340134314169459,-0.04502621318903007,-0.062003844421314167,-0.20879614255309675,-0.0874224504443104,0.3107313168565268,0.070518636966818,-0.05670997398059026,0.2992704645373156,-0.2904891515144752,-0.24952027655333417,-0.411866095824656,-0.47567228153245883,-0.3105251331245061,-0.05794336384891799,-0.3430289886745807,-0.08396580363554074,-0.24713091665891332,-0.16361191539889208,-0.39488972567979,-0.23484074339427977,-0.20029997774674208,0.23181527008931613,0.007869343053335373,0.08764944059287214,-0.3647528440894511,-0.4258954813775756,-0.1765046587611886,0.40650227906205516,-0.1527042374303706,-0.07371680248542316,-0.049043296542055685,-0.22670213218578686,-0.11114164995054576,-0.09644976662346644,0.05162748193483022,0.30317415477246024,0.05809740208881739,-0.39030391261217207,-0.23138249348475298,-0.38093665845711355,-0.08065041957036531,-0.3879710776622534,-0.3442084554928147,-0.33270219698924147,-0.36483959983003617,-0.36558485500628923,-0.13964309353644347,-0.2577342606587202,-0.1577030098031826,0.1517872431347279,0.06636156185572016,0.13292935363111283,0.2105777359208064,0.21189181229757803,0.17165503057869794,0.4233472743336957,-0.1763480784997684,-0.30849898621044397,-0.1646911234244286,0.19600104178477223,-0.05414214137953748,-0.12090532754554933,0.28155017532619936,-0.2771027741784403,0.10754645977193432,-0.14497002116629124,0.18276443579330232,-0.043360421022098715,-0.044275707494468075,-0.024411201457426902,-0.25821879229544054,0.2568511145101155,0.24980511523129661,-0.3208980029576902,-0.1499361192428396,0.17379449896888668,0.1057232680074349,-0.08439845651799659,-0.15848812427334225,0.17565675331266112,0.4309512448150764,0.5790303704681039,0.32335572110800304,0.006723655708597785,0.1637359000135651,0.5427605605865747,0.6153962879708306,0.5859947450081916,-0.0664022527799242,0.5353249407434781,-0.1391278582635013,-0.3118738318596157,0.127427101926333,0.14995419723336065,0.07632764127815717,0.10666493854472169,0.3025605379603503,-0.013276783775660753,-0.019030965712553725,-0.061199463359346506,0.1950591500740697,-0.09713677771312877,0.08654746058600295,0.13257840707069737,-0.1965275034219748,-0.37849271756315284,-0.36540493614846126,-0.30766323188991623,-0.3433414913313889,-0.34259396314965496,-0.23482318872265578,-0.2504349089136321,-0.36891055064765776,-0.194174517418079,-0.1796474863162894,0.24192834816186565,0.1210357175887489,0.08980407860643116,0.18701353708541424,0.13744467535300853,0.06021560536441707,-0.03941228039713481,0.27806953084142405,0.16143394999086055,0.1164701838405083,0.08332345808919497,0.721131279446472,0.6085986999568593,0.34547965077967074,0.3089004351294278,0.2777228239076516,0.8177620961535509,0.8135225025431719,0.7537070028093869,0.7532377480757012,0.49084059182404705,0.4401417464213169,0.3551264839164446,0.6170483250126164,0.8887456191662566,0.8945426305037562,0.8592719764251643,0.7656069825002698,0.5341438485595407,0.402974356501786,1.0,0.9258125899951993,0.9022406934918804,-0.022876254374877898,-0.12158148995705378,0.024798011614046208,0.00722042489846924,-0.01997357971365292,-0.020387500718639224,0.022385305189779915,-0.08038046612712232,-0.1584135197146285,-0.0026216366797183572,-0.01221655160092847,-0.0014513381629397573,-0.012101965849442745,-0.15308806254432122,-0.009688959735490622,-0.10365071474171376,-0.004433526963791969,-0.11961043847651688,0.06690156476167412,0.040316474180070096,0.017316270383379306,0.07841531509656871,-0.06926248538398372,0.04346732843260087,-0.011635765190493537,-0.0734690821738443,-0.15128857040065283,0.017962843137666436,-0.07766578189032114,-0.10472223540368383,-0.0033915372306920354,-0.05465853549195083,0.009838469866013685,-0.06291224068263368,-0.1146017074513011,-0.06619466684497251,0.04267401902093026,-0.015419502947834,0.07514257106562942,0.03610338544342997,-0.052344671153739204,-0.05530465640230921 +C58:7 TAG,-0.05006056162164049,-0.3702961812032869,0.08206764921134711,0.21040889749347977,-0.42503494275144776,0.09524823955860273,0.3327905906482334,-0.3371857116581601,0.10954630085845064,-0.40967414084140924,-0.37707087687491847,0.09586680367201028,-0.057092688885911104,0.14797382089395972,0.25574387391456355,-0.26887649381008416,-0.19478346999252197,-0.3512805252901325,-0.239181264348515,-0.22615661549902086,-0.14827273434861907,-0.4152891867275437,-0.3668653921237625,-0.008282814182817956,0.035320238761247603,-0.1590796767115406,0.2889412717992281,0.19161051026702075,0.06971040012271365,-0.39219451907175734,-0.19733774612124436,-0.30886426654323723,-0.28785721579975193,-0.29068090220199755,0.4792150448646679,-0.058822412751748536,-0.19022225818589353,-0.41819221335909856,-0.23149679923377975,-0.20953163244834347,-0.050995044228841595,0.084875466734493,0.10813429936310233,-0.3400682247186103,-0.21314534564461146,-0.21627121060524204,-0.025419749439382893,-0.3332027672437136,-0.07291430370930595,-0.08202399907264536,-0.2229207173329466,-0.4284693398050414,0.33678608104446733,-0.09961115662164742,0.3730319478887318,-0.045748503417397356,-0.0731866140602548,-0.16105333574415115,-0.14284295217173917,-0.3608966324632502,0.008240677938584583,-0.22147352495331693,-0.36731582945820124,-0.19526120908111314,-0.05661579008646159,-0.08779526188383177,-0.08036106917915566,-0.2892058751581005,-0.16007786061318793,-0.25244623838450436,-0.2371037597944225,-0.37802754638023534,-0.3461407315233001,-0.33249433662242917,-0.3630030694349599,-0.2747056414284741,-0.3258049089048242,-0.03463488456111493,-0.06296268288357866,-0.19874667649152702,-0.11348643656643041,0.2689069339048037,0.05837737557902581,-0.07485205022324977,0.2808682438994585,-0.28399593350289565,-0.2528587966434906,-0.3776991122019586,-0.43018694146945013,-0.2863896283482415,-0.04658695083110189,-0.3184650380421134,-0.09888367531588875,-0.23429036291104033,-0.12273115623876006,-0.36291781130245965,-0.22213335186246302,-0.1902133899407131,0.22384548614483687,-0.00414940869234491,0.08902642473575846,-0.34336334454966266,-0.40666471721137776,-0.1577237043506071,0.3390637548157975,-0.1335268894118886,-0.05841340593102494,-0.05330284759857129,-0.23384109359660232,-0.11690419390069624,-0.08027183545393797,0.04098490039985939,0.27785034055402685,0.04413768658690583,-0.3528802477689569,-0.2034547709319776,-0.3692051285432931,-0.0899020375008706,-0.3540439278786169,-0.32789101931313613,-0.3208908685361041,-0.3457828411123315,-0.3160477064554485,-0.15959136716759934,-0.24718885252158138,-0.1465939667444191,0.12466756756631014,0.07233584607844375,0.12463611203683186,0.1891787249262876,0.20935327293122877,0.16709933895482848,0.3791973191049761,-0.17739853453482915,-0.3144129930759072,-0.1718748369142508,0.1632856303933539,-0.08537682451946339,-0.10912310430653564,0.24365551726631204,-0.25966311167607686,0.1036038388954805,-0.14215455612585298,0.1660609274002952,-0.05648537693757708,-0.06483172814073082,-0.04708917303501059,-0.27020086645812574,0.1962212099419877,0.20926762586666459,-0.29979908548319767,-0.14428629773565024,0.1530103359692825,0.09427490517794718,-0.07207331004910453,-0.1361176700332604,0.17257545701633023,0.3707590969089094,0.5431287407302827,0.31387371911566775,0.02111713533672482,0.1578382932593685,0.4961668508088187,0.577047719837481,0.5596038088701074,-0.033287931933849664,0.5080097508113137,-0.1144301620773079,-0.2839297541425804,0.11541937670651456,0.13980941409138706,0.07312637504094992,0.07748115247376942,0.2923261516296058,-0.00888037427253339,0.004422773544463803,-0.05852751274819944,0.13247914777453187,-0.08673065818834111,0.08414562033431172,0.12199682343303289,-0.17147876813828208,-0.33719744652617667,-0.33134519248045347,-0.2726020659927448,-0.3122249442457748,-0.2988931364490601,-0.21105905060466906,-0.21666229735152814,-0.3341340697511424,-0.1780551067163586,-0.17637475821579238,0.2594551427758282,0.14429638831657432,0.10468022195718805,0.1999024874756206,0.16823543492243898,0.0803107015404706,-0.022971397506829964,0.29210855148721654,0.18872430360330636,0.13141870353988844,0.08297826529982384,0.7042750614538974,0.6023507156040375,0.3696287660132232,0.3239736760096959,0.27376886168970666,0.7616886730681574,0.7549555357774346,0.7050600943805688,0.7566157020559132,0.5116977313940321,0.4448602704367231,0.34691563658250335,0.569841169577765,0.8243781403772115,0.8628170205510686,0.8501298854513851,0.7655765319372196,0.5633840708210592,0.4167794737437893,0.9258125899951993,1.0,0.8802873282610082,-0.037326201322065836,-0.11544103228469962,0.029760543806287943,0.016483708999683426,-0.019207752189720918,-0.009687548779629986,0.013548464273010269,-0.06574484591105319,-0.14117245817197316,-0.010677997306802993,-0.01596910464243535,-0.025214867987442983,-0.03018436214716374,-0.13888745983053036,-0.02036735659975647,-0.1127005522254127,-0.025989513850305956,-0.1200376424164689,0.05114971475782211,0.01607786907122631,-0.004603598034551106,0.05748784795988171,-0.06892736145123057,0.028895458430456523,-0.029740557353119798,-0.0810899095898076,-0.12708656271108595,0.016391696646724952,-0.06563608122090217,-0.0900768573119127,0.0035394182162679804,-0.022590581474527145,-0.00022109897742723328,-0.07992202190700809,-0.1248792559258554,-0.05700914366970432,0.026002262352006266,-0.01777208305052023,0.08850600809519017,0.016925217505480965,-0.07136297483379975,-0.04583853142542449 +C58:6 TAG,-0.06285645570478143,-0.373287124405844,0.08467524154026808,0.2532141603290682,-0.4335555303880793,0.11394700583989326,0.3244061762467981,-0.324866520818499,0.12895034058044852,-0.4145957553189234,-0.3705875136027848,0.11322205537697133,-0.02735340922324804,0.1540340022613092,0.28256512549642615,-0.25008162439632997,-0.24615458496245937,-0.39140457732733347,-0.26759570407606076,-0.19687928606511512,-0.154738612675327,-0.42939805685015386,-0.36389103790023314,0.008888648076486703,0.04991685445220468,-0.21381523382309095,0.29225730933207095,0.21433559465024718,0.07497055782782266,-0.373426343360931,-0.22132632585346562,-0.30757513110387363,-0.30666574458474993,-0.3133675602358425,0.5077883026712214,-0.06778750526099903,-0.2021742741596633,-0.4186100853434349,-0.24850677017679368,-0.22947337737085377,-0.0577033578482002,0.09759871176468836,0.13075134485218878,-0.3574992603248842,-0.2527146696368274,-0.18613163147017855,-0.014003108899838183,-0.36653614481306274,-0.06981144476561413,-0.09295394254188492,-0.2465286525845295,-0.4796769477263844,0.37708074913277256,-0.12330408380105805,0.40614055972674473,-0.012987786667403571,-0.06230132709626604,-0.12062900968034346,-0.14959542767107198,-0.39758906926866855,-0.021559171127575702,-0.24364575317654133,-0.3932790779250505,-0.2341362920161817,-0.05534011933925637,-0.08554926128069604,-0.08736729216894878,-0.3118165537057,-0.17888289885060926,-0.27727388969484157,-0.25615715574439524,-0.4002703831689327,-0.3741622096907215,-0.35321589629838945,-0.39292542880290954,-0.2758236148220854,-0.3230458474274786,-0.027750926257201176,-0.06819392723450773,-0.1942252509204955,-0.0974540047493813,0.2886060567975813,0.09248482905835335,-0.059232312619406195,0.2836521318436324,-0.28832503176024976,-0.2802800247750572,-0.40136305701635877,-0.4672073851140578,-0.31329560035313997,-0.047669653269844785,-0.34350478120702505,-0.08393941182825411,-0.2411337158553823,-0.14904050802662563,-0.4011110098538255,-0.23371603909872016,-0.19904104873349068,0.23323009309506623,0.009163241730410764,0.08637806615368102,-0.355832217582855,-0.42618135844839333,-0.18685598379098745,0.42635093718210115,-0.163634423190761,-0.05403264610275721,-0.07564710054000133,-0.23753014676145767,-0.09636119121983625,-0.06569368821214364,0.0709871912168795,0.3226735830007814,-0.0074553820926965405,-0.4000354860058617,-0.22575286766660219,-0.3788881651946855,-0.0838483825374748,-0.37091494868436026,-0.3543465428708383,-0.3480340324084478,-0.36488939107877977,-0.3578122063391648,-0.1569468666003872,-0.2476477249149221,-0.15960576837878943,0.13566077895578443,0.06910636813974368,0.12865358981384345,0.2460271342596339,0.26868646667600565,0.17909259674179245,0.4039953922782836,-0.2019577571343013,-0.3173155571984717,-0.16881027210144783,0.18741449165600477,-0.06421066823383537,-0.09003669306076993,0.3007152240078059,-0.2724305401573778,0.1623404895652059,-0.14942338483175954,0.2394927149505295,-0.049995854124018586,-0.05947081835384208,-0.04340561353806385,-0.22082923297202517,0.21541546055584,0.2368069953862512,-0.366749667205061,-0.1727353425056978,0.22582201028121404,0.03428752912990809,-0.14179503437070062,-0.21340197696415716,0.19786270570374034,0.40131735204284874,0.5667926888327409,0.2858967499539131,-0.02600398468675608,0.20679557825672812,0.5134951098846298,0.6255956434825084,0.5941750190206951,-0.05391924654602828,0.5697301995710251,-0.12182458005882736,-0.28019281646071315,0.16634992439411234,0.1238269601816162,0.11488130343132018,0.10241476181505603,0.29172997990831323,-0.05693407286040446,-0.0016592123621231743,-0.01935681626431445,0.19618631414541735,-0.12300208364298063,0.03796419247652283,0.14969405180270307,-0.2216131755521744,-0.39856444860532997,-0.35601255718137453,-0.30987630369344943,-0.35883094624254486,-0.36072853450143544,-0.20022256175492534,-0.25998703450168464,-0.3812864905189708,-0.19881535294343608,-0.201471083454907,0.22752487825453344,0.14252930782092596,0.10924551756654426,0.155667835234071,0.13063990846400408,0.08836074823735962,-0.0011732150730179379,0.25132408911960125,0.16324729716258202,0.14648704180724575,0.13204523998011838,0.7186949596107699,0.6150578796145137,0.33025135979826675,0.3305379355673941,0.3315384016135798,0.7507816952947575,0.7884081566061749,0.7595433829522579,0.7685828005509775,0.48626302849724523,0.47803338049936356,0.40092319308871266,0.5700804604647207,0.8238782314590296,0.8839255661910549,0.8980675057794533,0.8138986844199976,0.5613861746208103,0.4381991241925798,0.9022406934918804,0.8802873282610082,1.0,-0.05507013264348719,-0.13346830148667246,0.033981941464476084,0.016396208926907067,-0.05294099240430394,-0.06733049920576348,0.007472482978644297,-0.10733635431652523,-0.1550543670680304,-0.0027346116533804787,-0.013681678001130794,-0.0040683649941602165,-0.020023375460788834,-0.1405298419837326,-0.05960726421041537,-0.12473652911195261,-0.0037260556956836242,-0.12067236577817161,0.04243898759452463,0.021507767677588496,-0.0047610244895523015,0.07031270298310308,-0.07018184678064247,0.026801801538874275,-0.035136361585723204,-0.10751307744196094,-0.15326112350516277,0.02677406588463313,-0.09605037312579723,-0.11781850596393405,-0.005567476814233555,-0.05873729852043423,-0.018372802183688603,-0.0782186962401158,-0.12606678430285356,-0.05686833296582664,0.014647162221614305,-0.0539115376926136,0.04977143354100591,-0.003480709804189238,-0.0813172469948959,-0.06190701083229029 +H3K4me0,0.01057970886037784,-0.0015811654692138484,-0.0024531587526654044,-0.03742499917633833,-0.010916000303303973,-0.012144024521523767,-0.003950092571497177,0.02669792020284879,0.02563513899894147,0.00591521777417442,-0.018909239642748477,-0.001842407182830571,0.017385820158335747,-0.03162082416394213,-0.04266682883456771,0.0029396860826741353,-0.07743582435346814,-0.006405499344642938,0.047034870082537455,0.05211585122382587,-0.028953590002978948,0.02241438964455995,0.03525836301433889,0.016442360480152116,-0.06084073519498081,0.011636916039018714,0.01714123516356903,0.03975035710782566,-0.054902631856426576,-0.011952663666411624,0.06235159504391612,0.042542246595967406,0.01903564314952891,0.00048398462412769985,0.016702782466669237,0.0700231271463558,-0.016664240553646424,0.048068050674482984,0.04788417049813777,0.04453358478395675,0.011647067042180955,0.0031394124552582103,0.02940378581940073,0.011396978909598614,0.05219471144145087,0.007612425633436403,0.034519899971311996,0.08915909120004734,-0.03828460406284892,0.029182715760478005,-0.03506962002009694,0.038155617799574486,-0.004282347503051743,-0.022328258885346973,-0.05066293749000951,0.026344731919924855,-0.05411178373477745,-0.0898191818628591,0.05722609122924785,0.036410168041946384,0.07139465841284642,0.09296864561028484,0.06254066969337137,0.0005380079751522693,0.024489994679913325,-0.018891632700551126,0.08058104898038443,0.07245702717631133,0.013251392368402233,0.062261511395076054,0.08571037628732829,0.06735352173003571,0.040128644473900764,0.08431984964898122,0.06595521977956896,0.0866767593518386,0.023805082506550505,-0.031673714027555436,0.031635211491783236,0.028206604567851276,0.03228395677347863,-0.006706294960962168,0.038546497149833284,0.03082530468783615,-0.030918176866663614,0.014011591491046447,-0.08959832337075758,0.028420086149147258,0.006759847638228178,0.01953871605579759,-0.08530056024640176,0.015764158957519436,0.01200856546327255,0.04314354683202666,-0.07189653960729483,0.08103980834200915,0.0438442972016005,0.07965685218665103,0.06846126675106967,-0.004394593272060499,0.07301634618105572,0.018550769185126735,0.016111141826801186,-0.012960420082415769,0.031130249670610264,0.04448567624209897,-0.010843568744421541,0.03304659554780738,0.0396197604035023,-0.0022902414074801687,0.020822938543849784,-0.008970595678678469,-0.04194854814533545,-0.06465639681161846,0.019315221925391184,-0.02726376688502604,0.026146346063163236,0.04027628493265828,0.03016968270256899,0.044293927396734246,0.032077078193739034,-0.029769815757888132,0.01705504610962546,0.0782519905551281,0.043844264417330164,0.03142137731200367,-0.006980157171664499,-0.026013455748852953,-0.021563557828219164,-0.0016361871926363427,0.0007317914542480606,-0.004586025631812739,-0.019846309814904883,-0.03935822480495221,-0.006160914583030341,0.022315856206494712,-0.008747014142888854,0.06352554419976977,0.10037305545524554,0.03205552104737779,0.09364700842846396,0.07639845209831614,0.08299077781350568,0.059920125201383935,0.09554983310315535,-0.015541197857334875,-0.04895271452774641,0.01825088501430648,0.027833045601464827,0.02860778466703636,-0.0020927931899281265,-0.003543415163670634,-0.0598782405176844,-0.03942809094057724,-0.03152798391935478,-0.01736527068974048,0.0035983841597195657,-0.028062698206545954,-0.01314155865688035,-0.043354546989411935,-0.04181794625146745,-0.0415044614295725,0.014848992254265274,-0.017534791065948397,-0.055459469028190364,-0.013873405737396934,0.0036156583591813473,-0.00986232046807662,0.0027781870154359044,-0.011394509186241254,-0.026262348896931683,0.024861717750595168,0.0021601490620045596,-0.039828202932795015,-0.004596856276894073,-0.03080129136960788,-0.054540919519562615,-0.003666755463077548,-0.03210748109059778,-0.06083060459923012,-0.027646715122649917,-0.04949703843443948,0.028225905163639278,0.044278113872527135,0.04159906837199657,0.05569126365224787,0.016251595535546733,-0.014402558675199123,0.04123062081077562,0.06554874692722064,-0.007356609438477468,0.040502945180808395,-0.06888124793877805,-0.06651619384476298,-0.05956192614607298,-0.08299833456072332,-0.05379967085452945,-0.06255981838830257,-0.04281879039425466,-0.06807413577075073,-0.06731088995844094,-0.06243862279494507,-0.04587696792735214,-0.0729688158535338,-0.07616467575603766,-0.06711003613906594,-0.07881088203222102,-0.07370984729220845,-0.025714886097682174,-0.04373092358630784,-0.0736696932152145,-0.08792565229604077,-0.0874599833082629,-0.08057490327600919,-0.07203435514850821,-0.030382166775465756,-0.0290667856658476,-0.05438879110366353,-0.06562978834013779,-0.09741462599162679,-0.0920316169331434,-0.08258004182917222,-0.022876254374877898,-0.037326201322065836,-0.05507013264348719,1.0,0.3418910990375121,0.26629647047013627,0.13230747093217096,0.3090947000489273,0.4567856136144319,0.36363741929420845,0.29073102027372505,0.18735483829172564,0.3154322050173323,0.39340969590167424,0.3656487310398976,0.31523510194210236,0.22527153229617908,0.5106358241900674,0.3073016656895902,0.34108236131383357,0.2731686545253489,0.008127044193337624,0.08468861723328794,0.08843145588082782,-0.030742001065665596,0.10943475628903103,0.10593281314006206,0.16577519833896456,0.11453400307255715,0.2552697763866355,0.14230235969434454,0.2053172576175308,0.16811012916890472,0.11971629896537941,0.11733221189120671,0.15881558821892247,0.09355980866660717,0.07682882664351183,0.03901152091872471,0.0748502361044163,0.38132504638143083,0.10544268248017125,0.24392995335536452,0.1836948472976081,0.11234223836007577 +H3K4me1,-0.0021257326882899857,-0.019890222409867268,-0.0454343729191863,0.042511208349840277,0.06224217793261248,-0.05736417246870906,-0.028594612647727346,0.07608770551726765,-0.06545834352627018,0.06592568194245597,0.027998348257597366,-0.07141298753995144,0.017600504654994867,-0.0026138175301470197,-0.07447341926926823,-0.01972990808069706,0.009554210464976592,0.09055174758482763,0.15536081623444184,-0.0033247020292691254,0.02490868935330795,0.04089542863670713,0.016903294374084762,-0.04958625309941554,0.05828250717489882,0.12994960285617468,0.03531722702876563,0.10392583394761497,-0.06198551776130025,0.026653982559810562,0.13507271548502414,0.03402050322834768,-0.020938850052395083,-0.005520522444071997,-0.08543801429617691,0.16297569415921243,-0.04765205422655423,0.06840171015228,0.09106587824716501,0.1080491197733854,0.08898866741411722,-0.033711016670871376,-0.0760748626378709,0.01667672409203099,0.08865422170140182,0.07452312705605939,0.03936806733003797,0.14298170957922365,-0.042603163456427395,0.09154271927450391,0.04333709314535046,0.15959044659601057,-0.030885945595973782,-0.008873336007487671,-0.11449678379488355,0.007126980545687915,-0.0486519690548756,-0.06435164443083932,0.006114313945127175,0.02890710175013722,0.09366586063537533,0.12376436940587983,0.1359626563732013,0.025762626549190426,-0.048901593110630595,-0.06871937540914032,0.110969882521435,0.11226545591507468,0.010775313123017832,0.1569996175094865,0.14452783210680092,0.13991543390138125,0.10014355676639773,0.1573133586092954,0.12732482237178272,0.1351959333989851,-0.014095461582826855,-0.0944655316161959,0.061813017764800644,0.028282361599172502,-0.05860048138119875,-0.034640027664516265,0.014216965572023099,-0.005888727927580787,-0.057586852194056265,0.08258998021703022,-0.02117756142136453,0.0981476776753199,0.08912754523172581,0.11131561918838465,-0.014094774744842218,0.10113672179304703,-0.08767743684719075,0.13358680480628973,-0.04795559883477539,0.16678062670386234,0.04720625819663149,0.029033110209484552,0.010267287989214263,-0.017366483123963557,-0.05043176157662063,0.08749535885167724,0.12503339476926997,0.07224846325736513,-0.041223547985006694,0.1525654733056234,0.09040546366196302,0.05045063920680449,0.08954105565791899,-0.09427555566067773,0.07609370726447022,-0.08485562902685669,-0.07452555391235755,-0.01796095898988231,0.10912296546512225,0.1439244800894163,0.05949487350492445,-0.019018974670974,0.09942786279485992,0.10989299048630899,0.02127850664529436,0.036751321035948505,0.038845454562032436,0.007598409855497367,0.07457160739837805,0.07923754403679287,0.01030372331223554,0.08313937264805996,0.08935085023249831,0.0763755998790059,0.08155106862555812,0.12321132965257262,-0.10188925638616733,-0.09929688399394268,-0.0829006875990147,0.09345711940819716,-0.039035626036155555,0.055583505464577555,0.07363858085022092,-0.02911819431856222,0.07132708859526984,0.04502535652942029,0.041112384761172065,0.0018372744672847771,0.06956033161162048,-0.0726720839970314,-0.07703030660646742,-0.101900822049563,-0.11856039441671391,-0.058053328835299456,0.10799426993279884,0.020422288710791662,-0.08936343615406765,0.029804404193125203,0.003267634295293625,0.005014533835523517,-0.05348333155439439,-0.10130197815959059,-0.07308589674903632,-0.11591425630135894,-0.09934452166229094,-0.08093294181243853,-0.07036135358622457,-0.10674339897115498,-0.10496557392644144,-0.042089705434795135,-0.05874721382397528,-0.019087930954860197,0.02361359079043302,-0.07974878892678013,-0.07208885241188069,-0.00435010850543583,0.009532427622866444,-0.0718509158135688,-0.07165319038471965,-0.05185208006294247,-0.034273160180570215,-0.049524618272664474,-0.10542378141400471,-0.11231913527352533,-0.10427569950276572,-0.08497604936106559,0.07005080390132991,0.08925655517822566,0.07215189782505047,0.09314879276570463,0.06567271508423218,-0.0028232876307269133,0.06308835533179097,0.09329459824499618,0.025911503661839405,0.04173367366619952,-0.026675397477652952,-0.03889723120652086,-0.07343125525444417,-0.005824732914580442,-0.01856840603227652,-0.045390349496133645,-0.03417859483763571,-0.01523556334539716,-0.04026681016769327,-0.05985709741821157,-0.06830618511899267,-0.11425396964657374,-0.0941514193191257,-0.04795482672526028,-0.08281001850856949,-0.09104973228729993,-0.1006491443225884,-0.12045047028339126,-0.11325812695904211,-0.11339846613963703,-0.11047019300550369,-0.11074212159679092,-0.12113412555552759,-0.14827230614610534,-0.11004798706121245,-0.12998220096419275,-0.13967443811368857,-0.11907521950627988,-0.12492357399093451,-0.12710501586812953,-0.12158148995705378,-0.11544103228469962,-0.13346830148667246,0.3418910990375121,1.0,0.6046350141936168,0.1258858175928695,0.11006147218868802,0.27463733788236167,0.2618680490884328,0.3200652896122372,0.243027669330114,0.12276493903178169,0.24340298304088043,0.24971108875920134,0.32321598726298617,0.300489941504853,0.2951634686552598,0.3681872696947376,0.24750464075311,0.41033319793570566,-0.04245788108643378,-0.11901273168896968,-0.006031769150799234,0.031516266247397666,0.07737396413522937,-0.10990766428313024,0.07870699597447989,0.22297664739228007,0.20461633406135127,-0.014425396468429507,0.12116438795169426,0.23751002112147265,0.049767877948559844,0.06866869209726484,0.0046827924225538746,0.08096422488925142,0.18865874114795642,0.15114532572349018,0.15423338028175906,0.27671853681545505,0.09773854994459623,0.13437953361152144,0.22113958632240277,0.1344104558721554 +H3K4me2,-0.04119337857641152,-0.07145925601434414,0.08709684907076769,0.057534184927169475,-0.017422368729849286,0.018703503783974347,0.016446139387870342,0.007481678373472877,0.063393898856451,-0.025813962442492885,-0.017076585165920435,0.04822454758657308,-0.03970237873404702,0.08679786544836743,0.01682796766688308,-0.046651531298822047,-0.02883292823823127,-0.0021760596609413574,-0.027420938874288647,0.03373974021065744,-0.06455635234759496,-0.01421521982378021,-0.00560065878626154,0.03142540287297755,0.04465603029592777,-0.0099911150266011,0.05430495596642645,0.11474214392474524,-0.03623628824456695,-0.01929553852153379,0.015593419485783758,0.021237480299937335,0.018350503322501238,-0.05978885700037357,0.0060165187267349745,0.11756427968320615,-0.041043951590110185,0.009574076862866258,-0.016632229440366415,-0.012680813130382823,0.009628016354145345,-0.03072120015834372,0.061625236180165584,0.02624925973294197,-0.03887821533110582,0.003467397528012552,0.027620253564789338,-0.053630920876141665,-0.04652272029068011,-0.02499287101507681,-0.01066393868049772,-0.03690582120386106,0.05312811857086019,-0.02082805525602263,-0.00870109926304527,0.08583998471069412,-0.06282927527277833,0.0075969521102448295,-0.03254443771931864,-0.02787592269327214,-0.0063991620539052595,-0.009183004556306884,-0.008100409685666844,-0.024285936008433446,0.03563257261181327,-0.0440354769230633,-0.0012060513317790071,-0.03219137310639061,-0.04340711880826819,-0.016017450988098435,-0.00016818070364669506,0.0006812594752931175,-0.014693364177608028,0.001032982781765513,-0.020783824735810204,0.011710788719980245,0.010365511784829163,-0.03177980342856944,-0.0101226821993159,-0.021442915971688407,0.05360495952500923,0.002401175547947334,0.041282078721819875,-0.026441733455461598,0.03878157990123801,-0.032606630507760775,-0.08917820994663,-0.039836605934596765,-0.058048284554985265,-0.00667716625219134,-0.04161594897950498,-0.034311776516005595,0.015039281921821437,-0.0028711458011173824,0.009676819936799882,0.02873284972228147,-0.010709938382562699,-0.04543258791589387,0.009506579307767089,0.022387839128197043,-0.0688001889199099,-0.012481080270814713,-0.049247884378859304,-0.05502527233126943,0.044287886727028054,-0.0198119540967882,0.017306301578291102,-0.010999170103399935,-0.0008551552556226779,-0.048764574732777705,0.08696590742446221,-0.037146178305299905,-0.02223689807283639,-0.02396277252367801,-0.0319480555982779,0.07738944686738783,0.0057428153534439,-0.011986371918645362,-0.04742024622320255,0.00634126494989037,-0.034165959788278195,-0.028336662362602204,-0.03882555797946144,0.013870158927652906,0.030558290284398527,-0.005186153588561305,0.037693150289436726,0.04363738050069994,0.06008909477252423,0.07072721770279605,0.07943030131916129,0.0706524574737523,-0.015284018085623482,-0.07957038618376189,-0.0251266758853081,-0.022898854760912458,0.015515375714480766,0.0008194743594428248,0.02428603588883792,-0.014548056144214535,-0.006152495706820886,0.041054939825900603,-0.0006579848683605112,0.046247907836938114,-0.04871995355679028,-0.007441276338748932,-0.04862845876732664,0.0013426058325414518,-0.040894321700604044,0.0021614656760548935,0.006527278975473108,0.041953784477382114,0.054471188419237766,0.02253699339688966,-0.03144622147045762,0.006402737518145216,0.07031286488302399,0.009442530998899407,0.06559516223350297,0.045168483174853086,0.00897194522606485,0.05327669763223195,0.07240791445874362,0.07486845022822318,0.0408574346047775,0.011183349823079744,0.046985464026531205,0.02966330062459133,0.006923881898858336,0.018894924903344778,-0.000663253962880639,-0.02608519336251743,0.0002260588534767537,0.0869204903803147,0.020906586658801924,0.023846550143938484,0.016871025485389858,-0.02717015135122964,-0.037431836194739644,-0.05478590125439457,0.030827389849548303,-0.1222092281750077,-0.05828996729335781,-0.05096704451655459,-0.02542020125289666,-0.04689323274906506,-0.05755549712863355,-0.04361414678879374,-0.046658996096773216,-0.040402817368617415,-0.06003982074317023,-0.043237014248282524,-0.019776492113273574,-0.002725613102137986,0.014035812223738623,-0.03903422305858459,-0.021541273300137588,0.00622275130286555,0.023099467859727888,-0.04420776162037892,-0.024743784671295458,0.013900752380330937,0.02862079554064712,0.006666767238601333,-0.026685494043375963,-0.04591833083331978,-0.017991205453133995,0.033943847149405515,0.023960420606367546,0.014652104813178825,-0.007718033828499119,-0.006340320556521354,-0.05362747864974107,0.0024916428023564596,0.025896990028389803,0.0037498434463872766,0.026378127189791763,0.014502423682114622,0.014634345270173934,-1.8796127796123816e-05,-0.03868640805671677,-0.011320817182831025,0.024798011614046208,0.029760543806287943,0.033981941464476084,0.26629647047013627,0.6046350141936168,1.0,0.10356475383225851,0.1256798853761466,0.16801342706522698,0.17075567832885002,0.21565529298027142,0.1670168356141994,0.16044070899830193,0.1806769639656925,0.16947124892861737,0.19838310411722804,0.22593202729152045,0.20062176914474594,0.21141962704639666,0.1826335527674869,0.2500261716992161,-0.14736065252969527,-0.007083808389448467,0.02279524170601833,0.08253234845584888,0.0719579851769197,0.0022866283085485263,-0.006998988795408938,0.0759642424897005,-0.004156545518852234,0.0400971642729345,-0.01867246873349,0.015928007817418904,0.07939878202515235,0.0431247056181269,0.04942407513438377,0.058628521352808105,0.0981485540594519,0.11134908588478587,0.06351795372142902,0.12793422526069453,0.10150717751356705,0.06183844840149615,0.06439023902718254,0.05238726268152056 +H3K4ac1,-0.013647997245459712,-0.08401754247017691,0.12492126689842678,0.05047556570005352,-0.047795476996276134,0.05030851728461475,0.08254910970527171,0.010281799226386128,0.08518648034258625,-0.04898816009398227,-0.025363454173817718,0.08576946479683194,0.04498855331798747,0.05453989531705662,0.07153584885659346,-0.030969494890895097,-0.06738638569941072,-0.0668573420032783,-0.0708891015524025,0.03436389079187029,-0.0344286573752136,0.0010499970905024913,-0.010215256254564762,0.051329653979908796,0.006303773251393766,-0.01416202024576385,0.0731611960243446,0.0421075079603505,0.0004859978728429488,-0.006172076591378403,-0.05074318622372866,0.023593113475285706,-0.012146525584308236,-0.023667791868357747,0.09087273487021895,0.07514017626393486,-0.04267192058224624,-0.021564564905079037,-0.02382995657354172,0.0195336270541621,-0.07401359775462939,0.00255153373430921,0.08546603465246273,-0.007693529492814036,-0.07572705720348734,-0.04341446131883019,-0.029439844344999782,-0.07306347022010787,-0.04879117536568793,-0.04355818573196602,0.010430796859013495,-0.04905946869160968,0.0608805122294128,-0.04748367081248226,0.045283061727843764,0.116546034511159,-0.02205506219982608,0.03444279995560454,-0.014229026318554888,-0.06415314318594047,0.011599356453339763,-0.048569237045596396,-0.0729140359807959,-0.05394573674879376,0.045515042054161764,-0.01684693943535529,-0.030906319469829698,-0.061187627701431595,-0.008150168244976701,-0.07947195969305278,-0.06738136317376683,-0.07316423238897483,-0.06459237913244859,-0.0801382275082266,-0.08309004646056424,-0.05710207399619078,0.006266059971567437,0.06076306911830518,0.05803817303438051,-0.0057069037491743685,0.10144784485368127,0.040655101602595105,-0.018478189047379426,0.03406361998248904,0.049795543948117436,-0.034792184302447446,-0.06085110080320957,-0.0479041200208352,-0.060727558422760106,-0.03313257130475459,-0.033357750265439176,-0.07764631857419745,0.07326848663757855,-0.07933398912738275,-0.06151612497667098,-0.04562517157574445,-0.008862632190966214,-0.050347777618600084,0.03884365209409682,0.006510958989075398,-0.02683143226920634,0.0034276686700148284,-0.06285569129821215,-0.07906140849534943,0.0033990724685991082,-0.031373854458975836,-0.027775788788109542,-0.09501419094374478,-0.06613650465890407,-0.0769500160872049,0.004192439097723874,-0.03022089743890404,0.06560912551847718,-0.039984055688731625,-0.07844414032706083,-0.04635546801825181,-0.03133778234010276,0.01657901066866884,-0.038979993833231655,-0.028046193997366107,-0.030745393028088267,-0.025181230227162774,-0.02508997100427936,0.028181137456792824,0.013314102046846774,0.010621736393225716,0.10173338455604579,0.017901330149478104,0.02037494365200692,0.015788552187902857,0.023129291355721445,0.01563036741908945,0.05885695271558822,-0.027222413794313227,0.051121935729943044,-0.0787262862485176,0.05626477314504499,0.014152468078012478,-0.006536856746391311,0.058315344774978,-0.012006752339310445,0.015968289362403954,-0.03194090437882041,0.020780068740344066,0.0063161320621337134,0.054498947373317855,0.07566511174590418,0.006296203951625004,-0.013514162774837581,0.04005570150917336,0.0131950513261254,0.04419670571179937,0.04560326040832386,0.05802476903674316,-0.034450708679723,0.006572103715386288,0.03300410184661709,0.03971886755395783,0.044133703164923106,-0.007193109534415665,0.01128422155055744,-0.006186571784167864,0.04718729776337637,0.029129251217706167,0.04247200023664246,-0.017699550541892595,0.11027951152046389,-0.04380265118731309,-0.005588539570358119,0.001485113502669178,0.05023890109297619,0.07532436219439038,0.06278466352527871,-0.004757291351549112,-0.003468552447621875,-0.020009911155892245,-0.050127002145152255,0.02141872665641729,-0.029421009883396194,-0.046265868030968556,-0.014027451351317033,-0.03313412629806754,-0.07779610359996042,-0.0811065737589425,-0.09273121887523951,-0.08249479372610374,-0.07932359994423883,-0.07362352750933797,-0.08552030797086568,-0.08335148249347879,-0.11299509589440344,-0.0656380756298474,0.0396328424205056,0.038751904255159696,0.0569737927177971,0.009930057487467447,0.02416382072992324,0.00982104928394683,0.012787233379215049,0.02148248920071953,0.00993642352666292,0.004323021660097066,-0.010160510599364674,0.014475735326453736,0.013060427689973573,0.018257935881507696,0.018428924537244266,-0.018502973681141077,-0.0021081016816421093,-0.010686256652602713,0.01563441390217434,0.026583568204646326,0.008228156531054987,0.002872132299700101,-0.013506995832854253,0.035628783248893646,0.022739969003160568,0.021810165883713453,0.023868068304474622,0.05501575773392318,0.015127984774787408,-0.012633193317162452,0.00722042489846924,0.016483708999683426,0.016396208926907067,0.13230747093217096,0.1258858175928695,0.10356475383225851,1.0,0.08215002306369198,0.04344609307530094,-0.03708534097899208,-0.10264808226817596,0.12390963886499846,0.2163295681234416,0.2322060396742494,0.17164931052668492,0.13797205835460055,0.1799954735227438,0.008068739627523788,0.17179029949738767,0.19415741221666413,0.1894416552660437,0.006971183755647593,0.008399026087799308,0.04755115063729826,0.145744664587767,0.025301993464948304,-0.03224794688881416,0.04068109934256558,0.0428635167002364,-0.05231471707088509,-0.039289156995545374,-0.012052286622073236,0.02604318402613089,0.017818238904523078,-0.028172480986705415,0.1186603594546991,0.11761396700044724,0.14977939397913992,0.13050164347778884,0.026579812861468526,0.09315955379710064,0.09400293706638244,0.07758076028001738,0.056650405727826536,0.044714480040190116 +H3K9me0K14ac0,0.05092332411548106,-0.017794825550670888,-0.04679462881516987,-0.044777785214544064,0.04519485132507352,-0.020080723617385703,0.0008501395214663124,0.013978193242100357,-0.048031737125587844,0.015234713571833062,0.015230300776928132,-0.016980870435438958,-0.08162844087976319,-0.05112726835533198,-0.0663952577073115,0.036997577115127564,-0.0354762263694039,-0.014440952357919062,0.012635778929455055,0.03107868152031738,0.0497126341496319,-0.00656738943718005,-0.036072760396315906,-0.028356527992571358,-0.011188201580882559,0.04980902910895733,-0.02460061865884022,0.042949386396421894,0.023483265485780364,0.04194834120066562,0.0386124465406335,0.04625688209069197,-0.0050187176611884285,-0.061370287163302555,-0.05785405204497708,0.015570266796128681,-0.02615467608663587,0.05945258562463517,0.0627987366672871,0.022160798420721307,0.017702246547607662,0.010569715959329231,-0.024882344879581735,-0.036611398755835,0.06541347677299086,0.08558157383562243,0.03028112619646722,0.04465883988255624,-0.03997119584226634,0.03166599395312495,-0.05323506886379767,0.014003569831986144,-0.00745811869881557,0.02344211669956127,-0.007682115080817268,-0.10563115304609469,-0.04543497278718713,0.014534274849514648,-0.036807402567827406,0.06180526342023171,-0.010364982276530554,0.06926875538924127,0.061131831895144914,-0.012304152246966337,0.014371849946329026,-0.05223081763516846,0.022139236983025716,0.06230774575407831,0.025622615735849483,0.05421960937726545,0.087293082886705,0.06750491505082164,0.060212428711513596,0.09830029418714477,0.08271439634884639,0.08689412951037143,0.0020552214473412785,-0.06591480244154568,0.01752706778346079,0.06042865528552919,-0.06217062551301551,0.01674481367172702,0.005443350587815461,-0.04522160316392318,-0.033477751733483954,0.025695041928391206,-0.03752662690719836,0.0470112560725097,0.038935828611659305,0.06176412098173865,-0.04888217598741379,0.0789756947264395,-0.04373365633275799,0.03909175442610553,-0.003306260854044033,0.061664348549439134,0.039793721980802346,0.050160419954624724,0.056446333889591575,0.010472790954613512,-0.041342423642887975,0.0009544102991841879,0.05212924852497549,0.04873641874728105,0.003675472701929817,0.025354177182471505,0.04538973679544273,0.052836530554205785,0.12067158484082886,0.08381589194775546,0.02274215989994379,-0.010888588164317009,-0.015948140884828328,0.006287897486872248,0.021718247643301283,0.07226962280003724,0.010492830146069299,-0.016569039348650387,-0.02529945024536223,0.030428445845072337,0.03707635949762315,-0.005709238444429922,0.00723684193281672,0.08512114865294902,-0.00995469466594595,-0.018884581646138494,-0.008387861184139223,-0.07828417188399366,-0.0691390576417389,-0.04730145176461333,-0.01887398419767447,-0.05892313816012087,-0.03384387700653266,0.0041000227597026455,-0.05257138606150229,0.01953910832544854,-0.03944161838004442,0.013338042788821138,0.0672250830530411,0.004778442982861091,0.08879722563001831,0.01681859315456707,0.06995148215507935,0.00027413016877499976,0.0571957134837108,0.0037783916661621323,0.004810235176230477,0.06901903289403669,-0.0286558778232818,0.02594321537474635,-0.03842674176419368,-0.06483287343169114,0.006234021618331731,-0.06689048873621944,-0.0533457546381994,-0.01571724109043024,-0.023391956403924566,0.04340110423214733,-0.04585095399577388,0.026684878976789218,0.01354145722467738,-0.018121673335454655,0.01418740561921939,-0.012846510788302717,-0.04183827201690797,0.02520516761310146,-0.011461062924694322,0.05850360989872305,0.027346389840523275,0.009917520300656985,0.019730529825882262,-0.017803475613769874,-0.016166806976415017,-0.0033838980338205737,0.0205113417487379,0.023540246379639213,-0.007973382393414807,-0.0779177279750554,-0.027776313869891787,-0.027103267261092277,-0.020527502056975244,-0.027538383236353416,0.01828410733257004,0.06065905896851039,0.034666406851217926,0.04204002556245597,0.03436723289957816,0.02238488102149216,0.06494188177297933,0.07440855282162531,-2.736491408577921e-05,0.08196157017027411,-0.14193369096257358,-0.10030695429540294,-0.05946156770024643,-0.12873210989851355,-0.1091129101858304,-0.07759066366874834,-0.041932004805350274,-0.11258865045805831,-0.10336269521102852,-0.0703452846943233,-0.044150010462302554,-0.08033223571847475,-0.1113377885160557,-0.1066975212560857,-0.09376353185333025,-0.05195745688504022,-0.021065680540589105,-0.05565934429308297,-0.06968579681624028,-0.09152399400308131,-0.08387435098507974,-0.0698552815053789,-0.059057014948095475,-0.03157805490380891,-0.04091951441401961,-0.0657468244678431,-0.0755946553154738,-0.09337991195830027,-0.08202179365654269,-0.06423991143459087,-0.01997357971365292,-0.019207752189720918,-0.05294099240430394,0.3090947000489273,0.11006147218868802,0.1256798853761466,0.08215002306369198,1.0,0.5426534855563755,-0.02001827323957872,0.09474107979603222,0.4833271159849297,0.47369555743835334,0.1647852020100759,-0.24403486112058628,-0.35138494523421737,0.2683505002894462,0.40949231618638354,0.12775825595368684,0.2140848665223913,0.1108000594875922,0.14991085415500785,0.32540068665843175,0.1842732319545369,0.060739054609605096,0.1841437827649141,0.35870134482571775,0.14706530983275085,-0.004797536258830582,0.11173908122084719,0.1974786471372208,0.10113103187192328,-0.04677566961836399,0.15103597216402323,0.12318898469412005,0.19852821878742075,0.11039833858953221,0.06831844970705678,0.08999523550616698,0.22799248923324794,0.29067060020993896,0.1095808175096614,0.21726661587295434,0.023550115013400957,0.04988542444295457 +H3K9me1K14ac0,0.008835506676204644,-0.053067902200615,-0.09067031513050919,-0.06486660145155031,0.04286471094241431,-0.04622319752446889,-0.008690381119424212,0.022233120039563136,-0.11676837388016677,0.05656928696732477,0.009497484255889276,-0.09309050576170759,-0.09902241815218354,-0.0988042794240683,-0.12230781869898341,-0.031020623730278488,-0.032922852677277264,0.017238869568927628,0.12626414149587736,-0.008836812905789729,0.0534884246757328,0.022393507435116092,-0.015580974863117011,-0.09451248857262304,-0.08061546303957982,0.09846084982475634,-0.016827740354250803,0.007806396747835831,-0.0009471724375842575,-0.021010868103186663,0.14876463222763633,0.01960765515528405,-0.055522934518006925,0.005110043002931547,-0.08256520601387612,-0.024340605076741455,-0.1095859037152131,0.011858556355574349,0.123657088759387,0.09180426579943099,0.06458752409003866,0.024918483893910503,-0.10193475514282306,-0.0348291364781782,0.1376614996655862,0.07036077593717203,0.0281397646927713,0.15445844104503778,-0.010156457685355419,0.06498481379353555,0.02252728347601125,0.0651524555109568,-0.008254771309614679,-0.05385046100084115,-0.10473939267082852,-0.07474923198309885,0.01635655786542366,-0.1120330254751753,-0.011548287523382775,0.05771303036554751,0.09270238055846484,0.07068547226970257,0.12497100531644628,0.0646929765806391,-0.014662579923492534,-0.01999523744027469,0.09033618184548868,0.13750807083863295,0.08594507157059939,0.116081331981685,0.11249748183570206,0.12618027382508543,0.09841347978718624,0.11965298865345436,0.12604807733596954,0.12021592260213286,-0.026899669341938187,-0.050060892694356735,0.09054189725029523,0.07094750537383716,-0.07874501720678312,0.006770506583355124,-0.015357409592681295,-0.01514548788337618,-0.10653096541709667,0.09841216815023562,-0.09565214659941015,0.09715013946996308,0.08094461730855614,0.12144913455097842,-0.01980643426293091,0.14567238511968955,-0.11844223290089198,0.14481238654271064,-0.04600345840541701,0.1213739230093996,0.061322891790576754,0.1253272241289022,0.055032864832807955,0.022993145846853764,-0.05740155395303273,0.03340021661798186,0.1029981142835039,0.0935398181742456,-0.03599000746401991,0.11532297126662192,0.007670550278397888,0.087992854133714,0.13451848296702168,-0.017500460434555255,-0.01936261711466406,-0.03914499747355483,-0.0853389719039557,-0.024309985219588368,0.07302616849269027,0.0815351165148192,0.03179248755694254,-0.043411874000275553,0.08469620248399007,0.07668231620508963,4.387138035445849e-05,-0.009860676999132938,0.008035751979335252,0.014928121302900764,0.021111585641581665,0.01210253100573337,-0.03696814696941117,-0.08574758430492292,-0.07390447566116706,-0.02548280342881493,0.005500123373864975,-0.017828521949561568,-0.07726456632363557,-0.04010114697995663,-0.049044536222650134,0.11389114644252687,-0.06346091078674848,-0.0007009071278209938,0.1039976804323713,-0.022372159710831785,0.13163181974308258,0.05285670375141829,0.10268009101242168,0.02926791313908703,0.10669273574839601,-0.04004486836290302,-0.07207164444643636,-0.0029030151731339418,-0.02490830214493372,-0.019124590839513667,-0.0357627887357087,-0.09711386798576031,-0.11378051777795538,-0.08657989302039851,-0.059118960480931036,-0.04529913962385716,-0.0654326680511779,-0.03385695393443316,-0.03694148635446376,-0.01774802286695758,-0.039103631632528786,-0.041667651701699,-0.0077301138816428805,-0.03383821502482814,-0.06732898557910763,-0.014989880920563536,-0.053787560282401434,0.02795436425294757,0.011536391682441659,-0.022037260134070796,-0.02071901155466064,-0.06354171660398966,-0.0612702259308299,-0.020913056643427748,-0.02082705687814301,-0.032767106744414756,-0.019176343608090732,-0.06858157078295064,-0.13054689994545363,-0.09041253719518613,-0.09805632059746876,-0.04443128157631728,0.0985789440783956,0.13581587022342667,0.09702769158401058,0.12317650442496617,0.10969761084356196,0.06316507544455398,0.10899800139269311,0.14031056646538653,0.07050600577670543,0.1023013162995452,-0.10709266523060655,-0.11812496127695539,-0.10617551519052984,-0.07178109502333867,-0.09240764129038992,-0.1103326896415523,-0.08690858215909454,-0.08311841014860671,-0.09982989442913268,-0.09906775174453761,-0.084138806070024,-0.08408662389954881,-0.09754051516994663,-0.07889641880320744,-0.10187032221970642,-0.07918418860768667,-0.030370997778250183,-0.06306903250386042,-0.07413823527389701,-0.07183365968069265,-0.060178152217712715,-0.07438427856620743,-0.07585076994937685,-0.059981089871253015,-0.06052900026738226,-0.060134161279991064,-0.07851287798407455,-0.08781236643463929,-0.06876946420555356,-0.07228526540879529,-0.020387500718639224,-0.009687548779629986,-0.06733049920576348,0.4567856136144319,0.27463733788236167,0.16801342706522698,0.04344609307530094,0.5426534855563755,1.0,0.45087357760722013,0.25641824607719577,0.23262163091147722,0.12085732297662838,0.1943577989205975,0.04435690265720107,-0.0869861042678498,0.006840406710618603,0.5915699069198751,0.17761099290122484,0.1231528576882539,0.018337809932792673,0.07768017266558827,0.038426992231272154,0.0333142540430424,-0.01564526721311669,0.12161371524509172,0.12900626160287174,0.11847887405463646,0.0682034758824116,0.24858830139997853,0.16033918303105996,0.22315823480083655,0.14251168920084306,0.1551447223567073,0.1945581286554563,-0.007872335659328943,-0.06059688651667321,-0.05730084391098592,0.012211676889196901,0.21704921870255503,0.39673021854524626,0.16172906754033284,0.26191170041720796,0.20024377135452542,0.1694628797039523 +H3K9me2K14ac0,-0.004897430326168107,-0.06487460053389535,-0.04087715834200786,0.0010366491205641905,-0.03414224974015483,-0.0038225894953111267,-0.0017544893025874344,0.014381853817129623,-0.11174427783467111,-0.002611824928356469,-0.029482197525517534,-0.12145758422919736,0.02724011959409703,-0.0396532154261994,-0.07110464384026956,-0.0674063953024224,-0.02624591921931332,0.042523396766502256,0.12211032213057525,-0.0718509949226782,-0.02194123740338353,-0.02124982269476691,-0.059135926491607725,-0.13354715022063327,-0.009660680823925469,0.06358989931975487,0.021295384823692354,0.058685808353945164,-0.03258738366796407,-0.05389000524856934,0.10999904731985327,-0.05681438228730247,-0.0703629172855793,-0.016152028193228453,0.00227638182724728,-0.029132739860813228,-0.08574536427474426,-0.03029464757261145,0.06393386728537671,0.04529616886740002,0.05716997340365983,0.009216652331207578,-0.12057567075937486,-0.04077276412651499,0.03920860958120497,-0.012258144952487652,-0.011240245286719568,0.07592183078242572,0.020616968270256688,0.05515885411073968,0.03804975772338456,0.014366442098901465,-0.01563487390555632,-0.017281116217116033,-0.046897468326853105,-0.039199967818174475,0.10149960836350241,-0.0825306686041416,-6.496027835711824e-05,0.004084809979323544,0.11549704078183344,0.0757942501850213,0.08445382170829965,0.061980192855717674,0.06108102857723226,-0.051623039160228014,0.14248706346101558,0.07856490951538901,0.024150857146577463,0.11519223684926336,0.10015235294846574,0.08948621834564936,0.06896800616032553,0.08029775931681891,0.07678608212798886,0.08608151824209621,-0.0703068191261004,-0.05835910781530907,0.02581823524029976,0.03190599395730848,-0.0855210000814705,0.02131911505992717,0.028492112667241373,-0.06353842686430762,-0.013736243309110725,0.0621024723199225,-0.0259963251605749,0.032559337167351265,0.02688686909640254,0.06548821550164079,-0.007458417629323501,0.0551332908327092,-0.08666786495037214,0.10192162453698515,0.012208569877095682,0.09299309838823645,0.0769730570135547,0.043552564202269585,0.04059345884321066,-0.04085300273188542,0.011063815473103747,0.00015050570215472588,0.04875633994378626,0.07389808806437022,0.027819028869765925,0.13602003982991606,0.037813736640961514,0.09843221730751585,0.022178203733151245,-0.07305902646130656,-0.0010456995242294877,-0.020058923797043944,-0.015034961598709588,-0.04655634848614494,0.08043189176576822,0.10630999104951508,-0.020561757431684143,0.0008071132159723592,0.07550050507551402,0.02254911969975563,-0.05311548883545445,-0.025481300273937146,-0.03471279887557916,-0.07086944945653804,0.029356062420125062,-0.03999268682198307,-0.021615894361342685,-0.03074140701779017,-0.04099229332699068,-0.02415588832824572,0.006113806984793847,0.010962415108980012,-0.020964757423058127,-0.043098495616578976,-0.07717112513894518,0.10344434898529278,-0.01295393215358712,-0.010316357825917428,0.047713089863208304,-0.006843740402786977,0.05216791992180188,0.06404523492303832,0.04363280018279176,0.04769779068852685,0.06312604658206819,-0.07093473297362687,-0.0872731776666169,-0.06932497965490908,0.07002020681051753,0.027040653483168146,-0.11463707537871294,-0.11385364134058183,-0.10307542961277012,-0.0758148810852882,-0.06608713039678576,-0.11150790006861083,-0.05128074059331795,-0.0188131061391322,0.017866122809896808,-0.01900050370142759,-0.061347863787254715,0.0018400840017880383,0.025559226976382333,0.032285120553905054,0.03157278281866767,-0.04157610197359683,0.019447453069606054,-0.0399360743732426,-0.028890053696614428,-0.014869156509100959,-0.04392762397853977,-0.022599689313922925,0.013853240838671545,-0.025534552365591587,-0.032915182638988835,0.0022600900474170275,0.020130918397920642,-0.01905607101152619,-0.11023072866951748,-0.06789138552852522,-0.05081575482736521,-0.018257026635036935,0.046920711081154434,0.04243562364864348,0.0509960189391483,0.06150184649381768,0.032728298285266945,0.017846184348140053,0.07226325225744971,0.07155154796739716,0.06966120794801933,0.0684352500591353,-0.079151028408919,-0.11042758058832369,-0.08093775607812115,-0.06821231128694596,-0.09177771376871803,-0.10326101380884146,-0.06583753425198416,-0.08408275399752155,-0.09239988471522498,-0.08026779747721223,-0.047762978770399776,-0.023196965678614376,-0.03658495034857206,-0.06259550906824901,-0.07719218796323883,-0.058865816006611185,-0.04512511881305431,-0.009098819910164282,0.01208004876852611,-0.022084188961587887,-0.031911605275656396,-0.04035661846517663,-0.03556496669247455,-0.042877720570475876,-0.0006423591507987004,0.022999298275261423,-0.0073445579007228165,-0.020553984112084586,-0.03248045557925604,-0.05898066367782606,0.022385305189779915,0.013548464273010269,0.007472482978644297,0.36363741929420845,0.2618680490884328,0.17075567832885002,-0.03708534097899208,-0.02001827323957872,0.45087357760722013,1.0,0.45960839614754023,-0.10205420551748692,-0.30656783852908887,-0.0213341788531426,0.29056606042947825,0.3180296346208105,-0.230361119261623,0.5599541260412946,0.1256447976795372,-0.004002938275604346,-0.06037189466687129,0.02026581279015856,-0.08535988346616977,0.005692696367364093,0.004692568260312191,0.049221168505894884,0.0034192425092514005,0.07647287191314796,0.090277608727707,0.2426892510151191,0.09286924947506066,0.1685240034202462,0.20716990718569808,0.051645072787636595,0.10437065646017173,-0.07925357163958831,-0.09891409719159737,-0.06450727770042892,-0.04913161628365551,0.08930360170808513,0.37136241669848963,0.07740644804766274,0.22281764469140533,0.23221299822049885,0.1575923812053402 +H3K9me3K14ac0,-0.026113350109523734,0.09079799567796779,-0.059713578611187645,-0.042039591277837136,0.09369054599559862,-0.10639807980085456,-0.08206548622566037,0.02415719802017934,-0.23410393190351952,0.05987149137528328,0.0703293245125557,-0.2005790648452611,-0.058946512886537676,-0.16419655686925097,-0.15935372442119147,0.0763696917215116,0.017578100877138035,0.08735760504151743,0.21548469112838042,-0.09049796356977832,0.0016739887585743214,0.018570025793736924,-0.016468283844294607,-0.19434576601412315,-0.016087733513006196,0.19092677946470968,-0.044202861843401886,-0.00012057373838731425,0.0018900729708601963,0.0653067326828549,0.2367610814989559,-0.056867146283091606,0.04359204954672074,0.01584303206084694,-0.13327142567417802,-0.04932320517971287,0.039567758453915296,0.08761625064832201,0.19142813424234928,0.0723185203991794,0.13202000573568612,-0.006566027582715245,-0.21828065577738306,0.03779393335986301,0.1823126857387258,0.1453373230636066,-0.002583264014470668,0.20078628867376777,0.007533737526412354,0.12567135603473537,0.05654502226227332,0.07477184398500501,-0.09622386388957854,0.0415025643127868,-0.14252582892059304,-0.06378365097577732,0.022037022685725785,-0.04034950906988924,-0.024515904781772374,0.023138489215984413,0.042911572731035394,0.08400135940951295,0.18606665108079468,0.057337445165558505,-0.006645990916772088,-0.032087787608241006,0.09869429416870422,0.18960844180593242,0.1114420482125712,0.19816734030460775,0.1537778844186295,0.19364842807923902,0.15248666590928864,0.16731570844866228,0.15042656357085962,0.15620086586853763,-0.00301467227874522,-0.055417175008288605,0.11375750468830603,0.12325363095587753,-0.09608557041902295,-0.014842674495662131,0.013996721182494029,-0.09634393321443856,-0.11664874868176459,0.15062295734330491,-0.015043591897178693,0.16912024876136697,0.1768887594286781,0.17981200954197854,0.06922525004469866,0.19575884552238512,-0.17559596036917233,0.19988814335833133,0.07953101521897106,0.1381689808944892,0.07733587160265004,0.09195351921584469,0.050329510830521604,0.06833618569158022,-0.02970917065291739,0.016235185813753,0.16757672107062174,0.16333222123829938,-0.08924513101295324,0.19649873524216427,0.07906127450951207,0.11601951060422114,0.15912115364406684,-0.06626698538626646,-0.08866975037480096,-0.07406003031402296,-0.0971436040184169,-0.04244745013219003,0.1475638958415688,0.2336885558086425,0.03883269628091546,-0.06782412185452145,0.1619719010847051,0.07886676638880101,0.040182043281307624,0.02272449669516716,0.03021763947222407,-0.03342042289029343,0.017147784809783184,-0.02997402674972334,-0.04397970909831151,-0.08284912463952511,-0.11457668852516989,-0.11078387960090474,-0.031148581700494532,-0.04085101702069879,-0.10537664482452666,-0.06443588051578956,-0.032411816126362035,0.16143897541150262,-0.07061329138230378,-0.03895366649009118,0.05299882595272972,-0.02296343482807354,0.12044121160274981,0.04524162747522071,0.09295302073224367,0.008491321273722922,0.10261738375478663,-0.12952073795935826,-0.14897199641483613,-0.09807586187768162,-0.053825102049731545,-0.05841059634947612,-0.07986474982889188,-0.13947240025101973,-0.15708880821361204,-0.11401712100648254,-0.03447707730072946,-0.0791394855413651,-0.10262313442590754,-0.07476285602676962,-0.08243669268422842,0.009380311569060424,-0.02509356194555941,-0.04085847938443985,-0.05360058508417184,-0.05666605255954943,-0.07264251811198973,-0.007242205396407207,-0.08661951270805816,0.058489050494694717,0.09144239933838258,-0.045647115738917284,-0.13734820151985094,-0.045566520997837,-0.03555152348166981,-0.038401352248132986,-0.027069209153753677,0.05984379094793357,0.05232299894131383,-0.125864989002696,-0.11197202270059016,-0.08670937769076566,-0.10076596799430691,0.05504125899003076,0.21007663524025455,0.22088393790757094,0.19014596862556085,0.2136145899809469,0.19264621791363484,0.10789744604983614,0.22194642586151092,0.21621040759659257,0.18611438028192512,0.1969858665997206,-0.16561614375212028,-0.18384774891698696,-0.14615775586701119,-0.13764082108707482,-0.1630397661734626,-0.1556046847936405,-0.11283450150050123,-0.15742302925976015,-0.1422367883142494,-0.12410999211513771,-0.10254338230902366,-0.153421751467786,-0.14339187085479535,-0.10695845180225674,-0.12222444379707767,-0.10810299223464563,-0.12577819404918428,-0.12018127201901116,-0.11355656520753561,-0.12577490050445778,-0.08054409000664438,-0.10720733728598236,-0.09949642227061804,-0.13004771324123246,-0.08877814023090318,-0.10954163485602193,-0.13367897647197285,-0.14708114018831975,-0.08530117966170597,-0.11864185000915495,-0.08038046612712232,-0.06574484591105319,-0.10733635431652523,0.29073102027372505,0.3200652896122372,0.21565529298027142,-0.10264808226817596,0.09474107979603222,0.25641824607719577,0.45960839614754023,1.0,-0.033090919399072986,-0.28711755373012376,-0.2562054862698218,-0.07647122026195852,0.3054906741164833,-0.15641480448685613,0.5128933990867794,0.057598117455699545,-0.07628461950847137,-0.05096044641486121,-0.004973150141260396,0.11130617073409883,-0.02444524450776538,-0.0669517171098227,0.09546794550216611,0.18878763419171077,-0.014637381165669972,0.023786036715543947,0.24669818245376487,0.04034630659676832,0.05656081221204663,0.13118275115588898,-0.03330390137345483,0.06460969179467956,-0.1363886197016454,-0.10416769878199941,-0.051885428682294274,-0.0004355288014468453,0.2245222617577581,0.33596924009340023,0.06507965267659845,0.20847067192283125,0.2011307127225436,0.13195815965919022 +H3K9ac1K14ac0,0.11530413339057893,0.03409062225278605,0.0024683217376542266,-0.04788891947400402,0.07102024768957883,-0.04945504608820275,-0.06538624745017023,0.06945566049575234,-0.012665722870086884,0.05275432438952396,0.04717995297612817,-0.0187362209076349,0.00326829712093261,0.06407505343781586,-0.04018908187419461,0.057712814555991684,0.0007409523373088944,0.032359557088046886,0.026235124575232183,0.06445412829104258,0.03245778543249245,0.05753918271067234,0.05623259931186337,0.021267574896685234,0.11495361907604082,0.05406167267155151,-0.05095975077267406,0.07439035762607511,-0.027618385977758775,0.09981841572631833,0.06002840755471159,0.08059649940408471,0.05768521156036227,-0.004937627585569254,-0.1078282190761907,0.12866125476234244,-0.0022901975504771603,0.1029469645480637,0.05355354719609116,0.04063589299689323,0.035406564732925506,-0.017573302389803064,-0.015386921378290187,0.0412295642986172,0.009448510342118096,0.021359916628654278,0.02889546551475884,0.05637848926850888,-0.0023913973473098826,0.015066731532207403,0.009411803912104602,0.06540065261659046,-0.07548889250134624,0.033009876722672755,-0.08578624968698732,0.03900320103953643,-0.04859912142018392,0.07109466773076296,-0.02805402160755836,0.10040257755739192,-0.019013999519851253,0.10237661966314868,0.07549725011507542,-0.05513327047687151,0.012912142725441611,-0.10464366492294135,0.045082251117373136,0.05168461833659106,-0.03127648060656184,0.09410100312585556,0.11422535497427817,0.07560594422304057,0.06399304167726347,0.11914658622342167,0.10490922951448851,0.09069985995380145,0.06582292247205526,-0.11737873574170114,-0.014083430795551997,0.005127635927001687,0.00888944245485033,-0.06618719950554795,-0.0334507184526988,-0.02176157033067553,-0.08739089394364473,0.008353313568279768,0.025534264918935852,0.03796669251356043,0.0658661180911205,0.028655451947137405,-0.06254773607860224,0.06442895514684378,-0.012440351146366681,0.030515951365878497,0.03870497811586868,0.12325754389813376,0.05176739864902789,0.025794979480391597,-0.06512233557341435,-0.046908035594257186,-0.03668420920671489,0.05957917300355679,0.04832096900652447,0.04294969885558675,-0.09978048883546112,0.02980120609841789,0.0651341492296704,0.08552213159997979,0.05201095349555982,0.17192954179566264,0.15520008718134512,-0.016329727515282062,-0.06016631895759089,0.03832827611351291,0.09708998074518943,0.0718091033038161,0.0793177716471312,0.012858711405082721,0.022533574997065646,0.09844233600561109,0.054239179958018746,0.07631141299186026,0.05360784995983644,0.05185883780241388,0.05660292200742487,-0.015509888926674553,-0.061062974999894194,-0.024965737844715345,-0.031755866017745826,-0.04266572857444854,-0.02008423066653139,-0.02111326406702834,-0.100590875959817,0.012773660100903987,0.05189471068926675,0.002496126199931386,-0.043200475769411474,0.013940264668150725,0.057022395583217984,-0.06483586999308272,0.06508995502383405,-0.005709420581415638,0.03846141925869429,-0.00978523500408542,-0.015208428326633931,0.009824034317174442,0.01970354069868617,0.05242846090206317,-0.10677280767927497,-0.053713825106710335,0.09762782540005514,0.04412760364195743,0.04754833684118631,-0.0007486516403725015,0.018376523450260786,0.04050819930135303,-0.03495631873920362,-0.10033940899382732,-0.15170777128283697,-0.08306891865345062,-0.021578407991759595,-0.041319728267502534,-0.11818430333830109,-0.15160687756419947,-0.13674966832459745,0.006496274409512328,-0.11739960431532563,0.016245537658450028,0.06366517123564941,-0.07247236438421255,-0.009790946256468237,0.020100804975945387,-0.03777283684359366,-0.07309735404290045,-0.023040443186654713,-0.060989227134496275,-0.04890021138157036,-0.07044755993589888,0.03828737452581872,-0.02416000646577371,-0.017214203864686767,0.023533165377887452,0.05207803223795008,0.055117152643218405,0.039978404291144784,0.03938917764113798,0.054441481605431954,0.02089895532936351,0.03713659982515698,0.05689622394660443,-0.0025027948781745947,0.01729252506393827,-0.05649329661900701,-0.01412840009782633,-0.02878699767001957,-0.014604582211589239,-0.006842159728917139,-0.005987448046846666,-0.0022980780995669596,-0.022182468672742414,-0.019324051349596298,-0.0179933579966651,-0.021567435916903976,-0.1262781437760156,-0.08336774962866068,-0.04978458902894226,-0.05167815089332288,-0.05213786996239603,-0.10603495960834172,-0.14839964113405793,-0.11910379416754213,-0.1087253189202519,-0.08998123404582307,-0.08407229954892752,-0.07042163943689395,-0.15472153642637895,-0.16049779594342276,-0.15307275793576472,-0.15163421222913023,-0.11688683149781566,-0.10018061755183205,-0.07766204816393053,-0.1584135197146285,-0.14117245817197316,-0.1550543670680304,0.18735483829172564,0.243027669330114,0.1670168356141994,0.12390963886499846,0.4833271159849297,0.23262163091147722,-0.10205420551748692,-0.033090919399072986,1.0,0.4442031515043749,0.30409773467312645,0.037138839221124695,-0.07415545979667691,0.80256460984488,0.09817541030011957,0.26740825683994435,0.40481858611753724,0.410947828816929,0.0640107475464793,0.12364028215027024,0.06397760569560065,0.0335597786184531,0.12436490437956148,0.1416757146665447,0.11969542760837663,0.10204636402443666,0.09992110281356151,0.11304795404200128,0.14212626410508097,0.061136239600063064,0.18894848175379206,0.1368620808915926,0.16567138271115706,0.22371305048415996,0.2568708864792129,0.16622533729672795,0.07686685512157018,0.1706808609397862,0.13808975167447524,0.08867226601559582,0.1015775550113353,0.049684280647944744 +H3K9me0K14ac1,0.008429170491233692,-0.03603496060038301,0.09368973114677409,0.013348839290885936,-0.041497072599009255,0.05173026309298754,0.05197755371190712,-0.013339624664442603,0.19153727074696503,-0.028327176071655243,-0.029856129294420063,0.16110802994846163,0.05714880828924434,0.11003353807528397,0.08858829355263621,0.010304833643898953,-0.06372972047459889,-0.09555153763564081,-0.17214606870757465,0.11944298734020793,-0.026290635522210677,-0.011308802537684143,0.023804304908649192,0.16712700545622142,0.05683166488647789,-0.10887218203362976,0.04715720673155463,0.0643845650507016,-0.014527192511502855,-0.001144458536211039,-0.10126174537389009,0.10193798899260362,0.019818058982133117,-0.039588497003592134,0.09175373407916644,0.15547096969713797,0.020652322759735327,0.0004517426856426703,-0.11153040792534939,-0.06599478338061775,-0.05686944877415786,-0.030044001622119364,0.19934663053911134,0.005295792233173629,-0.10503347510925272,-0.043035831013581036,-0.0008738859363936752,-0.13189747412963207,-0.05294555040253165,-0.08541750122263228,-0.05110933531723669,-0.018600308328714205,0.0773114050847682,0.0034900034534449064,0.11559436622816308,0.04466953652495476,-0.06724100417929828,0.05858585009042197,0.023867995885646975,0.013404868931187551,-0.058685528890433686,-0.006702082309084985,-0.12619467619916364,-0.10611720938234731,-0.011993432270641575,-0.023180554887903982,-0.06801183176142721,-0.13039011158572447,-0.10323534368653603,-0.13607359579563727,-0.06514355542397506,-0.12059150888035793,-0.10185415937867973,-0.06651692206341268,-0.07586809480584213,-0.06339366569990562,0.05516896787201951,0.004976887938438558,-0.08473308694830878,-0.0595757626164167,0.06667483728605296,0.009606830474913288,0.04073961787664257,0.04092444768679741,0.09654876543608307,-0.15543720013458628,-0.0381856442923755,-0.11142201344425316,-0.1124939184661773,-0.13149491474391697,-0.11260592879978677,-0.13988320762173653,0.11731300994720421,-0.15349980170769137,-0.10752483728654469,-0.06501154785038037,-0.03607311870689282,-0.024211246397874243,-0.012780878373733939,-0.03269932195896245,0.018653127001839458,-0.0033455964386426462,-0.11481945256986385,-0.12478611382449026,0.07997650526415077,-0.15310060382323054,-0.03748606348142473,-0.11568208622099108,-0.05750625691218786,0.07037419457977093,0.07301145037001595,0.040404970630696944,0.06593159472992952,-0.016853270418421953,-0.14081175758493372,-0.16257511923925047,-0.015244523127304193,0.06930107826561151,-0.13794703122188068,-0.09614559374524469,-0.012713497394946314,-0.06728500611292292,-0.026522902989233568,0.0865480490843634,0.010741021672976215,-0.0022002724081307185,0.048533259454126065,0.006894482273659167,0.03153019849291743,0.048660879127971894,0.015981621010778636,-0.020545692110051153,0.09045411581187707,0.023724259362131576,-0.0032631998545276514,-0.14162549750633394,0.04943651520034092,0.07350967458651603,0.05092510373477722,0.053832982387918456,-0.01294202735151172,0.021416101889547533,0.0027004862031960873,0.04288672881311223,-0.05883351528299114,0.10410561033028419,0.10709530150138775,0.14275257339057848,0.011027580066914382,0.0485164004526607,0.10426631022491649,0.14921071210526712,0.14004131850960347,0.08383979309317649,0.015170250096813168,0.08743748522241096,0.12349329392548244,0.07541431979060914,0.03898688892741653,-0.0073735727742310605,0.031954336391597594,0.06203822157977001,0.06042197756231891,0.024361827763378852,0.026692857195372687,0.039243117977609016,0.07334181200983766,0.007020982383799903,-0.033481532572644725,0.041113308844016726,0.0837359950376318,0.093624661633167,0.05065886037167102,0.03372661326874047,0.017164790914823074,-0.025281710237047856,-0.05669895278637408,0.07899165456012341,0.1147201223085613,0.018179412047161333,0.11386084024770454,-0.0599496057151967,-0.1449651231663236,-0.12267369584886784,-0.13711337144576138,-0.14907700891862435,-0.15003446851872285,-0.07955086976220864,-0.1406600956533294,-0.13601337492375928,-0.1648061864226996,-0.10682401001605334,0.04855247600583249,0.11929450131867798,0.10108901740853521,-0.005144429962221908,0.08707556477496832,0.11123995376076051,0.10251468316139696,0.046396196877903396,0.07383278599797521,0.09230591176210591,0.08636557638899747,0.033266153524323126,0.015569128068945032,0.011203821688172157,0.04730851427865225,0.06294818527051489,0.0608507451571424,0.03405892350803094,-0.022009256389389085,-0.012036500865450725,-0.03890334711096651,0.024800212329942044,0.029041335845332163,0.03753546515519383,0.008329444286561433,-0.009394883133461865,-0.00013547046127838347,-0.012691721523405065,-0.033661278275169536,0.027445889121529215,-0.0026216366797183572,-0.010677997306802993,-0.0027346116533804787,0.3154322050173323,0.12276493903178169,0.16044070899830193,0.2163295681234416,0.47369555743835334,0.12085732297662838,-0.30656783852908887,-0.28711755373012376,0.4442031515043749,1.0,0.7676908350276711,0.3560763576987672,0.13382587964760173,0.6612366459634907,0.07569174836090625,0.3709972662259637,0.6083279084247026,0.5505278629968988,0.05825691120642166,0.22008515119631164,0.1565340550429232,0.10213134793991292,0.11607262204230745,0.16843844891250048,0.16661086797315725,0.06316934070200714,0.0216734391829618,0.1559713845867616,0.11487456497303115,-0.026766173049895526,0.1880331377537623,0.10543665382837421,0.38371948669637423,0.31199416315879747,0.2604360699338654,0.19662694007381623,0.042551134313833255,0.17597847823721935,0.05226299955010035,0.1287591020401773,-0.03798694855303191,-0.03784384004448748 +H3K9me1K14ac1,-0.015076697579731763,-0.07446555266026951,0.10596411649471821,0.022194793219906698,-0.0800589227026287,0.07873349359533417,0.04218602824490902,-0.020946128017578596,0.21270723838181446,-0.026966686528921598,-0.0659946836678141,0.16911710956707574,0.12460779832422754,0.1439473548287898,0.10368791245625762,-0.03516725513467289,-0.056225375677781436,-0.06760017607864911,-0.15581432370993595,0.10514039159664634,-0.06765642166553047,0.003992828126732135,0.04327130583488771,0.1725123836918755,0.03431381545548211,-0.13957529697687443,0.06595919381533377,0.07601715256059577,-0.07630210082790839,-0.055583896887090804,-0.08890602243776952,0.08132371843442777,0.0020477881490010485,0.009402578061200503,0.09597797338472955,0.1561467669290195,-0.03197315334666964,-0.023808514786636408,-0.14224333875113088,-0.05535895166780069,-0.04413691050045714,-0.02535673130974326,0.20436314490493215,0.007527544476061634,-0.11833394132049954,-0.10558490998502504,0.013055116309081257,-0.1198053278422088,-0.013432029835737434,-0.11035908432079825,-0.023341642353133775,0.026882093610128596,0.07032579719571669,-0.05481078439631784,0.09029602664993,0.05500804627916845,-0.014075902305050108,-0.012662034836583205,0.07349729331228609,0.008371338104484443,-0.006157272242298346,0.006517711969425014,-0.12756216748360183,-0.07254694684228499,-0.0020370708172453545,-0.025315595417659438,-0.026315859559555153,-0.13932717673697162,-0.1378942225275714,-0.12665361049548662,-0.06279917331744334,-0.12105867694750873,-0.1057048306226476,-0.0763838549969339,-0.0760299478399062,-0.06825061222549586,0.043378919620088635,0.006389529376891242,-0.10588779564585776,-0.1025345891491548,0.08167912019304681,-0.031255287078037916,-0.0070057688962871425,0.08958678062763076,0.0713787678258404,-0.15341345535155979,-0.034590725699105165,-0.12456446010022382,-0.12411912099010314,-0.14970769670598802,-0.142037122859973,-0.16245220896511742,0.14097011146222474,-0.15828016307827344,-0.15549246346707404,-0.046019724670552785,-0.010800832200056036,-0.007521250764070066,-0.028893757704959125,-0.08167516568626286,0.009983138560133619,0.036810050552446426,-0.12048372727067413,-0.1479881490539203,0.08250402069136832,-0.12829022846022498,-0.05805825354418298,-0.1194572087984128,-0.095932521406358,0.008030297144600908,0.09266987558986661,0.04849198617546377,0.037563234943993655,-0.05412323503169817,-0.12889825329575466,-0.22667421636343865,0.014903317419188095,0.09497537960570852,-0.08992364354145142,-0.07109266205044328,-0.001989834949938042,-0.05767444811493911,-0.005330842726696967,0.06781361195340452,0.039929296820528024,0.031973013350748744,0.0475947405833443,0.043395229657837306,0.06493444133526871,0.08674277825084291,0.03682572635228077,0.01891633136642174,0.09112327080948539,0.030142055361262656,0.004570678568632502,-0.1434188750154816,0.06455236857242566,0.08290577295356999,0.04639026065231729,0.05281435334410547,-0.022009398058401724,0.01443490423969104,-0.012380231806931527,0.04009756013493432,-0.0717310563649573,0.10426486709433107,0.1009344021229532,0.12964242628455566,0.040540556964259025,0.012998292310810301,0.13293668305357706,0.17960623687231397,0.101216822583735,0.10318746211823565,0.017057655367808493,0.08870556459418164,0.11825924367667895,0.029969127907536447,0.027367458451389024,-0.050779614336042576,0.010570099935651502,0.062089796350276075,0.021944040081729354,-0.00734194766488073,0.015650600961180882,0.011829578361323511,0.06109852698965136,-0.03008325551981507,-0.036573821903962245,0.019535379861537014,0.04706764349059255,0.07615027302508429,0.033629821494214736,0.02977321803402094,0.012380298041554282,-0.09378048525416578,-0.114534943439072,0.12121153924676932,0.11269695554810202,-0.007244642854749605,0.1053880555567284,-0.03421492421633517,-0.12252042353742623,-0.11563447022700293,-0.12891500197698655,-0.14978755951753359,-0.1418750946613696,-0.053313065509032496,-0.16230322063656874,-0.1457092115634676,-0.16162464444830993,-0.1329244423681973,0.10321184483826054,0.16217209859541715,0.11798821508758388,0.05662457451373984,0.14044666595471328,0.1494374234101548,0.1226468300929244,0.09410147037354065,0.12393773198539346,0.12625901158701916,0.09749892259652804,0.04536837694871345,0.03775033726244086,0.05453654406650151,0.08647924419175418,0.07439535198118503,0.03814587428720903,0.0417104012956896,-0.012017795908137964,0.005538009612907442,-0.003709538153814881,0.0544018855901386,0.04571430914418822,0.006917350912989123,0.007534794746658571,-0.0026754908734531293,0.004290913842331155,0.005056568950562887,-0.0007491578469904014,0.055285294739284195,-0.01221655160092847,-0.01596910464243535,-0.013681678001130794,0.39340969590167424,0.24340298304088043,0.1806769639656925,0.2322060396742494,0.1647852020100759,0.1943577989205975,-0.0213341788531426,-0.2562054862698218,0.30409773467312645,0.7676908350276711,1.0,0.733254581298254,0.44789299595604065,0.5911965960550367,0.12779252582883982,0.4714745432950031,0.6456876341148677,0.6152520752350448,-0.023808153432155733,-0.01607504707893731,0.06113895695678127,0.06039794581620069,0.06416599168960899,-0.04525262596515379,0.16542353361855666,0.1444008184560336,0.09249901140257552,0.11095736900907678,0.2020926256004356,0.11680558315291861,0.19465765170220703,0.14002731963606385,0.2952752078286692,0.24163914658645197,0.23675565985139665,0.17110708084915155,-0.01880836992530257,0.2292566802704875,-0.0096396570514588,0.15031955976992648,0.06114646041379874,0.024416531852029646 +H3K9me2K14ac1,-0.01574322193489893,-0.0705387225342463,0.12598699973359642,0.06190972821785756,-0.08653625706047623,0.08368540804869108,0.03130669626553953,0.010050023772444358,0.18630515676329726,-0.02265688473227077,-0.05594144093564576,0.13640522483506773,0.15225398731468265,0.12699886715602332,0.10855789724108461,-0.06603608602181488,-0.04032459841151021,-0.05152048755744661,-0.10336029612640273,0.06911370123453316,-0.10385610119763572,-0.025618004662124702,0.0025186366567685123,0.1374721719305045,0.024213031450255697,-0.13496396378120779,0.07002314099742114,0.0673317755715871,-0.1062637174221931,-0.08274260133950354,-0.08088746626375692,0.03978866761692663,-0.02048345886707256,0.008612760100601406,0.13337107313883056,0.1323627190220419,-0.030896752104703464,-0.04727851441442954,-0.13118101953260777,-0.032449209205808134,-0.03536850566009835,-0.0373569592362347,0.16251201205591106,0.005022692854528877,-0.13569885191825912,-0.13452170199109648,-0.008946436439601866,-0.10214244452853523,0.006148220487580643,-0.0994714259336516,-0.010075189969360531,0.022099836290980106,0.08633949498301513,-0.05202467007550884,0.07577048607159065,0.10766925075629294,0.0356443411730042,-0.025037198307431334,0.08135105501744476,-0.0018898186141740468,0.02898806062408815,0.017917780173415016,-0.10236006331700084,-0.03767321098240216,0.0176892650947714,-0.024103214175012513,0.0023299311428566344,-0.1066050416066505,-0.12715122636621556,-0.09153450906607463,-0.051596357878223455,-0.10429243179650319,-0.08718805172698249,-0.07147555888978444,-0.06485182810052474,-0.0377159936504439,0.019665251678836964,0.012934804573034883,-0.082265126663258,-0.09518092588101955,0.1018006928164085,-0.0201758499404985,0.022360437254884676,0.0524768597995076,0.11669420908408139,-0.13076851347247936,-0.0008234542909809857,-0.11325302447766625,-0.11759479229456749,-0.1402575435580463,-0.1418928642584248,-0.16941666802644315,0.13448914823105915,-0.12527136028568997,-0.1327702770744246,-0.03953005061383652,0.005254234298580665,-0.005104488291916356,-0.015889239174296466,-0.10292108653607447,0.02332290242158981,0.0586975405060678,-0.1070560006985791,-0.1249928275561842,0.10173068025401841,-0.08124795937201208,-0.08214099394359126,-0.11631247805290111,-0.14252448743359344,-0.03688704889706314,0.06425326611400725,0.06019843934390436,0.04021298683414096,-0.05270736877847892,-0.09878691118344586,-0.22918634902255403,0.018723512287102107,0.09621574863228606,-0.04137780301371342,-0.05389181592053276,-0.020687396698975447,-0.03838103466779771,-0.00492606930246779,0.032456033665034814,0.05855317699664249,0.04613533166250914,0.08006037534536341,0.08001088101446224,0.08785512158043943,0.08882531678361491,0.055272122326949606,0.03919523621606897,0.10476766325457144,0.029934316671275663,0.008429378987539886,-0.09832500296404907,0.10088401233426013,0.0892785950690983,0.051156487895261116,0.028242612085534854,-0.028610011971193314,0.03440739607990252,-0.006019886881505568,0.05578506599804479,-0.06703069193274745,0.10081362531605409,0.08520397477532671,0.0744577532745551,0.07399545599135317,0.023298112337490004,0.11812245376797621,0.1721959136325016,0.0648987506355464,0.12287169927746576,0.027139834142570873,0.06190009766818016,0.11186089364857242,0.010036360620827127,0.05509762523907666,-0.04485670451420223,-0.005622667372350973,0.04829156433877202,0.022425192393180242,0.00442272869393471,0.0416295099330116,-0.007155892746271371,0.06303093634846008,-0.053901342213041444,-0.05992763455709925,-0.004506657495254254,0.05897061544237211,0.08122656530069125,0.05654359828030075,-0.0043462283270787,-0.00131428927678379,-0.0804418221760066,-0.10313134020533053,0.13662437795687812,0.07766006165111126,-0.004521445299011142,0.1015998726862337,-0.05703466954578693,-0.14700164077072186,-0.14076272440151197,-0.1386731128194665,-0.15780664774651912,-0.17472100049653752,-0.09833491352808302,-0.17888128803188466,-0.16337877392469136,-0.17304462317725006,-0.15742112588559548,0.1142360152769033,0.13604427016973694,0.09752514429129591,0.06900344761648045,0.12884655751364701,0.11559200429194569,0.08951289404892329,0.09244929394483385,0.10000250797611765,0.08783970563492075,0.07361126961616224,0.052152279736962445,0.04466847783005227,0.04619888722751721,0.05693027567324275,0.04432543836214836,0.015081586801517962,0.036706494141202015,0.0057947606998516345,0.002086241978105425,-0.007796066774044802,0.037707657469222694,0.04011010583621021,0.0016625381293682768,0.017378815148075818,0.008079940896875956,0.013507431188980094,0.008214041722473291,-0.0001526061737456153,0.04066479192188126,-0.0014513381629397573,-0.025214867987442983,-0.0040683649941602165,0.3656487310398976,0.24971108875920134,0.16947124892861737,0.17164931052668492,-0.24403486112058628,0.04435690265720107,0.29056606042947825,-0.07647122026195852,0.037138839221124695,0.3560763576987672,0.733254581298254,1.0,0.7387815167740437,0.3399662995723767,0.16902016537343675,0.44908213803124214,0.5155824674578032,0.5034690785208902,-0.06209451506142092,-0.15245584112969962,0.02605927427310435,0.07337018041457204,0.015379111768463728,-0.1775389660719774,0.14093708560512924,0.16979865471376276,0.09764894849693481,0.050050776213796576,0.1884676014794696,0.18102894649152496,0.09825668671800503,0.07559779611960946,0.17947973463629063,0.18589997892861415,0.1885892863400286,0.11371450261414855,-0.10426420642169533,0.21937205394432777,-0.023260203768984015,0.12521632979592381,0.09829716668235143,0.04278101528200205 +H3K9me3K14ac1,-0.08817515795482431,-0.012573215204769598,0.07230738688032809,0.030272441294501306,-0.08079213766428986,0.03756912443815015,-0.039079229852621036,-0.03829661363170276,0.10869138875315049,-0.03812587016158355,-0.06213483886208582,0.08127408656408808,0.1340136784406326,0.06173008661312666,0.07070429808302696,-0.047257466878090994,-0.017937618877159195,-0.006695388537831615,-0.052544774891453525,-0.0015098562640236412,-0.13964156307386108,-0.04207237516156358,-0.004749114208576515,0.0686985377031832,0.04196668386972017,-0.07762609631346344,0.08339338551634684,0.0684908479108055,-0.08636921134278598,-0.06529342517976512,-0.016875614280604516,-0.01747771292702461,0.010662231127806471,0.01704887462574529,0.07034577276703703,0.08614646663132018,0.024284010583517073,-0.03348881537217526,-0.0975695260269936,-0.03575899161878557,0.0019038579793392858,-0.0029263517502571847,0.09422234260744505,0.021546539476300548,-0.044063077343290534,-0.1106885123232271,0.008530020395453869,-0.06535533157976647,-0.003534915988935416,-0.07023279580430693,0.03172157155137168,0.02586954900545706,0.04392100136437326,-0.025795211622324937,0.03239952928758932,0.06539280876434904,0.019466868671728536,-0.033726412364396635,0.05391008267926316,-0.01859630899135369,0.024530367061417594,-0.0027692117351767877,-0.07160443306011376,-0.00591619416159708,-0.016618524837256805,-0.011885233878674477,-0.03128176115177399,-0.07574740767086072,-0.11676529787041749,-0.06477860906886802,-0.05455817985837089,-0.07144029188741681,-0.0618763934925007,-0.06407034736839387,-0.05938517291365439,-0.0489242278582526,0.010235118657018916,0.032770054205394576,-0.04912129473946616,-0.06644258196944375,0.03214813241589803,-0.0038115747749062337,0.009245318707847412,0.03714535813953127,0.08893641447877616,-0.09853888084210746,0.023094218910332826,-0.06450839935275897,-0.0536745010274092,-0.09463526949097961,-0.0734001640997802,-0.11733397173301106,0.08235197094503952,-0.06260930991783872,-0.12458019085393673,-0.036041799322129364,0.01851332765645971,-0.011129217615857603,-0.029941255347677886,-0.025700654724524905,0.03593774400069015,0.025586618967660957,-0.06421744700989052,-0.08016784633289875,0.055122433900272924,-0.044943498411140446,-0.044139479629257836,-0.0768958757260935,-0.08333381910619804,-0.09456511620797099,0.003236932879974208,0.02202711856568791,-0.000539214157555477,-0.06394923174519566,-0.06990717173558685,-0.11661904871356701,0.029427176164667807,0.039324801665899634,0.019005332380886555,-0.04178732417804081,-0.003976824852380889,-0.028681759585205278,0.002165739023564,0.022936539003119875,0.05675004199940047,0.026418139876432982,0.0528376228054378,0.08000237494626163,0.06457441229016299,0.04726381858215104,0.03750634519693048,0.041616666769875396,0.053100922154247505,-0.018858247075665798,-0.010753627289726883,-0.044409435230296945,0.06905827786515177,0.046039542961832866,-0.011722984442141822,-0.002217820528025659,-0.0485363417095257,-0.005971288655991871,-0.02644018323093585,0.01032967507249909,-0.07641629791584906,0.021666494884614123,0.027571286215637304,0.009586822779250714,0.0384465204390968,-0.011275536466754603,0.09075793567704929,0.12385243097150049,0.014783937319445786,0.09086524883584152,0.01957773886726755,0.04498283939367773,0.06688876195745722,-0.029435638766926165,0.02369594329093622,-0.04087827453571692,0.0035221806374707257,0.03758335614526381,-0.01188838486627722,-0.018562811095748085,0.02845674232707673,0.001088010197057046,0.02295938243817007,-0.05398484817909434,-0.051205893741569725,-0.012961237127886173,-0.02238256145685626,0.05385506290386973,0.04400868983680162,-0.009205246043438297,0.005511856620509756,-0.017331425388585054,-0.020622625882006716,0.11068319643214239,0.0697549677939529,0.0022526401907159124,0.07434152848147123,-0.029852310620556686,-0.07674828648466038,-0.07997162986166727,-0.0965681694280296,-0.10245389137592491,-0.10841385898527225,-0.08408161382017898,-0.11854644090019294,-0.1161833408097936,-0.11397410251719277,-0.11424730483354521,0.12352925389909192,0.13446065274875973,0.09049249141298765,0.07087472649351091,0.12787937956851053,0.11474262500243249,0.08614367642699558,0.09509089076163534,0.11374177616658397,0.099736105017018,0.0756997771548681,0.03933414135523666,0.04467156763517917,0.0706196449602273,0.0847676894087744,0.053967165854724344,0.003915285509982618,0.026224360260983407,0.008890715322686073,0.004814029564698311,0.02781480548985502,0.057338295410979484,0.050177845333598814,-0.022362326930322106,0.023958829833823757,0.0018020379427252807,-0.00298386763038574,0.006328434459048842,0.02339058715260595,0.05269768036896514,-0.012101965849442745,-0.03018436214716374,-0.020023375460788834,0.31523510194210236,0.32321598726298617,0.19838310411722804,0.13797205835460055,-0.35138494523421737,-0.0869861042678498,0.3180296346208105,0.3054906741164833,-0.07415545979667691,0.13382587964760173,0.44789299595604065,0.7387815167740437,1.0,0.20425696982000588,0.21137442244731458,0.34226957208132436,0.37761280055390795,0.3765281962989444,-0.0684817854318788,-0.19662713362535642,-0.03702362681031255,0.02910381140643471,-0.03354942279769699,-0.22138693799083362,0.05433131278191128,0.14535419706335118,0.12721098928180594,-0.046983437047592704,0.11844400884293757,0.21470279146645452,-0.005219467213014286,0.03975880377948795,0.036840531285490925,0.06357509651066627,0.10199213861021986,0.04274675655947309,-0.03729980536142904,0.2343805356295298,-0.012354920519933928,0.1386902702389022,0.18427885902327482,0.07074742843043538 +H3K9ac1K14ac1,0.07659925980098957,0.018480233241026333,0.06592977777128313,0.002926147423294868,0.027514856503792238,0.0009039104909381849,-0.039302871536819994,0.06266253107503797,0.0964249280395293,0.03043206900893408,0.02330686155743351,0.058509858885870646,0.05502921790257414,0.1249815997396708,0.021431033323788064,0.062158886586758104,-0.007007135030547045,0.011057910409372974,-0.03926627494547465,0.08523106882283339,-0.0066389525759827876,0.0813353316346632,0.09436032246170423,0.10770687611958209,0.13432878869107,-0.02501062207546982,-0.004105945177439535,0.10698487070684431,-0.05961320699754177,0.08138781956879988,-0.00026337180987004937,0.09046801773553549,0.08195504965549971,0.008563777575811867,-0.03971193043653399,0.1824964231975688,0.022888335375085167,0.08832417922163882,-0.016180489616181785,0.0010422542545490698,-0.008023382927438793,-0.0344867918261232,0.08628212126483838,0.06963088506305937,-0.05171689564333821,-0.012502376198842466,0.03195161904991296,-0.01657362170374734,-0.006559263425649468,-0.03829065867188924,0.008383411915236118,0.05163726361098769,-0.02441953370267041,0.02280213172371005,-0.02089407161503215,0.08565268296354511,-0.08045479147218686,0.06542659373928544,0.010988099483693095,0.05388282270913126,-0.038708422730443635,0.08736329328005193,0.011094234925948106,-0.09612851921704385,-0.004936158455461152,-0.10580122990313809,-0.010325202123644623,-0.0311996037812002,-0.08153821979942223,0.02383094182940502,0.06517282946741733,0.01566771144318232,0.01368642455336613,0.06547122284433275,0.04657179832437155,0.03865818003999867,0.0686795910748258,-0.0914819444589895,-0.06682294995729607,-0.0337364492454542,0.07053149429757254,-0.09244058055282126,-0.024018356327990636,0.014692678055658813,-0.04892435968090853,-0.07303276251395768,0.019615893771003985,-0.029657118162509138,-0.004938550911587803,-0.05724649647845847,-0.11050756134863399,-0.032338826959741676,0.06124891643393662,-0.061270824322320804,-0.015906575384906533,0.0774316444126467,0.02430098253675409,-0.013206486816609022,-0.05633297786245435,-0.04983374124177551,0.017903505408799664,0.07064899893186678,-0.02765598999270609,-0.05541074166058019,-0.05269895643658246,-0.023110533650229033,0.04729491388424789,-0.0039565204330600364,-0.009840399742577836,0.11586997388075633,0.15160629482127805,0.0004925315745837865,-0.016754233859435242,-0.018537839937101275,0.006151123153613472,-0.009276050793548788,0.058970247027881915,0.05312199397534542,-0.00869374773048012,0.047575274504443994,0.05067910033383987,0.02849305542297674,0.023505548555420194,0.05955911635446277,0.059428065118929854,-0.005686720339742057,-0.024573036403790837,-0.009958025914910261,-0.004440940239496339,-0.012598477917298548,-0.013861249320750562,-0.02060648670775662,-0.03974607795626981,0.0005172689914131415,0.07447046149470526,-0.07582703511537081,-0.021585760202391415,0.03897177461635208,0.05006081077007494,-0.015514232564674423,0.026737274621790968,0.00675226123634635,0.01566470948375805,0.007827958933943934,-0.0462793541664707,0.04234149941236679,0.05191460950215353,0.07769717703608188,-0.06901434625130207,-0.031193466276391482,0.15096892909318887,0.13330146382609742,0.11076996849574162,0.057633714490389634,0.03709779405256463,0.08505961080944247,0.04758866632241882,-0.05760719848261718,-0.09768765755659758,-0.07271952611926724,-0.004224879622110451,0.01319692706273172,-0.07606526021056251,-0.11152594663217519,-0.08902409086246686,0.013658713260115531,-0.062178903882318254,0.01421484181273549,0.06280960491071014,-0.04555464682302695,-0.0064910635125236295,0.08547249595696294,-0.0028983975260303287,-0.04169956453289048,-0.008873988124656148,-0.07042286779326658,-0.08287474859127178,0.018634414147982958,0.09879911462605195,-0.012755982311812498,0.047610807247611894,0.0071625692857675595,-0.0265846474119604,-0.012322915566825979,-0.033512762936626944,-0.04145451204892836,-0.02671353737587015,-0.0179617282393752,-0.044084930963999756,-0.01864734282467955,-0.07187143469713951,-0.04910827568197754,-0.0008207929710609637,0.05590490197470556,0.023216067926830886,0.0083352960448095,0.05513196535866488,0.06410203054786043,0.055902784719685884,0.023606769179939927,0.04329627135342105,0.049229924109275305,0.03358371663871519,-0.0880730951529613,-0.0484997095650737,-0.013997987001878927,0.0020177450707544713,-0.0036227977618994425,-0.08560763544501157,-0.1151089557075887,-0.11547582020656917,-0.08979929804520682,-0.07939843474868352,-0.05108292948094924,-0.04628627490022575,-0.1237195555851496,-0.1265526504597486,-0.13282218047022432,-0.12167448052155348,-0.10301208352224375,-0.0867213941399774,-0.04624951651252374,-0.15308806254432122,-0.13888745983053036,-0.1405298419837326,0.22527153229617908,0.300489941504853,0.22593202729152045,0.1799954735227438,0.2683505002894462,0.006840406710618603,-0.230361119261623,-0.15641480448685613,0.80256460984488,0.6612366459634907,0.5911965960550367,0.3399662995723767,0.20425696982000588,1.0,-0.023804462289897275,0.3785939347668014,0.5669127219966195,0.6187545150002569,-0.014772690586490458,0.06517925869305831,0.04909195653417295,0.029224221344006682,0.07073716347528983,0.035711996793584666,0.11185387756029629,0.12551082571082692,0.05964337327851194,0.07946701723101471,0.12755503634147194,0.07734821381089042,0.17665706148272972,0.10756401095180824,0.22288418427719586,0.2841614774054843,0.33595120738015544,0.19879966104287727,-0.0033337998990326813,0.12712428374923407,0.024201310267315257,0.0403744770196931,0.06896158455736212,0.008854289744182836 +H3K18ac0K23ac0,-0.014575980955547565,-0.015484677762547276,-0.05299337592410294,-0.028086723322626853,-0.008396283350905987,-0.04941870656997447,-0.009939416253699866,0.0038147408477968627,-0.1491601193668348,-0.0081386066233884,-0.022735873550865832,-0.15595422513096543,-0.02502381585591994,-0.11072316661181024,-0.11484575367400565,0.02889628413985426,-0.026149409520934218,0.033629829307834216,0.16295215143871808,-0.06855418491408057,0.02909441092029089,-0.013249567282739782,-0.05738886374861118,-0.14434838559353055,-0.013415354147219956,0.1358730225009314,0.02680824861413931,0.0775341293571258,0.0045821470416209185,0.0006034213510343451,0.1629808346120835,-0.0552546497925733,-0.0611339938638442,-0.04592266008380146,-0.04018053955247688,0.0017003122589579864,-0.041464786246246076,0.014987945597910075,0.12517049597873744,0.0521399297443983,0.10821531171408329,-0.00015360377235925244,-0.14966568496665247,-0.04257627744827194,0.11816395670160008,0.07771598282034761,0.016756186095766422,0.14380703721015267,-0.011265272464544646,0.10593428845119343,0.013435771321025372,0.021853921242764796,-0.024336334991620016,0.016116318916655718,-0.055923320943472424,-0.07907686173712439,0.023055577008876137,-0.07314955332371918,0.018567128367057668,0.013085499360328396,0.11678280472817357,0.12178767759648505,0.12910277416564414,0.06212382766418203,0.017409507818504425,-0.0730817077013693,0.11087172511488022,0.17665935681221603,0.0790762362674972,0.17446001376550074,0.15797994997303433,0.13740212651447278,0.09345037273042801,0.15149215593736945,0.14012446975230025,0.15094106440962973,-0.07205147343284225,-0.10528630610725433,0.0979263989296401,0.0923097747471772,-0.088627645541539,0.03835821098085641,0.047665792227632904,-0.08561478345045535,-0.06782706606349588,0.06949689919040285,-0.07714836843425543,0.10178176545141113,0.09765913745707933,0.10677143187043495,0.0017889999291304964,0.11723021241875796,-0.15628952436935523,0.13300223013373247,-0.0034465047150600034,0.111557028446111,0.10099232155748601,0.06762743612835895,0.11547365777050549,0.039951379552959694,-0.02553625358374463,-0.020903676735823197,0.08970125525863541,0.09745010739702659,0.011358408201405322,0.172715256850352,0.035300147507197864,0.07722484415914506,0.11500191212279291,-0.04873857476586038,-0.014706801010671091,-0.015961130492161177,-0.033822312587017594,-0.0374063902775775,0.08228402805528046,0.09051884135171571,-0.0004819625418698551,-0.04288061790006562,0.10277690052347724,0.04269367943662378,-0.016576311528485113,-0.037312726403439,-0.011448208589837538,-0.038716606796561526,-0.010140673633890061,-0.028909583311907208,-0.024096015469529046,-0.06999431584152638,-0.08462137594914491,-0.04692722869863943,0.00014958245558025163,-0.023292317542960315,-0.03898607096290366,-0.047855572780461014,-0.09241484063897744,0.1054698650204195,-0.010900631286518159,0.03688328783873197,0.0989811691172302,0.027734219114959265,0.12498239036185275,0.06707369607803551,0.1097317093798496,0.040300993766850854,0.127574899687334,-0.04548494648264806,-0.06211137098646663,-0.02861250374259632,0.032708562431112594,0.03064926698989125,-0.09342702189427271,-0.10487286980290852,-0.11965585639524116,-0.08579312184607317,-0.08329929331837227,-0.0854488746970108,-0.07237671154219794,-0.004769206672161895,-0.035146939614808866,-0.00756406271806945,-0.04200232922094654,-0.03810923191751861,0.01857673797707581,-0.013896241269223853,-0.03638519536733824,-0.03326344451638495,-0.015949487579604037,-0.020884470236804193,-0.028724013525715762,-0.04886110938965913,-0.06202671306019514,-0.03354602956211281,-0.001759232490122607,-0.06670127962367592,-0.01839232943994156,0.0014535440052684744,-0.010626011547902178,-0.06897260857569523,-0.09472741828538635,-0.07846528912872879,-0.06841852673198405,-0.02052898502367533,0.08063524485712015,0.12510169408823166,0.09218043078991835,0.11368655257982233,0.07775599966602434,0.03612977093666589,0.1280361614135599,0.1323557463927562,0.0775310155082559,0.131091590637395,-0.13413691506463768,-0.13038015429883598,-0.06845679974555202,-0.12792028410122125,-0.12242700596633554,-0.11036902950138724,-0.045650778574627994,-0.12390192977824364,-0.1209492008210769,-0.0838336877527651,-0.03460993679496481,-0.08717369872111791,-0.10859006573990236,-0.10801289887151397,-0.10626123796724647,-0.06715228305063504,-0.037855476491407455,-0.05255409160827671,-0.06764527670648217,-0.10219586923642077,-0.08360240116882106,-0.07689164591840184,-0.05804950355886632,-0.0614173904853851,-0.0143691343866788,-0.051134874186172886,-0.07920356992687713,-0.11023857262605709,-0.08203311874145182,-0.07888104254161411,-0.009688959735490622,-0.02036735659975647,-0.05960726421041537,0.5106358241900674,0.2951634686552598,0.20062176914474594,0.008068739627523788,0.40949231618638354,0.5915699069198751,0.5599541260412946,0.5128933990867794,0.09817541030011957,0.07569174836090625,0.12779252582883982,0.16902016537343675,0.21137442244731458,-0.023804462289897275,1.0,0.19571314344547022,0.09813955367123937,0.004815918149924874,0.10899225025707114,0.11302545702989941,0.08238580967801011,0.008647380571633062,0.12586944099838737,0.16085623771021915,0.10761554067111963,0.09640904319895692,0.2081792617096396,0.1242437700777137,0.17580482264450503,0.17492392283381886,0.07644507812714599,0.17101251643365545,-0.001105351017228441,-0.04924457375488145,-0.04074229504075577,0.00831812475888306,0.23423174053461202,0.4632933496809382,0.10565511870050583,0.27698860146453447,0.23399133339073117,0.15585925622871633 +H3K18ac1K23ac0,-0.008393018317853676,0.052707486925805666,0.014427336304481765,-0.034406154652293366,0.06534570615182618,-0.02273083750721269,-0.03032386779980251,0.07488446455193663,0.04907432726213703,0.09226607573061346,0.08072058390579363,0.034640083352734496,0.027760289296683865,-0.02080215947403285,0.00955236667126166,0.02711484439406801,0.002517412741889349,0.034235160094930515,0.02196588749897776,0.0937524098041573,-0.03906677699363772,0.047764047958014956,0.114480545177385,0.03442707920987197,-0.046112759568896496,-0.009542085386476683,5.116098185899582e-05,-0.022915130914409894,-0.04946879693475867,0.04788207739839021,0.028162939140854375,0.12959665076922458,0.02801759024269542,0.04385201726883529,-0.022428841013920023,0.07027434745429928,0.047131412058253566,0.08034587537222188,0.021973151525928776,0.0492416522090204,-0.03212326415095566,-0.08596769680261312,0.03452782226919364,0.08500498585084361,-0.016256524132370827,0.021361063604462438,0.04490459111303381,0.03855307651069168,-0.0320385488179304,-0.014362970537012455,0.019125326801603316,0.1107995440890996,-0.029458455478055968,-0.0192016356266706,-0.03307962545276669,0.06962338695322302,0.07149872679988188,0.025449762895540875,0.035981867833093914,0.06968628948173992,0.03501256156816511,0.00734938209117873,0.01725251235201391,0.01608012448395739,-0.02063422572880081,0.02621109430395098,0.017377761977240346,0.015645788614010142,0.017082296803173358,-0.00857685191233686,-0.003916826653120465,0.020671595436559203,0.012399164605702869,0.026685427534215673,0.01682719946914732,0.007922585356577062,0.06214764749593681,0.02814627168564016,0.0263967311523578,-0.024291293276222856,0.08689998550091982,-0.05701380049133794,-0.001981753932409543,0.018035721933985706,-0.017599188495778777,-0.03387817898593509,0.027859575010804803,0.024785413005219838,0.01843353701581155,0.012044567206886049,-0.051173605600806166,0.016483016183271047,0.0392018326166454,0.03866076949363233,-0.003291577498106234,0.058909366667147765,0.0013934107432241696,0.05617195620806511,0.026481380414280498,0.010471333555593173,-0.014487582237362961,0.12094701565698031,0.05974197518663324,-0.015243802227804965,-0.004564281139993643,0.007988879200291076,-0.035386054153462236,-0.09842913257929836,-0.00700083725931263,-0.01917769758013911,0.0016531666368543735,-0.03239727965418206,-0.03185502157133854,-0.018263965175762127,0.0235465281792774,-0.007220845174863913,0.0688332064932565,0.05617714991048761,0.03721973237014679,0.057960370143474715,0.047936438736648906,-0.009581573750627381,0.053055851940288105,0.10327353958065846,0.10223858947900424,0.03908738342872463,-0.019666750798178635,0.023086866322476057,0.023817643120009262,-0.0010418624865595096,0.01288736430603897,0.002255094636547564,-0.0010887402395809783,0.038100293274885774,0.03862075489892245,0.03314219365387023,-0.0038928679762504645,0.0039228736302701775,0.04363244622820652,-0.027735228995641396,0.020910948687112334,-0.01773853292752898,0.02491301797744498,-0.011142913446803836,0.025223344949419517,0.00043783827189119393,-0.02151159819422295,0.019063022459067682,-0.024692011370238177,-0.04954478829606322,0.14423098063743128,0.13688896589938554,0.0356393490827077,0.08565098006494004,0.0734106033717502,0.11939381334084119,0.0791814523518894,-0.05817537501451821,-0.03781496220364453,-0.047121437232271565,0.031223459348542516,0.0458798874598608,-0.029391821890395027,-0.0673443646146184,-0.06374405546451181,0.07156731344086088,-0.03785021697017154,0.06419848264965378,0.0927182005698434,-0.0010636619904147136,0.011613077886573597,0.054354669706777325,-0.0020755095793312177,0.0002767705993099863,0.03573374956523546,-0.02512728494277752,-0.03530830740549697,0.022226737536565132,0.027213951583318206,-0.04004805485251992,0.005775285389301557,-0.0069893637104321725,0.031990645562581396,0.04602994415796417,0.025435464365059966,0.03698125982888842,0.02149114260031588,-0.006758081569375055,0.01418554283889114,0.04703742119282781,-0.004769987736364422,0.022328866053102282,0.0018100679281073194,0.012107891822691548,0.005331904993017602,-0.007308313740366779,0.013437182539985985,0.02160945465781516,0.015693986116537675,-0.02189290870190961,-0.008668093847863328,0.0033122317415456883,-0.010920612066017054,-0.09905288226788228,-0.0818426273125858,-0.0473406402282111,-0.04614874171421249,-0.03543059676648082,-0.07383326030979713,-0.10186069951460087,-0.12378252550552475,-0.11552152097726852,-0.09645300913133538,-0.0699996765290607,-0.05901143047526254,-0.09017479890427274,-0.08540008550088658,-0.13277765907233,-0.11761614359492309,-0.10838528973618336,-0.09398360518237434,-0.06605670606542148,-0.10365071474171376,-0.1127005522254127,-0.12473652911195261,0.3073016656895902,0.3681872696947376,0.21141962704639666,0.17179029949738767,0.12775825595368684,0.17761099290122484,0.1256447976795372,0.057598117455699545,0.26740825683994435,0.3709972662259637,0.4714745432950031,0.44908213803124214,0.34226957208132436,0.3785939347668014,0.19571314344547022,1.0,0.2778598769344094,0.7846088185836267,0.008855198937433917,0.11233850795270808,0.180144214770989,0.16347384791267675,0.15459200503482395,0.035941036869896734,0.2340448155960966,0.20982709776037856,0.0974556381172334,0.008802154983012825,0.12440901949506046,0.1439836372031717,0.0032102676293007414,-0.017088125081816192,0.4909704645682109,0.5259049613164767,0.5764444037514643,0.43338346076966655,0.07056441800656858,0.22777848030376982,-0.026508479042413904,0.11227250608362646,0.1100121965012643,0.020043059075171347 +H3K18ac0K23ac1,0.026148634593900353,-0.07910746065343471,0.11849870547447927,0.07573608509312459,-0.044045523255865644,0.06396700631321295,0.011030283829772204,-0.013439261789358892,0.20203301675009958,-0.0027570479156210745,-0.0318686211397536,0.18497632294216013,0.15396210442460026,0.1579026969957665,0.1473427299907899,-0.05660889521064809,-0.03808445400558786,-0.06632423180389889,-0.14107030875072615,0.09108144833519975,-0.07008423736107161,-0.018589862827430557,0.005817688386976564,0.19793332820398293,0.07783747318506,-0.11405389951502352,0.09022618729706554,0.08723780419986844,-0.06678199415781885,-0.03276210506424327,-0.050930662129773215,0.0668621877807379,0.0008721606387637349,-0.029852625006797123,0.11077544785859585,0.2186209218454909,-0.031229226449267355,0.01185097911687042,-0.1554810793042455,-0.042938588872108344,0.00053007145162433,-0.030128498355193666,0.20383474437896498,-0.019488316530794626,-0.12543793822047714,-0.10688292092245442,0.04452645289473515,-0.13860705846843133,-0.06480562385072938,-0.1261170100549427,-0.03405575098495567,0.02814074495007411,0.0487238097113499,-0.04961911075178977,0.05388077651317288,0.043518994753067926,-0.007932347514193815,0.015442450595606252,0.06669166045498474,0.05596065058726584,-0.023221633225249772,0.046177681636561885,-0.10710500042506435,-0.09046708752572426,0.026148504922514398,-0.07245528802881852,-0.0058927441793110045,-0.11501055777927936,-0.170568631532386,-0.09273624003531825,-0.03100116170796196,-0.11249324784291397,-0.09278114011209876,-0.04917480855842788,-0.061108336958118493,-0.030691654541323513,0.048356247162888784,-0.044308874389543104,-0.09424071353415121,-0.11675492228880943,0.07503130591060041,-0.01473127625928772,0.019996044380113938,0.04841558047089695,0.0839001434222271,-0.1704259219999835,0.000999250291137821,-0.12073555298240314,-0.10173186528810475,-0.15080220882248566,-0.15962882822128194,-0.18246685705227414,0.14856642434921608,-0.16873365855902087,-0.13279751244939958,-0.007851248445803618,0.006871316610868602,-0.021445922899264017,-0.0096147866120408,-0.08396620921444455,-0.0006081085684044615,-0.0014915336356008833,-0.11595619110756769,-0.1344312166164719,0.06119072686740278,-0.09725989379545417,-0.020604257841422533,-0.052453317765092274,-0.09385709900895411,0.07417405514161717,0.049598080408051595,0.07050414172362444,0.056088833884164614,0.003980193618598559,-0.08301227901577184,-0.180244114146252,-0.009277537105295266,0.048955339941165965,-0.10734108984175544,-0.09683044474216504,-0.03439769880626449,-0.03700512476199113,-0.04470584058891262,0.07895386844357162,-0.01549031877038643,-0.025812661612883512,0.05378860460783497,0.015209943535483236,0.044322770928796426,0.06261153467985554,0.02328903563212347,0.008653860466116558,0.07840839168225262,0.01929284364384845,-0.0144454792550926,-0.14249752662950413,0.068451201968067,0.07961752852221081,0.05429129367371072,0.028984550967864158,0.0011577731344329532,0.04797661147673263,0.014813004045817079,0.07219284744663854,-0.0675585523180657,0.09495602415781584,0.09765977795756672,0.14685047540389973,-0.0020313389394863396,0.021363266789140436,0.11397784427836256,0.14910067123829046,0.0962686851159854,0.0867310172190727,0.012019124918101538,0.07151703112891396,0.10998522168994383,0.002696015766979532,0.03806221453253137,-0.006478171958419003,0.0025351627670027717,0.05447386718152671,0.01736509613874524,-0.003862128485700491,0.03956517228650769,0.04309660524952765,0.06500959590703513,-0.03456077179707868,-0.06859643668884419,0.01552225940123122,0.07279153519618711,0.07676581785768305,0.04722562687609507,0.01750582654754515,0.003693004975152286,-0.05078077905524526,-0.051924737971580745,0.08266392206083996,0.08972092338206693,0.003882575791724579,0.10008176786293996,-0.03905896689634468,-0.13095579467558605,-0.1396119616846462,-0.12891969424285354,-0.15945829579525717,-0.1682144342763233,-0.09299368002221124,-0.17518190680381412,-0.15976519557914307,-0.17513338011695526,-0.14787571489665224,0.07384427444587735,0.11568964990302867,0.07208830358740474,0.03727802592725641,0.11389658301891138,0.10876280091269239,0.07400435986680956,0.0858588782343058,0.08798700701876458,0.07440459152291688,0.0677838593248495,0.03893246698192277,0.046196669935077025,0.0401930771633576,0.04170712537917843,0.04499267816862478,0.058879819782154834,0.039149312216352344,0.015579722671975944,0.0018296783204915545,-0.02629847374174182,0.016595302417963177,0.022607856455656772,0.017509852224494398,0.0315943230477782,-0.018391813580235866,0.011542403409898885,0.014950626119842535,-0.011630906573151242,0.042557467579692636,-0.004433526963791969,-0.025989513850305956,-0.0037260556956836242,0.34108236131383357,0.24750464075311,0.1826335527674869,0.19415741221666413,0.2140848665223913,0.1231528576882539,-0.004002938275604346,-0.07628461950847137,0.40481858611753724,0.6083279084247026,0.6456876341148677,0.5155824674578032,0.37761280055390795,0.5669127219966195,0.09813955367123937,0.2778598769344094,1.0,0.5787218519213032,0.009784581675849792,0.06713991339199381,0.1272046025718393,0.1166071298376802,0.1321477224487492,0.07611171974009333,0.21377231079611464,0.1397179219539972,0.11652982081852245,0.16281881652135544,0.1573249642865308,0.03594781026642016,0.22053278040573093,0.09961584186033512,0.27135593480562625,0.2490559123381666,0.19891842444920063,0.13840516746772347,0.032514666058332746,0.287523619107341,0.043335647333769295,0.17230342711198565,0.08520883722412047,-0.033505590070352115 +H3K18ac1K23ac1,0.004068771470790058,0.016749526870307348,0.09310518557833602,-0.008330659851369904,0.03931505837409937,0.0027389820253597144,-0.02697795086234252,0.07644407894168352,0.12532235137344602,0.07915112099807878,0.060820174171948606,0.11971982544419499,0.11249833714863543,0.09335248199594838,0.08172727992505348,0.010121215274124507,0.009150306816575152,0.0205213944173202,-0.03420318208939616,0.11754310025768608,-0.07977570390467176,0.040806023449465635,0.10616737743561279,0.12424376329719991,0.03227768667025326,-0.06993180781103679,0.026712153970071626,0.037644078379170574,-0.07607579380833485,0.043510319954458775,0.010519680383709514,0.13642209201637484,0.0296970811768127,0.0194248922720921,-0.004277864035933779,0.16869641978379588,0.020292685670074445,0.09540987106319597,-0.048979261510245786,0.026224802751073664,0.003883392843430694,-0.08644223369152432,0.11315526469698363,0.08073455399946525,-0.08265693853866739,-0.032609546081190995,0.05710228784624882,-0.03317297647669181,-0.028137388142613552,-0.06766414359040336,0.03733256701569391,0.1156444511464749,-0.011886659484740476,-0.03303665360455251,-0.01840387248673083,0.08873407601550551,0.020050963769121063,0.03947758445529299,0.043763931086324974,0.05944354749295695,0.011285952425852716,0.03885223150210997,-0.007796807198664895,-0.03180214802118373,-0.0052325655823657015,-0.012440562165825028,0.022805804845045873,-0.050852075520237495,-0.05805385899415143,-0.022273715382154093,0.0016273849182568696,-0.002033296447909693,0.0017941373365647315,0.025461908433218498,0.009641478009273157,0.0033189108050176576,0.08109936349318998,-0.018825002949164973,-0.032766976765045405,-0.0705512588048348,0.09813365522789884,-0.08532539395260182,-0.024884595082279606,0.05425348193623099,-0.010225720600375111,-0.08701695242422826,0.01673831199228625,-0.03888724140137991,-0.03248852549280925,-0.05819086543918887,-0.08810452042421506,-0.06313549803872535,0.1051815051766401,-0.05020666979570615,-0.05048300559437317,0.07290489454529835,0.0024549215577060438,-0.010192855114054312,-0.016138022614409876,-0.03658615599264461,-0.00542912759689936,0.11561491057135749,0.003113375879064111,-0.07760397121637698,-0.01655745765697776,-0.03725679159205991,-0.027494804045578206,-0.07327954156166044,-0.0600777559191307,0.031928831358065735,0.04547260250825478,-0.0010886925415472567,-0.020870722033142275,-0.02681688604530264,0.0101920113922361,-0.04263616092105548,0.03964081080328738,0.09603844136215678,-0.005867745444299632,0.006627887385216992,0.021797811128189935,-0.015644244798039632,0.01369496610602891,0.07045658484978072,0.061262184011370825,0.007907009199975985,-0.0203277566784667,0.022979514165582183,0.038465072288503724,0.023048691867939727,0.011242610070939381,0.013542851352731684,0.0021253950424678144,-0.006376568284076863,0.03987511607732487,-0.04395986807467005,0.0034660691753702635,0.04421696855252456,0.058456538380729284,-0.012088009469314535,0.015106178363014498,0.021860415300130373,0.020171739479024148,0.03345070684572198,-0.019276506405103307,0.036282468260756484,0.026069447808272878,0.07831207863667392,-0.041465939219477735,-0.0267955169822375,0.1838465186073229,0.17725233481151567,0.08302849977728419,0.1260657484374026,0.060955211345090535,0.11620066335062486,0.0965697102004146,-0.07504552479828311,-0.050448040365002625,-0.09337985537705734,-0.010732789835364282,0.04266138925632688,-0.04631681807529982,-0.09039270305152336,-0.06477890885078424,0.05923768852822637,-0.015359040002944559,0.03463700905522165,0.07156379768522365,-0.013554851598434519,0.01978995969398905,0.08366849336574089,0.02710602429814729,-0.02286619086450437,-0.012327198204028536,-0.058806637950026344,-0.06010427255917182,0.06963099826116138,0.1101627243937992,-0.01849782601213185,0.06966137880541733,-0.004537444348958183,-0.016285700108860646,-0.013644642308121596,-0.02943080852572581,-0.036412393569177595,-0.03193290544380264,-0.02154175215382205,-0.05646361366756539,-0.028784032899039223,-0.06905094238303261,-0.040373554790959096,0.059905249113003926,0.09764239986229556,0.066927018969286,0.04403447611449868,0.09708462120850893,0.10515133244507403,0.0795017614981696,0.05895173185449533,0.07228176302297405,0.07901617560052578,0.055752307815391734,-0.06213631680342401,-0.025435312550704064,0.010711244510157848,0.017218979838201944,0.02214570419137085,-0.06683268627182332,-0.07911471203827808,-0.09348115712068039,-0.0812442836539768,-0.08208332170163143,-0.03750113342506539,-0.03289303403788129,-0.09011582649235692,-0.08636765787108092,-0.12503287914212757,-0.09498068609203351,-0.08000262796767366,-0.08155021806017669,-0.03494286134585389,-0.11961043847651688,-0.1200376424164689,-0.12067236577817161,0.2731686545253489,0.41033319793570566,0.2500261716992161,0.1894416552660437,0.1108000594875922,0.018337809932792673,-0.06037189466687129,-0.05096044641486121,0.410947828816929,0.5505278629968988,0.6152520752350448,0.5034690785208902,0.3765281962989444,0.6187545150002569,0.004815918149924874,0.7846088185836267,0.5787218519213032,1.0,-0.021326584866791655,0.11804890605343747,0.17743964202819842,0.14893880565456705,0.1390531791063002,0.03187945630439026,0.22628417707641058,0.23646288875542953,0.08809826550057942,0.009498713330778168,0.11033198415616802,0.1019189303324364,0.045274685903585195,-0.02195879138129942,0.5226519962013794,0.5527337686875756,0.5818736373769077,0.4325320369025396,0.06337521208439185,0.1629097999936852,-0.004186195890179437,0.06600223004138472,0.07258312535195262,-0.017637766884898307 +H3K18ac0K23ub1,0.07283082763488581,-0.029572568274196687,-0.05973055099521251,0.015069169415733729,-0.08781681969118763,0.07019453931428932,0.06445532919429556,-0.03382856762531423,-0.01702243563402899,-0.07756935082457268,-0.06833301783203305,0.006923932718412987,-0.0017647464278023946,-0.045513071058310865,0.01591237952537915,-0.06221085268147726,-0.012282481961543286,-0.053607039297097835,-0.0005307722318759129,-0.02643480315803801,-0.0746043912298827,-0.06421403331889182,-0.056400150871015596,-0.029985478442402326,0.05096204357183734,0.021558637828751333,0.01742480860640329,-0.024869782911122844,0.10333251353277641,-0.0817558856093074,0.013486634488041554,-0.037622724138843475,-0.08409671925312567,-0.06374894233071013,0.12149067114406457,-0.023581725027238903,-0.01799829666407478,-0.03962072004610743,-0.008861492553683889,-0.0035362316110787145,0.05329925317086194,0.005513844327709378,-0.020783846633666864,-0.09580777351213811,-0.04323541430672192,-0.0034849941512202147,-0.03525975675342948,-0.043205980565549515,-0.039855575304338385,0.035363315385415935,0.018962510943586464,-0.03527479518209273,0.09172292024277594,0.09148300748177003,0.09250233606693967,-0.076927558747527,-0.02718318204403354,-0.028547918158118118,-0.018729762773825858,-0.05931211588114684,0.018825251670592878,-0.09345145247532693,-0.054347867470266806,0.11142445754726663,0.005169219287527186,0.07893530627120748,0.0535029720904168,-0.009333591193329303,0.03377817676326575,-0.05794820444731943,-0.07878469961057837,-0.061503253010318996,-0.06761289508080774,-0.08809378840326924,-0.08313267496688834,-0.10715715165458987,-0.07313991838095737,0.05959381440469326,0.03478986305741047,-0.0009682207850358668,-0.05153395982855054,0.08868212397252119,0.12238712068641294,0.008494726909209542,0.08103086517436692,-0.06220925029108565,-0.002663521028004428,-0.020991650742916198,-0.035742435942953864,-0.012762515740868959,0.07517095823825083,-0.03955099891127579,-0.027406216382150007,-0.032617639220044424,0.04593505540790625,-0.09313369638443537,-0.003959066246733229,-0.012826074924659125,0.027708427136182656,0.01526666757899387,-0.11287559893191174,-0.08628529979290951,-0.03909072629554201,0.050628140352799895,0.06641095348558469,0.03494753680027417,0.05092054619454915,0.04693505820510424,-0.060027435955230364,0.11728627649269995,-0.005028731121963555,-0.0007910907462768126,0.10402059921648081,0.11816794450401465,-0.030225357608832958,-0.0164212558720653,-0.0880877131343397,-0.045027965071084704,-0.04455705462009565,-0.047406590462040855,-0.10442694039730964,-0.00015017521737440548,-0.03331259965294742,0.015469056547987142,0.05217448430764304,0.030892636829143096,0.09662625546461212,-0.01775267630382342,-0.06075729907315894,-0.03704935956062447,-0.02949435250322004,-0.04378167468242207,0.09181467310261975,0.03153693203961045,-0.09043925340503978,-0.006052598747027757,0.07908403283843349,0.06653701438028008,0.03102545406283743,0.11057685443304827,0.007253747452519193,0.051257474318647564,0.07843319641915451,0.05288971002794841,0.05484382965327051,0.027806816385601583,0.07158210534744518,-0.001254419408244068,0.08870196243337199,0.07973003674187644,-0.10058886458867598,-0.07020407100778331,0.0008683017882275007,0.0058326847766252575,-0.004782535823605954,-0.03763105767987693,2.6571576353558446e-05,0.03853465522601578,0.0642015837865058,0.10022843236206427,0.035780841453626526,0.020625851463361298,0.08015823947669994,0.08186930484384819,0.117435194514509,0.007725161842299746,0.04649806614582382,-0.025940764350169503,-0.09229973477950681,0.0036755130461154197,0.049280754464682185,0.011306055081453588,0.0007200957178048093,0.028109553385020986,0.047785805219869436,0.044867793860723225,0.03930666892007419,0.012271641570557318,-0.0198179731329391,0.05827530649336673,-0.006775313344422973,0.013625273152496611,-0.0022833033345473906,-0.019760975042396454,0.0015747819855512011,0.002751065896603411,-0.020407559209495888,-0.04141144277531789,0.014404326227382606,0.00014096306343632049,0.00011100747858275078,0.025999211190923875,-0.011005557874111182,-0.02772502798107037,-0.021540075797716003,-0.024326522983064976,-0.0546655586056821,-0.06366573784148226,-0.044640021329980725,-0.03545368422216569,-0.058062166704261446,-0.049529712920095795,-0.01793403160659494,0.026827834097803968,0.025081083961309678,-0.03714286427086286,-0.035254710252886096,-0.009640340582657692,0.032936809110635276,0.05145952446622851,0.06246930055931621,0.010455136597041847,-0.0029304951851937128,-0.017186563892680303,-0.009175607235524514,0.045655878928748964,0.03400734806159255,0.05990624898372305,0.032849606849754416,0.01944284869838581,-0.01384382720507246,-0.03393706634777767,0.06690156476167412,0.05114971475782211,0.04243898759452463,0.008127044193337624,-0.04245788108643378,-0.14736065252969527,0.006971183755647593,0.14991085415500785,0.07768017266558827,0.02026581279015856,-0.004973150141260396,0.0640107475464793,0.05825691120642166,-0.023808153432155733,-0.06209451506142092,-0.0684817854318788,-0.014772690586490458,0.10899225025707114,0.008855198937433917,0.009784581675849792,-0.021326584866791655,1.0,0.10705381787425444,0.143452217015455,0.12300773960287488,0.10265628657969904,0.11206918073569115,0.08230706473180409,-0.005128592235817507,0.057482163202867746,0.016502009211670207,0.011512427931532355,0.029072680500463983,0.044403484665562855,0.07620130990684972,0.20730505247137423,0.24510842317046092,0.14645710268248838,0.24382760429422454,0.11748078056964636,0.16228608376277526,0.3864825675304405,0.07503890192428495,0.1505221608286489,0.23162313336980847 +H3K27me0K36me0,0.06545159711348547,0.08650965255056446,0.02610722331808098,-0.010167308954998023,0.020570791068451038,-0.05177710565196878,0.07999441583410692,0.022213124347507635,-0.1139019510041124,0.007161485757323427,0.04218021409121975,-0.08407722675535968,-0.034120279397905226,-0.08510006840067215,-0.021653737989063178,0.14724316689592062,-0.010324882860967138,-0.04953828160214193,0.035078578412788206,0.012470035826432007,0.0752781369384774,0.03464079723649434,0.025391555861196687,-0.09151734565105356,-0.009272400733172282,0.06302175176514595,-0.07280541093092019,-0.04979612263231445,0.002174241440529042,0.10919353670855969,0.07552067968917894,0.030227249024454464,0.022669454723037493,-0.011271958522135085,0.028967364675819035,-0.01618616306297981,0.041649199841506876,0.12724606943669,0.05886948066682672,0.016246394568300914,0.06424263108574899,-0.07322891263009161,-0.0805557153038377,0.039580358309805455,-0.006639265451891906,0.06433264692544705,-0.021233235627163095,-0.010132749895106227,0.022451279559385917,0.037749275838319746,0.020927644488585,-0.030175382984327665,0.018272101130955364,0.029803031975484756,-0.002705292511989684,0.0160780852980847,0.006954243223592277,0.08360153367187792,-0.03823953371875793,-0.06325771601736882,-0.031420718096114165,0.028414562494545825,0.04880636819793706,-0.04643480648654764,0.06558251921316177,-0.010561130214526007,0.04532513240207953,0.02428521807997725,0.05569162033820278,0.03314621884484938,0.04047771691213734,0.037956702129306484,0.04482749261451428,0.0465032037873543,0.028271289453458557,0.026114002944433782,0.008171834997677837,-0.04610331659403399,-0.019683042793915896,0.01594571574571056,-0.02921923818757423,-0.003033117675471099,-0.0028717481354390575,-0.08292318413849223,-0.030927778501614253,-0.0055408674365725556,0.026563978590087918,-0.01933228529539933,-0.020523940889183637,0.013548824535125336,0.052617467994294356,0.029394132843210817,-0.060187510383204926,-5.182871021624261e-05,0.10210289157224178,0.016557092360547507,0.04434174365832267,-0.06860115998628954,0.05859531189772854,-0.046537224803978774,-0.021744072094750443,-0.09586680684753214,-0.00627191894817287,0.03273017953909715,-0.033935272424300195,0.03627069036803935,0.026181875400671628,-0.016135618643674087,-0.0029028666212674806,0.07252492476996669,-0.10834932854170112,-0.021618784811628412,0.044757917601594914,-0.0030031507009767554,0.02702372819192733,0.09944436993773213,-0.12705755918266548,0.047266006828654034,-0.0170911198047172,-0.10127001413147595,-0.06582350102531435,-0.03244870021877962,-0.09234242342920111,0.030256574201875802,0.020552567571108613,-0.08152263122717952,0.0135939500582327,-0.10570603132242119,-0.10810704872011397,-0.09590629815695603,-0.06836164064896205,-0.06562854534093131,0.015418987669223084,-0.026750606743898918,-0.026000112680969245,0.010349202998420005,0.0008572445048148074,0.011604552168841376,0.024001242790969084,0.10617377575673972,0.05975265324489843,0.03172924226302153,0.07942936159233101,0.031295923228149766,0.10964655886297006,-0.013378377121143642,-0.02735104653380137,0.0029696812366191185,-0.049224708810982405,0.06511703219716004,-0.030405584627318964,-0.06521094548545837,-0.01400180464822174,-0.00715387448986329,0.048257127735480396,0.017063780299476295,-0.02627810902859235,0.05893273516993874,0.01885933030239952,0.0901179701781017,0.04611961760434123,-0.028822384585324892,0.03923769650919652,0.0515968570295958,0.042533756463977716,0.005211103566943926,0.020614982556597793,0.07753576546002772,0.006340496701752237,0.0033154463796023527,-0.028954571505578577,-0.009038941883150445,0.02234790464415138,0.049260813512585815,0.04478578620804031,0.06779482423635481,0.047518806804909275,-0.0935841536181809,-0.03436484432799653,-0.0013848398056352698,-0.0550558024385246,0.017002351605778884,0.06766363129826311,0.05278748195586088,0.08117803410269686,0.08052847401449167,0.046735795600188534,0.006148729352780319,0.11544525644162464,0.09096999937515103,0.10149747387934498,0.11806102627553075,-0.13317259014009003,-0.14098107944929603,-0.1036113842329995,-0.11885228329922617,-0.12313531239404928,-0.14820678455199396,-0.12487067075827565,-0.0901487045979076,-0.1340481107356511,-0.13978263250719983,-0.11329829739116469,-0.03456457233040782,-0.036147031520997006,-0.08681628751423336,-0.12186963230468179,-0.11438086474489498,0.01021444342731577,0.033864713619909344,0.0036311037871468435,-0.044113934013231645,-0.06664815971027226,-0.10738320001411962,-0.09530069160975287,0.04217103256531788,0.028011480834315088,0.0034598394009774367,0.009087031568833587,-0.03583472220158781,-0.07054039747515,-0.09965242946694608,0.040316474180070096,0.01607786907122631,0.021507767677588496,0.08468861723328794,-0.11901273168896968,-0.007083808389448467,0.008399026087799308,0.32540068665843175,0.038426992231272154,-0.08535988346616977,0.11130617073409883,0.12364028215027024,0.22008515119631164,-0.01607504707893731,-0.15245584112969962,-0.19662713362535642,0.06517925869305831,0.11302545702989941,0.11233850795270808,0.06713991339199381,0.11804890605343747,0.10705381787425444,1.0,0.6648683330377056,0.4025143804046477,0.5236672515629592,0.7861935106025199,0.3077220824108133,-0.07219046265505627,-0.10347475205872426,0.17222023227569525,-0.30941464944446667,-0.5194875762848526,-0.17642229474291113,-0.4115843688683364,0.5813263245152951,0.5095187251967367,0.45746224721479056,0.35495898741492693,0.4535392801214335,0.12323023045276735,0.04870186879526138,0.110522065543424,-0.105459107045222,-0.053936139270258664 +H3K27me0K36me1,0.10641125511029843,-0.000558755348120012,0.0009150049035814431,0.03312127702157471,-0.015939638970786638,0.00982575400651188,0.08875687541447229,0.050689566888150114,-0.07141194693281858,0.0018149618241623806,0.030127438245392074,-0.04192311068065743,0.0694085797703641,-0.004791423785504335,0.03647533297238026,0.06374537147081637,-0.04234330986106086,-0.058072268432819665,0.06231011771105951,-0.016851535679950708,0.01645164145173754,0.004932755546595278,0.023333686474204196,-0.04748340823496641,0.028011795041044597,0.032214015009769045,-0.021988914918550366,0.015015730857788503,0.0028842810065877835,0.025792606154454438,0.07676407289858596,0.004347258465303181,-0.07561129728434957,-0.05141730893720789,0.06507677468191672,0.03396105431696437,-0.050905812067450686,0.06564171159484185,-0.009614946586017113,0.01093389943728321,0.05191324464962062,-0.0711772664938466,-0.05195747951345949,-0.026096607183298703,-0.0393508049368557,-0.0054057210674200145,-0.041941943728764954,-0.004564358234662416,0.018694110173921485,0.04695914385587608,-0.029264280284874936,-0.005492246440922608,0.03714242568993457,-0.000346560950205117,0.02763399734908848,0.052220735202451976,0.014960703812926253,0.0320461859521819,-0.02709692989628597,-0.060622224223809695,0.0029645059358668446,0.06654823096959642,0.05441082633918783,-0.04834997974423104,0.10179768833257434,-0.049679723583702255,0.10188901068130535,0.057129981491834105,0.012855404900746386,0.07720498893383149,0.07257871517250028,0.038499754471523,0.03510694850208641,0.06931380210454463,0.03666073990333984,0.05005021191187189,-0.029956280767708558,-0.06782370012420141,-0.046839161062566435,0.0003206445536570508,-0.04935879469543465,0.036134917539308066,0.017925401112181345,-0.07662278224890451,-0.004263764849106178,-0.017855395512303848,0.034721523141221136,-0.02117504689041027,-0.02075262345151908,0.008988565582292213,0.033080394605541276,0.001953311509867595,-0.018837341335037446,-0.015160277546863134,0.0869016013970859,0.05706835978282004,0.06787169999318088,-0.04858516397350042,0.06982778923369995,-0.03327657594941701,-0.02234034960438073,-0.06634211608503551,-0.0019868175387009277,0.039232463155877355,0.04343069475258767,0.0712217189581964,0.01889030347315452,0.03884164809098864,-0.06912441467135094,0.07201385638699188,-0.017455370435090708,-0.031092493290450145,0.011469293300119386,0.06768962718953882,0.05461506436921384,0.08314662548716582,-0.1292718865599204,0.003009327815889987,0.028858233450703742,-0.10438256372068425,-0.10522401165869494,-0.03917753006793228,-0.09724874906904019,0.05556212006125368,0.02563408142808304,-0.09009600593083032,0.00527629431772828,-0.07451435375801045,-0.07251611479976074,-0.06882763334790502,-0.05168078062662787,-0.025744150663095045,0.006811375296697135,-0.024574388541133654,-0.08426454441085121,0.002076670368823202,0.0561995841886002,0.025413646642411913,0.016429882923144006,0.08106651691926167,0.038040219614102005,0.041303556952979034,0.057482299920913846,0.027891049921512027,0.13460684387272953,-0.0023498049175884445,-0.02938380072651813,-0.030990461442136092,-0.015141491043657758,0.0824108943124442,-0.02171627808816728,-0.027698837542526344,-0.005260054703183979,0.02180304902773208,0.03163009819427434,-0.015928521769307095,-0.02155595907095712,0.013398842161179335,0.014409951803727249,0.032398983690021026,-0.02253204873610073,-0.039514299369299476,0.03596538220910104,0.03270311918531045,0.03882047032588077,-0.005432922051796571,0.03394727821849097,-0.035404838870545734,-0.027035877018242584,-0.037093860060592454,-0.02591833557459559,0.009901882791004834,0.03607090157050702,0.028350692432297406,-0.0002794126499656762,0.016037433584600403,0.0045775736024119005,-0.06108732537325197,0.011052882862942946,0.03679810024709307,-0.014814767019472421,0.013424236149844594,0.03314301548263573,0.02287580460932023,0.04990774996073861,0.06358445382620274,0.0018830135820361938,-0.02648868786059286,0.06950023879591594,0.05836229413175305,0.0542090201179728,0.05509912891878022,-0.08464682618178872,-0.07454630946765188,-0.06923742698687589,-0.07997288104367677,-0.08672519597981966,-0.09915576272191874,-0.0932391102155599,-0.061309238344968923,-0.1035339237546737,-0.10686811839469636,-0.09720643409609822,-0.03375467339581169,-0.03425177030323436,-0.09004222545789939,-0.1089498592130772,-0.12519072105153334,-0.03362710376457283,-0.006665411587912917,-0.00041083170745144845,-0.04338734757452672,-0.09500301390761741,-0.11148936969265222,-0.09317422791957697,0.029978118578374912,0.023733393206162044,-0.0007604759812688339,-0.0007168304305995382,-0.028933509516869828,-0.08486131812319916,-0.09393395381277479,0.017316270383379306,-0.004603598034551106,-0.0047610244895523015,0.08843145588082782,-0.006031769150799234,0.02279524170601833,0.04755115063729826,0.1842732319545369,0.0333142540430424,0.005692696367364093,-0.02444524450776538,0.06397760569560065,0.1565340550429232,0.06113895695678127,0.02605927427310435,-0.03702362681031255,0.04909195653417295,0.08238580967801011,0.180144214770989,0.1272046025718393,0.17743964202819842,0.143452217015455,0.6648683330377056,1.0,0.763939083670127,0.6273133228698871,0.29171090537628097,0.6714799105781436,0.3749701238262481,-0.08981153582901955,-0.2703438170840876,-0.29964476395834544,-0.22401434992707497,-0.5042655347478975,-0.6201402803569172,0.5620565940868608,0.700019467851292,0.6888144020980146,0.4225897855116927,0.37054766557476443,0.15994969910843101,0.056127358706131954,0.11522220640763071,0.006398367773895659,-0.02637548800019565 +H3K27me0K36me2,0.10006255960026497,-0.04903735150833766,0.11072621438237547,0.028291355329974757,-0.040561232362266594,0.06030908097342107,0.06955464864528411,0.03486186696339681,0.03268381216038285,-0.02037123275155148,0.010563684115530275,0.06036215936824749,0.10874417970044038,0.1014533499979447,0.0968529768918206,-0.02064926124234105,-0.04716449415563825,-0.08174225606266732,-0.05912503454969093,-0.0025112578574864484,-0.036214299259157486,-0.05339598016733919,-0.029703881040290044,0.03890257368188269,0.04251278694994768,-0.059989310316765125,-0.011010197631890362,0.01976842992356105,0.02329884549339124,-0.0426012656844799,0.008314428654219125,0.0062077210086055505,-0.10349286596221997,-0.09807539998372775,0.11992937319936352,0.021280152456700223,-0.054789842295710565,0.014300914731833512,-0.11163047720581692,-0.03874143683265813,0.007777725120703027,-0.04693750296287687,0.04514187526115709,-0.024269700133575607,-0.11812514443349419,-0.03656178809288841,-0.002245136256453678,-0.09319121192204166,0.0001712647885607069,-0.027352323562271783,-0.06360128128104944,-0.07178671200670825,0.06378246503365947,-0.02437424461358576,0.051580808388299024,0.0766574033125822,0.04665506444367588,0.026795088532631944,-0.012343723400789746,-0.0637195695690339,-0.03061326027449046,-0.031114234860043853,-0.05681078268508206,-0.04576894079279958,0.09966700502363171,-0.007885429412769996,-0.012499036277695361,-0.03398269580228614,-0.0432965160075989,-0.05628387796842231,-0.05582174449630718,-0.07759431861490121,-0.06507803438772654,-0.05592061003055218,-0.05929091011378377,-0.06564423488144139,-0.04065024680143139,0.031767947478188584,-0.05505918810222537,-0.023662004696242734,-0.008343923758951212,0.06502574141389525,0.01445021475704494,-0.09784775177001155,0.052285223662054826,-0.08537010801471207,0.016782086318643107,-0.06851266924210425,-0.07260819757772738,-0.05865505419036364,-0.003795008552090708,-0.08917524837111847,0.04995111701642332,-0.08145620354276177,0.07905541783838975,-0.07109973098896287,-0.008741803647960143,-0.09732594753062283,-0.004816549026661935,-0.057074263865088445,-0.06151132749634249,-0.10236470289132546,-0.09296037716598242,-0.03035881921531363,0.0828539394209525,-0.04122979184960897,-0.019486202473257854,0.00944560150427071,-0.12380238686345861,-0.0017374396179046059,-0.006160073614133729,0.0037522735674410364,0.02284600284098972,0.10950517982293832,-0.06942865068345444,0.01911200245853018,-0.10507785573176723,-0.011908512815335259,-0.02824961651397183,-0.13186713279430468,-0.1032252573857511,-0.016454699765438723,-0.07404916593863921,0.050903528599515274,0.04654986580479689,-0.08786431439523928,0.023491855126509947,0.00172925961389506,-0.008222704833146447,-0.003458402650663029,0.005669961709499803,0.013899430943400648,0.0808158955355327,-0.0077054401514623045,-0.06695329840804391,-0.061110656358272945,0.09698096513715355,0.03490609502793374,-0.013864011754676725,0.06731325066243164,-0.016163964182756188,0.012198789270060536,0.032528506731656706,0.020253032713008136,0.02530615773400748,0.04169816108752883,0.035576966820423474,-0.04047418680209184,0.01064447957909116,0.10768810089049732,-0.027995898470667187,-0.008630706878183146,0.04477491087585495,0.07303288561063571,0.0343342250322916,-0.011474592670511215,0.010810567828719647,0.05093177084335953,0.07020282584163262,0.05586961001498661,0.006686455271379746,-0.004426466761610902,0.07369420942809,0.08938348467911911,0.09797449991305053,0.03174517395166278,0.07325502647850808,-0.04476924229865902,-0.055098643897970305,-0.012552828000664982,0.024457696417960816,0.03939593507902073,0.04595240929950846,0.08112768031995392,0.023715599508169195,0.06507575013998136,0.04150024542598766,0.022112853444162913,0.05066576137707721,0.09804453235635487,0.026315628297842224,-0.00756488146156611,-0.0649120509389672,-0.07354528805861288,-0.03597740782053339,-0.05569793131720623,-0.07640415943269802,-0.04358100841948018,-0.04877885895894102,-0.0739898812801837,-0.03301550991698963,-0.02912472088191694,-0.006440450588331764,0.011303603381442791,0.011296225148864938,-0.017427016806290357,-0.016721131860180195,-0.022949229181338963,-0.038565608644018784,-0.004620121106930925,-0.031631982389881706,-0.035746776572924334,-0.025626784453256803,0.04566130387198237,0.040540830204724015,-0.03384604355625699,-0.025692782654588665,-0.04350560058017861,0.033539540417171894,0.04832559131733864,0.07186182687649963,0.03476637507055088,-0.026172814545388584,-0.020899571923625994,-0.005029769279525696,0.04691943674459156,0.06701516618651161,0.0821591703337873,0.07595109138909059,0.062696561227318,0.003393408702372372,0.007932950444459458,0.07841531509656871,0.05748784795988171,0.07031270298310308,-0.030742001065665596,0.031516266247397666,0.08253234845584888,0.145744664587767,0.060739054609605096,-0.01564526721311669,0.004692568260312191,-0.0669517171098227,0.0335597786184531,0.10213134793991292,0.06039794581620069,0.07337018041457204,0.02910381140643471,0.029224221344006682,0.008647380571633062,0.16347384791267675,0.1166071298376802,0.14893880565456705,0.12300773960287488,0.4025143804046477,0.763939083670127,1.0,0.5971763141737787,0.07706846487697226,0.4997703240104785,0.3857620262065536,-0.15874049266360765,-0.3333327749674771,-0.3527695175285425,-0.16357231182871798,-0.42056313789467176,-0.5405432724981496,0.3791356793027302,0.5418362303602849,0.6297050358617956,0.5555848751071311,0.24966716705383196,0.11352481593774602,0.023261336408835872,0.09599923664713625,0.015972151295709353,0.006628175933137517 +H3K27me0K36me3,0.06310295455888207,0.0430760427387467,0.031081878859057336,-0.0128612754354367,0.05880116728043846,-0.0018034268083410257,-0.0014762087163344782,0.06980305568261,-0.06256702696218652,0.07186962808974516,0.07838275266821683,-0.037470240601412436,-0.010591170565472494,-0.03051456752497652,-0.029165388281276204,0.07590032624424943,0.031963735586180826,0.01858904540333212,0.033466296789069865,0.004745894400123205,0.07835131304669879,0.06492750403308245,0.05098282129872066,-0.032922130223614274,-0.018167507490566403,0.03829520049874625,-0.08266985274125076,-0.05405775361978419,-0.046380574300613306,0.08709847228608046,0.10754851677689385,0.027367282674120183,-0.002564892209310501,-0.008285855640125881,-0.02667403313028331,0.0484719455434444,-0.0013721600413769493,0.11837238022441876,0.024612642670867546,0.037500664372465575,0.053127780382975956,-0.07308022484833962,-0.045151551717947186,0.04725416839730324,-0.040500232015922406,0.04453223242003344,-0.0056744356592749665,0.037531122686946576,0.015960660979574937,0.046265571423827354,0.05394293106180438,-0.00035363097124624376,0.0033469800460988624,0.015255806361628314,-0.0643989876821398,0.006890057172502218,0.0460360795044349,0.021204964009740847,-0.016981889750678186,-0.014609522502495961,-0.018305251947528807,-0.001319354043496437,0.03395704319185524,-0.0004096625402786082,0.09982228127061368,0.01669134528882073,0.0185826983154325,0.016422421049310635,0.0029194287960723226,0.014424165444517023,0.014583854253434565,0.022581676754400135,0.02174209963511358,0.017846150068891006,0.016858314332040075,0.005708211464355442,0.017053912219024008,0.011474245499572893,-0.03090717403534192,0.017988753408178862,-0.03208846360063859,-0.024392311434966646,-0.053281544698186974,-0.05772205377831445,-0.055440396532231415,0.0178547657479107,0.05514833674334001,0.025588664291960068,0.03460692410020613,0.04532655889193883,0.05184486257720039,0.027629215904164256,-0.007426776107189435,0.001039764588794441,0.10868483776066883,0.023964793313563975,0.017131744631209346,-0.03440219847702864,-0.03169127329127484,-0.10041347117923412,-0.059706790296282765,-0.07869640079113535,-0.0011925359149175094,0.04387779598421732,-0.029427944802518133,0.02016803860597132,0.0227951391928967,0.023880698090282957,0.025374150756783908,-0.0029675701588926045,-0.04499934757074453,-0.009072792239361764,-0.00726069349398308,0.025866898617490967,0.028299884267374682,0.11254154369438266,-0.0705450843378417,0.0003806196921880695,0.035498197429530025,-0.0768893704964857,-0.05811701263577131,-0.01787729187938679,-0.042182395454876745,0.009686196209779842,0.0063957494608436315,-0.08326372049611655,-0.02525321986495318,-0.10080518138206462,-0.13055570541607894,-0.10613829390606369,-0.08433563521963498,-0.08899696525674013,-0.036598580765625714,-0.02178284098310384,-0.005280285527212024,9.422324302890554e-05,-0.005852933337141249,0.015199849003294031,0.053907173661300524,0.04810388036367774,0.09244659699768656,0.05568155044857752,0.07997979896128035,0.03763911762425679,0.049130314380812494,-0.02841313169095842,-0.04876610001801723,0.002234444558038226,-0.08861035196011674,-0.0018339248833589919,0.015550604095282788,-0.048039282036490875,-0.04756312069058496,0.010511854464685774,0.06181282350432065,0.01828211016041208,-0.060887130053075056,-0.03222327768965598,-0.039831738976766874,0.028181573532598918,0.03326524253279832,-0.009350966116321153,-0.017558158472663208,-0.013911560323075263,-0.005881642726463073,0.04444449657242944,-0.03582212239491144,0.11601343413317095,0.04531221875123396,0.0162885893376928,-0.048810016061556535,0.01549993276269529,0.05438465321216584,0.028907058903498824,0.05636473826457069,0.13304155746584037,0.10331798667496737,-0.04594606874077028,0.0002366229654104713,0.039307466225264195,-0.030185149482705804,0.07483503462024076,0.09816037755716296,0.07233500369669132,0.08049373361431927,0.09166419930620917,0.10090612917695772,0.06907838397424433,0.09480279981098613,0.08573204736645156,0.09102642670098368,0.11084572211354139,-0.10491446937466392,-0.08610383946690976,-0.09732744281636964,-0.07461774897216597,-0.07089026984944942,-0.09039588911921233,-0.09340953950893435,-0.07292331146793972,-0.07593455736441707,-0.08679924035459395,-0.09727928185911462,-0.0945444151068804,-0.06563869641078006,-0.07014751136635283,-0.08558247241321969,-0.09950831532387001,-0.0839743350372277,-0.07697655679427293,-0.06640316794109367,-0.08207915150259344,-0.06884650708169038,-0.0849327251864561,-0.08742865185310694,-0.08684404279854137,-0.09000874370524928,-0.07739553617585428,-0.07399590995030879,-0.07841374529589695,-0.08647433741808327,-0.08288987213254255,-0.06926248538398372,-0.06892736145123057,-0.07018184678064247,0.10943475628903103,0.07737396413522937,0.0719579851769197,0.025301993464948304,0.1841437827649141,0.12161371524509172,0.049221168505894884,0.09546794550216611,0.12436490437956148,0.11607262204230745,0.06416599168960899,0.015379111768463728,-0.03354942279769699,0.07073716347528983,0.12586944099838737,0.15459200503482395,0.1321477224487492,0.1390531791063002,0.10265628657969904,0.5236672515629592,0.6273133228698871,0.5971763141737787,1.0,0.34561206751448276,0.33430479186341877,0.18190170760127747,0.2749441004480063,0.004278746789083682,-0.25462268845311087,-0.33831656173003544,-0.13581293970044236,-0.3450661561153155,0.35853278063686816,0.4415383971288182,0.5241443274484213,0.5914988337348673,0.25591316629012817,0.22544890048029248,0.08958014472945533,0.12869433183260626,0.10535007763835123,0.12834314735055938 +H3K27me1K36me0,0.016540998989601995,0.08936014588373245,0.023000743142503225,-0.0029870362991937247,0.030152620637961414,-0.05976297917118081,0.04941963999774093,-0.005206949296954886,-0.11902137267490773,0.02112742549866784,0.026237787793161677,-0.07801236140066027,-0.10182423428688159,-0.1273444119405312,-0.05165777523225563,0.12159400038416399,0.009370605195097765,-0.009333461491893572,0.027677681282188154,-0.013409298502297181,0.13261395708150908,0.03444915378546488,0.019407445524701854,-0.10519038893906595,-0.03453003794379069,0.08043079156066774,-0.07362574954921892,-0.06255694185658799,-0.02209818987026789,0.10834426749451323,0.058999007756495636,0.0026037934743088787,0.05063229220069242,0.02548347130632383,-0.002999616570889527,0.00808693328845689,0.04280928112489862,0.11451394723003609,0.0801894030061007,0.015768459845261044,0.062136688714890295,-0.04337714144071489,-0.08448331445231112,0.04563544941169299,0.027876447752853535,0.07376715512059268,-0.03031249238378201,-0.004366994187195442,-0.00017885617521497252,0.036764551618252636,0.05218560897102976,-0.027843600114091836,0.0077466780023630905,0.016184625106620942,-0.037619700637261416,-0.04876300837960103,-0.0035610706332074556,0.05306783840420272,-0.02646928185989211,-0.044494434544039854,-0.046421058580262096,-0.0040722925449047905,0.024210942506558326,-0.03122362684431831,0.04684993442104431,0.0002336380929064617,0.026628154466859153,0.009892964702069476,0.06801723831692105,0.012337752769072775,0.011845868323416345,0.026803892657825647,0.030029256504128046,0.021827026471706163,0.01347482789556206,0.02390269886786572,0.02562978669405752,-0.030293989229499184,0.014352389783745395,0.03912737093824921,-0.022919289336755307,-0.014244777957533832,-0.0005553871181998165,-0.04254874095856429,-0.015151671415724656,0.02958470402147897,0.020960865363650345,0.0034056222826873033,-0.0014292108521899605,0.03170960513220026,0.04630892562625386,0.04116518889265618,-0.05119314441345423,0.026141110207470297,0.06866165538369892,0.019997083801134467,0.022273024151744415,-0.027808410258510746,0.06289418292818306,-0.050897811196944816,-0.016701006152121924,-0.0840795033254878,0.017765411977100593,0.0607670227386394,-0.06160060501656734,0.02101259670822384,0.03243344172523875,-0.02105107281103467,0.05680753473753245,0.06805990635068629,-0.13982220280839266,-0.023600898385363986,0.05713684118643154,-0.04301940596278539,0.028611524624593574,0.07319670313305865,-0.09410928171577279,0.038236547138880854,-0.03258016363827496,-0.04101510542179181,-0.01566828537630941,-0.03099692479789666,-0.055738503328859816,-0.016864385030327063,0.005188316747912733,-0.05951251529591781,-0.01405416769704945,-0.08436498340564466,-0.08685530306148843,-0.060512081451165135,-0.0369665087453869,-0.05089091167658601,0.0169139377468342,-0.035528505375600754,-0.00736755712066682,0.027633717769992957,-0.03374219003849697,-0.02851499999424967,0.006752925077736135,0.07843771992776144,0.046854593960409335,0.017727270613941363,0.07901823829367036,0.018617047143054937,0.06535033821992685,-0.02941412231798262,-0.04683467827586673,-0.000837707430468173,-0.0638902085111162,0.002114213390475432,-0.03294258971789581,-0.09277486081924255,-0.04247529414251724,-0.019951063898904966,0.05595517833808495,0.022337942899742422,-0.033957621877648184,0.0723497719663036,0.025790104139970686,0.11062243891140165,0.06806614143730634,-0.0019818874233012602,0.04437190035512377,0.05814347807431617,0.052317597134426116,0.024920204503239635,0.023618763071108925,0.10242841710923574,-0.020573591851353247,0.03663768723118722,-0.032105570527304804,-0.04884177890116284,0.006276652126171659,0.07127665041761816,0.062437803488994484,0.10313353004107335,0.09190013435467938,-0.061900729440041886,-0.05091358325662135,-0.004940710708070587,-0.03220237711867065,0.030751482058378302,0.08908929682677434,0.0687831087754711,0.09453203217583069,0.08966416619199677,0.07604693257062703,0.05953294629258057,0.12794937390319686,0.09811045326313719,0.1207750981980589,0.14381434233447313,-0.13114721792244913,-0.15476764325595602,-0.12282580326118886,-0.10222229185797725,-0.11660141093189082,-0.1462530758054881,-0.1320871845472302,-0.0929495843346427,-0.12177650846744073,-0.14218671080770115,-0.10977083107688465,-0.031022633713347132,-0.030265337737123275,-0.06748089025319574,-0.11847768122259109,-0.08925278210978242,0.03764606520112154,0.018370128779611434,-0.0028821907622943654,-0.03521279907533247,-0.03988506181673523,-0.08537458844345121,-0.07644925779021772,0.027432973034675994,0.01037568333825273,-0.01435358722574186,0.0004116093368159547,-0.028202443033385427,-0.051178458052300105,-0.0807677613350641,0.04346732843260087,0.028895458430456523,0.026801801538874275,0.10593281314006206,-0.10990766428313024,0.0022866283085485263,-0.03224794688881416,0.35870134482571775,0.12900626160287174,0.0034192425092514005,0.18878763419171077,0.1416757146665447,0.16843844891250048,-0.04525262596515379,-0.1775389660719774,-0.22138693799083362,0.035711996793584666,0.16085623771021915,0.035941036869896734,0.07611171974009333,0.03187945630439026,0.11206918073569115,0.7861935106025199,0.29171090537628097,0.07706846487697226,0.34561206751448276,1.0,0.20306712949289682,-0.18601410258285636,0.09139781291637428,0.592150256827613,-0.006371093195872497,-0.4388548836248061,0.17003370849661348,-0.08325791277129774,0.413647894440491,0.22122156541613922,0.15178487702542556,0.1850121559775122,0.335302402050166,0.2128830409150824,0.06161225956982711,0.17102181952946016,-0.062266213573104134,-0.013477165044793174 +H3K27me1K36me1,0.06109271722891609,0.012633007352773222,-0.033702662098828724,0.0470558499794841,0.018072158203066527,-0.03040097957596015,0.046028417114416006,0.052913378387521685,-0.07529543628295152,0.04853356836598952,0.058355512609384215,-0.06433319761049705,0.08918360223676917,-0.03635303942661717,-0.030864626428380813,0.06304235539293368,-0.028686740654338485,0.015798339833625427,0.10405046332507796,-0.028595303792958784,0.10698356957626262,-0.00770464621693547,0.036058268323970306,-0.03993132029925802,0.008189352566391198,0.08787133260648135,0.020006647739960772,0.011509031170099162,-0.025104344571974864,0.029799116371028864,0.10493689653288485,0.002361704648921036,-0.039874636269010486,0.0031578680201946683,0.0073012304950203655,0.07093254797365814,-0.055176276594930664,0.046232544700562685,0.039840409534513455,0.03510080930967895,0.07321794219134287,-0.032178445857184,-0.07535039537753101,-0.03559757223548102,0.016367251826213583,0.003564560458060597,-0.06816784969648312,0.05184073975385233,-0.00838640533689977,0.08050762355760584,-0.005056215525042944,0.08292125989887675,-0.028193992705324987,0.006544749062787596,-0.05248399669382269,0.06829487887515621,0.03006417912031154,0.021759372139043446,0.01235800174111812,0.010360130924218494,0.01127086047348277,0.1125758897317553,0.09625177865681585,-0.05150677034584919,0.06325562606484418,-0.05176513062827678,0.13313296739488226,0.12014578537756707,0.022996688325369878,0.13351895737457353,0.13005735838457258,0.0898933555971528,0.06761971039158031,0.128107606588788,0.10537566736356588,0.12142766786508245,0.011532691755931135,-0.0953642720438372,-0.028953423889423062,0.046141209954091766,-0.04789465143842917,-0.018107880017317085,0.0319545712972227,-0.013857801821282184,0.012584081778629255,0.023833506750393346,0.017467740330194333,0.048273172111795916,0.05741765635557984,0.04430670969705395,0.030558277021293656,0.04070188404336974,-0.06002858300114766,0.043942726861425876,0.02543523906864832,0.12157720243730101,0.07617378004865229,0.0304002531579029,0.05276101414875654,-0.03254947327143978,0.029074446046414067,0.025952360467501785,0.07084564400930189,0.07737991469137215,-0.002951912281191231,0.11822883954289967,0.041259488661590106,0.03192825214057661,-0.02571608739710995,0.0481976578222178,-0.041696627634644705,-0.06829844245259362,-0.021387558782905193,0.04244799488742374,0.1224363827950197,0.03640635495730317,-0.05779784662722389,-0.00495914210140062,0.08204080053355715,-0.004908294058887946,-0.031079731563505224,-0.0661444422973369,-0.017259696972836407,0.036458222268935254,0.025617477559397844,-0.03794487942349044,-0.014496250821296009,-0.06183548073616731,-0.04063975108352611,-0.015409943908257302,0.003097176133154072,0.02792731148776709,-0.04944664552325358,-0.028287526886346077,-0.05151880139423579,0.026671463581923512,-0.0019526394583685562,-0.01233294116192649,-0.04549453141569803,0.0312659410925639,0.0015667164959045142,-0.0006130537520520681,0.022064379801916376,-0.02322461252413499,0.12785221663752383,-0.06381156383743225,-0.07526856182378072,-0.07755225971965654,-0.060430353042056545,-0.0036282335544766523,0.029030926884417167,-0.02932827952040155,-0.04255908384983368,0.0018846034141218977,0.06487958794352096,-0.0168411741809911,-0.05957583228745758,-0.019281679181524933,-0.03738645750202034,-0.023323061796643906,-0.059730577827968145,-0.026859131002235193,-0.02792859918122849,-0.01323040881240314,-0.006289808542641935,-0.018152620159844354,-0.0009681936372563926,-0.06948822441171004,-0.04897440549809144,-0.03422706838131118,-0.07072676929920267,0.004717882849893614,0.027151354442392577,-0.00416655349819079,-0.018809199317336066,-0.011593502783397444,0.0018109515741618685,-0.05224145701323917,-0.010140990241383511,0.01844970142828921,-0.008857174319890469,0.05610300101120163,0.07880573984023564,0.07804542739915002,0.08419077717398894,0.09938579289040561,0.04507196410451101,0.04299551657455761,0.0841223286853108,0.08845447431797067,0.07654866430852741,0.05638431271759697,-0.06646147891603098,-0.07624030459328063,-0.1046257688032911,-0.026192605377319808,-0.06962381191452023,-0.09005664071726784,-0.1059053217264815,-0.04437177207982898,-0.08954268521737183,-0.11702919948275077,-0.11155502908590374,-0.054673268245000226,-0.04637003856967674,-0.085010495073873,-0.12033303775364755,-0.12963438195481888,-0.022440086524601343,-0.04722380620453322,-0.038435651372304945,-0.057066318614099255,-0.10410518878625678,-0.1144084029845954,-0.10019213912248215,0.0040105683471180174,-8.724396238846023e-05,-0.04367342147494984,-0.03828704193977318,-0.06501747335193145,-0.10031415810005877,-0.11193569109771616,-0.011635765190493537,-0.029740557353119798,-0.035136361585723204,0.16577519833896456,0.07870699597447989,-0.006998988795408938,0.04068109934256558,0.14706530983275085,0.11847887405463646,0.07647287191314796,-0.014637381165669972,0.11969542760837663,0.16661086797315725,0.16542353361855666,0.14093708560512924,0.05433131278191128,0.11185387756029629,0.10761554067111963,0.2340448155960966,0.21377231079611464,0.22628417707641058,0.08230706473180409,0.3077220824108133,0.6714799105781436,0.4997703240104785,0.33430479186341877,0.20306712949289682,1.0,0.6180679550040918,0.19446421653469245,-0.10761886317930947,0.27801616769724224,0.2790697802392191,-0.3946674441552896,-0.3309296261213273,0.3506715929376026,0.49694648710704925,0.48473991118818205,0.2635413253088063,0.1772169496848043,0.28922387257839,0.057678549337055844,0.19714511592690206,0.08724696534081654,-0.004328607216701437 +H3K27me1K36me2,0.048129734225293784,-0.014806696022845229,-0.0009213068688767126,-0.020066623487140278,0.03149645319007133,-0.04101151381160568,-0.02884242729504663,0.06390866882038991,-0.040802334116850074,0.04138541479766861,0.07461817892904296,-0.010992773720674642,0.11567383514370126,0.02944936029665425,0.0032956752821107567,0.03784939857154819,0.022084361444723026,0.05250844165133658,0.08283865141744665,-0.02417092329111438,0.06459324211869323,0.004054491562835699,0.019626967939785408,-0.007604605561088475,0.050525794554067936,0.057761933989359644,-0.004224876322312584,0.06249105727809394,-0.025059308874667115,0.021667744341795983,0.05897148527754472,0.007398471599921171,-0.020867908966721464,-0.006815707292212564,-0.04227877944825806,0.10634555026999633,-0.051011315313937655,0.011391669304791937,0.04444692439664233,0.039533458146740176,0.0653440315605047,-0.03001210739561485,-0.046209221178137784,0.02272990171454689,-0.014895185003995098,-0.004749114010923137,-0.0452335054466501,0.05435013179676029,0.016865953170710636,0.020607172747661662,-0.01697378333046734,0.06916103613770508,-0.04754967016419303,-0.04256797104177228,-0.07520837819871566,0.0613277742785755,0.022921793215967,0.023042489609446735,0.027651628728427757,0.0277907662101582,-0.019882298839882195,0.09537662026048023,0.08006396521309057,-0.02643923409426,0.06838652404822125,-0.060857975655246414,0.08307086724357239,0.1112128552132872,-0.006435227875939982,0.1183266869427631,0.09948923769101037,0.09045055422194466,0.07093139115672742,0.11306275050460826,0.10740819543051752,0.0829659912789499,0.03887852698886123,-0.079128736705983,-0.010349938582165307,0.05214027869028044,-0.008631220671144173,-0.04026668156033266,0.01090454411783879,-0.021879917843685672,-0.019962980863458733,0.029912815877944397,0.03103087790800769,0.059044059456939774,0.07401406276936012,0.035735607902445767,-0.005200365137993546,0.03406073588958921,0.012538473189942528,0.033754293853910475,0.054717874136546975,0.11302218195943786,0.030383765343300402,0.0057234425985339885,-0.01471638684016999,-0.0511694082401527,-0.015341624032330114,0.07610334401402828,0.06767018836993603,0.03800766680640132,-0.03519349984876887,0.0674102282698747,0.02567869009616127,0.08236342557439373,-0.05177826722786702,-0.014769901082139186,0.06072783294340409,-0.05963716671054127,-0.10467938669666992,0.07584596493581065,0.10741423556685749,0.06400464447984143,0.00920552818836187,-0.009293613743236747,0.10385274528845259,0.048891031415479375,0.023794394341087304,0.016023085943625833,0.037801774790726904,-0.00424894819759886,0.037108744115882004,-0.019666021659491308,-0.07618215674244087,-0.03891839429334038,-0.043117691147513466,-0.0442366590339897,-0.030408826476303406,0.011617753261560945,-0.06290778481775405,-0.03811877867944177,0.017252293517627873,0.019486961081758052,-0.03649872804337496,-0.010755683907652611,-0.058664571671239146,-0.04074144179882558,-0.006545529258354936,-0.038686945126581475,-0.007323969539520185,-0.07078554068352608,0.027712377761139387,-0.08632918233053927,-0.07748055221286668,-0.09610966641558313,-0.06570520608297235,-0.046351176961087225,0.0671244096257629,0.02120204502649106,-0.046483928558666586,0.021714033701407807,0.04400660604497106,-0.012512739749624678,-0.04308089099711191,-0.10243343966328437,-0.0963204964452546,-0.0632002654297892,-0.05519367384646076,-0.025387654424135753,-0.05316163159813775,-0.06269979147533795,-0.06850339390325784,0.009005226450266557,-0.03346351034186588,-0.05259204967869736,-0.001745984154530267,-0.042451239385810344,-0.07438640482941458,0.06245482782531244,0.061071855424686135,-0.055591769200019375,-0.011094220935612903,0.02793707718690421,0.011628030911663425,-0.0337835302282314,0.03443045777358657,0.021914144077584873,0.009205704871991583,0.04582297834179882,0.05570972042247943,0.055013974436269625,0.03326975416417195,0.06755721704716348,0.04701653765207739,0.027292129194168693,0.0335436085044065,0.051884155476826024,0.05817870320163331,0.03841466327432452,-0.06776554276090095,-0.04994729460671537,-0.05945299730081407,-0.0371935752515527,-0.03668199530113353,-0.0421605146894524,-0.0625803843849046,-0.03102936977871663,-0.038091517676575835,-0.06274541708001201,-0.07130576732726274,-0.1051291028346267,-0.06219319358163594,-0.05943692969348256,-0.05950680352511459,-0.09087276835438148,-0.10922816151944517,-0.14814254086961895,-0.06736002009040679,-0.0651146282984479,-0.09253060524828471,-0.08211642056305957,-0.08162921237584753,-0.1060301410552487,-0.06121031272224401,-0.10009798918873526,-0.09021059320376498,-0.07396516709276024,-0.09113723094769922,-0.10486442833702016,-0.0734690821738443,-0.0810899095898076,-0.10751307744196094,0.11453400307255715,0.22297664739228007,0.0759642424897005,0.0428635167002364,-0.004797536258830582,0.0682034758824116,0.090277608727707,0.023786036715543947,0.10204636402443666,0.06316934070200714,0.1444008184560336,0.16979865471376276,0.14535419706335118,0.12551082571082692,0.09640904319895692,0.20982709776037856,0.1397179219539972,0.23646288875542953,-0.005128592235817507,-0.07219046265505627,0.3749701238262481,0.3857620262065536,0.18190170760127747,-0.18601410258285636,0.6180679550040918,1.0,0.2530535422052882,-0.28382025838332514,0.21064408930389877,0.47822786315250887,-0.3485153747903926,-0.22498279996587478,0.031290658061053765,0.28670324620375587,0.3834048303384039,0.18506815661599654,-0.01974713418626326,0.2443092828878473,0.061389187833049065,0.12610015978493475,0.16683064439447817,0.07353752396686204 +H3K27me1K36me3,0.01652449377065407,0.07344619974282075,-0.05052892636805459,-0.05206086497384025,0.1023705943685129,-0.04553765804128035,-0.07281737432163038,0.0810093049681624,-0.12611080874293285,0.11714634190741582,0.0845920003478017,-0.11398813144248307,-0.024810937809981046,-0.1404713607584039,-0.16504367313924034,0.08451187186492042,0.029413112234268304,0.10357383681810893,0.12351469126008105,-0.0060586903155284986,0.12125861909054225,0.10926948224395966,0.06693715325585699,-0.09772547496734027,-0.06872086323694614,0.13488361854835335,-0.07532676624524247,-0.0845975737545417,-0.07751641131439925,0.13919307600789668,0.15350195748538656,0.024781975291795356,0.08670087940123831,0.12512598509085646,-0.15787385106861487,0.08172188446182418,0.008418498968669795,0.10621975114427742,0.1602714389109886,0.13378095718971075,0.08457368148078048,-0.07332814157804206,-0.1154851743877556,0.07392666778686625,0.10242750086408278,0.08636851819204648,-0.06271915916844664,0.17198420571995177,-0.007288542577327887,0.09742818238953595,0.11983507569405102,0.09924235907718963,-0.09403509393117798,-0.013148227235335222,-0.19546005781467787,0.01161980505019727,-0.037406655789173765,-0.0009979762345758705,-0.0031545459941590484,0.07625743065201945,0.004078892516510625,0.08751531646527401,0.15637232474238213,0.010160324533382644,0.02658962474707671,-0.02117125290371545,0.06551946029731791,0.10997747983651908,0.052155499953548234,0.13176357724017337,0.13028762943496244,0.17844828639036997,0.16414512342433818,0.1500928909784657,0.15964387988022977,0.15211241148847143,0.058876982580438886,-0.023887875515516778,0.032450469142446224,0.12569565862621057,-0.06140942038431546,-0.10900083766348703,-0.03559407969105265,0.010413073072935559,-0.12112982166094863,0.13840772225650208,0.05033378267775226,0.13225401064062525,0.14557784657628803,0.1393171273723932,0.06112623340602335,0.14293565038872902,-0.059620402106934096,0.1262808012043142,-0.009744825266417012,0.17490761503457816,0.05899781202423205,0.07430102590492618,-0.05217364963163823,-0.055033034968910065,0.01168891897204836,0.06231155929900393,0.14467889317761964,0.10842134274205802,-0.14532896461193368,0.10124849823583534,0.07953917677606193,0.01092057879162228,0.12819407856196996,-0.0586608122327135,-0.06882886479918067,-0.07366842421772705,-0.08498406396026834,-0.05827525490251453,0.16059781638605075,0.152866196127777,0.04553840351422051,0.0029849728471055405,0.15577531298669026,0.07347164653656045,0.0747820172543865,0.01451099800713423,0.08207009473905084,-0.032017994156771264,0.02207405883683954,0.03235928100069522,-0.06572697919200156,-0.08664447136276299,-0.10691118759950065,-0.08343192005195493,-0.052720851148604864,-0.05450033626159963,-0.15079130338319327,-0.06864585946292798,0.04977001564942421,0.07117852675870455,-0.08628857891909408,-0.027863048004663476,0.048783071416052835,-0.038833984916247705,0.10336908707942538,0.05645364366394207,0.06003091036387157,0.015133604184730554,0.0574957028717843,-0.10943093847908358,-0.09737766769188834,-0.020607504901897528,-0.137511857329131,-0.08435205058887195,0.01423267777614967,-0.08789325311167676,-0.12116268102805146,-0.10158612613497824,-0.017612186292567302,-0.053173521036306605,-0.12332666864116267,-0.14134615756853516,-0.1600008716584993,-0.10446991151536518,-0.04813418786821356,-0.035342996577292125,-0.11589630036957811,-0.12240093742326243,-0.12983724052639897,-0.00860756663461125,-0.08214270939539403,0.06939374700059893,0.055545483353050186,-0.006189531464363117,-0.12003875248603339,0.0022978616032225427,0.014870978317858923,-0.11153495724268585,-0.008255302318799796,0.08018750681572229,0.06373199198521987,-0.05810915441654433,-0.017942344702971274,-0.04053051400687705,-0.03039154407241979,0.1025107122233983,0.17938395918663674,0.15368869314661268,0.12843778456266855,0.1616476614677301,0.19139039566043625,0.13322838365182707,0.15015380651765223,0.16643997649812783,0.14443254679450132,0.14473749171150393,-0.11924224420386517,-0.10343956993465912,-0.13647368935667586,-0.05186308565583357,-0.07923249868715923,-0.07821626409207155,-0.07560664574689664,-0.08691892207465815,-0.06707246824015653,-0.07166115797154154,-0.1044634377539567,-0.16069003735262477,-0.1361713034035105,-0.07474092237168477,-0.08315850441513108,-0.08174575370773049,-0.13152699904139714,-0.17909217287497783,-0.15779876474130855,-0.1391617039610605,-0.08679207846701524,-0.08971648887808048,-0.09533769339672436,-0.1334741570430208,-0.15214893001495644,-0.15837348670477852,-0.15368700556134862,-0.15886365037166983,-0.11380055288078551,-0.11700850956511097,-0.15128857040065283,-0.12708656271108595,-0.15326112350516277,0.2552697763866355,0.20461633406135127,-0.004156545518852234,-0.05231471707088509,0.11173908122084719,0.24858830139997853,0.2426892510151191,0.24669818245376487,0.09992110281356151,0.0216734391829618,0.09249901140257552,0.09764894849693481,0.12721098928180594,0.05964337327851194,0.2081792617096396,0.0974556381172334,0.11652982081852245,0.08809826550057942,0.057482163202867746,-0.10347475205872426,-0.08981153582901955,-0.15874049266360765,0.2749441004480063,0.09139781291637428,0.19446421653469245,0.2530535422052882,1.0,0.24594312956959247,0.4273889135106569,0.35139172583892114,0.22630232874511808,0.26771277598508714,-0.07033832727872717,-0.024681302804031264,-0.020312440075082486,0.07121054423344879,-0.09586370041011953,0.34179742203233626,0.12670237322840497,0.16719027792265162,0.23511353857066597,0.2166478388313372 +H3K27me2K36me0,-0.0536719203638974,0.05885736039201961,0.029055137642611577,0.022173615268975662,0.002047888126120595,0.01873786985427602,0.006410958801674757,0.011534501345237307,0.014610778315801255,0.01601456957084422,-0.018763482284906343,-0.004030858879989998,-0.0754947860533908,-0.05086009107726849,-0.030720234326352177,0.07140817253150769,0.04023506070982572,0.03777676501624604,-0.020052481892550197,0.0351247549306413,0.1087246112999824,0.05547491343974623,0.033012249108345555,-0.013520936239238179,-0.03911218611276653,0.01810090187941314,0.0067424857000454586,-0.016551204322488727,-0.06482791990506497,0.04566545639997275,-0.0030107402050479036,0.03323418833829414,0.07165418216361948,0.05718226769476144,0.002469130652713804,0.12077140696894571,0.06274920393978983,0.056076702826870474,0.048535063000521746,0.015911664390002904,0.031290635366783615,-0.011371838765328001,0.03193095801226047,0.052589288232242376,-0.002656693442732855,0.029134422193638144,-0.02463624400072597,-0.017129524931727095,-0.04729346818136396,0.005423009084362456,0.03534796117950848,-0.03285715131326809,0.014405576588252563,-0.023193990706514515,-0.0332939062492464,-0.02820602870306222,-0.004653379472380857,-0.01143350297817193,0.025947120385110878,-0.005445933813462365,-0.0035447621166557067,0.008594854664512906,-0.013624325144115317,-0.014110237046300026,0.008236141144302971,-0.014708471992417824,-0.025336952163054215,-0.028427145468504927,-0.011747335032002437,-0.029261371893335178,-0.000432552473274672,-0.004764403706148096,0.005412870168274062,-0.0008119424598291733,0.008998646866082888,0.021058088848677513,0.010512768596559564,-0.010060611558359392,-0.0139577157208541,0.04805937046014499,0.0337654441616209,-0.01024249695406353,-0.010678374995370719,0.01843865791817663,-0.0031055477420987372,0.010231088282561085,0.0033599463171169607,-0.025930572177074174,-0.03709741483607712,-0.011153151722674835,-0.004942822072344158,-0.021832993293874826,0.026556297998800948,-0.009339910575505745,-0.06814021065233901,0.001649396364572252,-0.010131254583655531,0.000125077086322483,0.014537845537294343,-0.0560091700532905,0.002035142120315078,-0.01795428842835574,-0.01957863528903693,0.0027643690707284947,-0.01294065814687157,-0.023789536617523505,0.030215057919367582,-0.07729000659577154,0.063623495089042,0.011848980070699348,-0.03850287155862315,-0.018936470799255742,0.0391169617696439,-0.06966494346900727,-0.03043151272259346,-0.03546007941333772,-0.016246716127827698,0.04637811792659944,-0.05544864678843939,0.017675179095955895,0.016414399518308535,-0.02206264995937706,-0.017423479494685437,-0.00609616289373899,0.0014070994252610466,0.011598829958411914,-0.016440769684899513,0.014230395430556597,0.0003091604421606396,0.028753444582146848,0.013659036450276748,-0.013754901417206589,0.03573679679744339,-0.03165197184106709,0.026291932093421237,0.007441192362825175,-0.027803021765573647,-0.025572364082735825,0.006783541829293552,0.031110503591554216,0.006115616535687566,0.008752156515631982,0.04272548484658655,0.012413227033673176,0.008406833180488758,-0.0058508129351356975,-0.021932723016310555,0.03422174135927107,-0.011116540681863237,-0.026446352450135484,-0.0012926006599051553,-0.024940979131675752,-0.02209480047051354,-0.0017313521419620925,0.0140238939050639,0.021182616053399057,-0.003953907973712668,0.05411527757951288,0.04202737053933732,0.041628823121568015,0.03690436874030404,0.010385792716463976,0.04976436184308702,0.05299037190346857,0.04349759183721063,-0.009266872795566943,0.04297000979600416,0.07665121519644848,-0.03436135536632034,0.050611302931186375,-0.02093959692149627,-0.02342537238822406,0.001489147560207983,0.024262788109364972,0.027549813342517417,0.04640301788135591,0.05586314145949204,0.03245671227982835,-0.051965421551106554,-0.03772118903848183,0.003287409685237057,0.022966299791216786,0.04070787949790594,0.02630476094224632,0.03004303419516774,0.03012360344292079,0.03746163288142312,0.05297529330011506,0.04754662610058286,0.033895784846933244,0.04384784195960396,0.07612267602204885,-0.03624115173594334,-0.06403294371385077,-0.06885317999490786,-0.02636265489694448,-0.032671031368633745,-0.05052139988997843,-0.055707498220153265,-0.03406314969844561,-0.03888303775921144,-0.045505502898142446,-0.032066196088014046,0.002718677543657928,-0.0073279367745356415,-0.013391757272154026,-0.041860713635410475,0.00520391519811747,0.026133761781067112,0.012090768836972257,-0.009088667525950703,-0.0145634369301317,0.0004441688727032072,-0.007266503404116533,-0.015402743310621556,-0.013502075840181682,-0.0041922571302307155,-0.019975538522882048,0.0007952954459053582,-0.011103923179436183,0.000764882468279546,-0.004321305447332746,0.017962843137666436,0.016391696646724952,0.02677406588463313,0.14230235969434454,-0.014425396468429507,0.0400971642729345,-0.039289156995545374,0.1974786471372208,0.16033918303105996,0.09286924947506066,0.04034630659676832,0.11304795404200128,0.1559713845867616,0.11095736900907678,0.050050776213796576,-0.046983437047592704,0.07946701723101471,0.1242437700777137,0.008802154983012825,0.16281881652135544,0.009498713330778168,0.016502009211670207,0.17222023227569525,-0.2703438170840876,-0.3333327749674771,0.004278746789083682,0.592150256827613,-0.10761886317930947,-0.28382025838332514,0.24594312956959247,1.0,0.4109760000813002,-0.18054150389398324,0.6853556687476482,0.4345285668601732,0.12813890069416067,-0.14591467098354793,-0.2381848708288194,-0.03373993273806064,0.0022411074093602887,0.2033894986193381,0.03859592361935249,0.16327058159406851,0.009595185698304103,0.047650365825089275 +H3K27me2K36me1,-0.04388620265391038,0.025798454233691284,-0.04723914621006559,0.001739785076439004,0.05359948484873669,-0.043542249025874495,-0.06332445362032439,0.046400215693707315,-0.018915665204317977,0.10248990419536705,0.05213261838590607,-0.061530645701174676,-0.010667844267527097,-0.09829749337674662,-0.12388297919044365,0.03318561915501324,0.04131050936239247,0.12552970384993825,0.07712668486196791,-0.007523607220895944,0.1322640978617503,0.06876973974057099,0.06577810602016441,-0.0014138914392372373,-0.046863802063036857,0.10927288098448931,0.008236724173538375,0.007341155147514414,-0.032537441258623165,0.024103607629938746,0.09844089817485721,0.02061992162101468,0.09386312936357659,0.1174181541454202,-0.08331475908263701,0.10189185958589572,-0.025747442818082448,0.000711709303895909,0.08435210436202879,0.04107163897828803,0.07473368895481083,0.008552030857301897,-0.022342093435072024,0.0338700414718036,0.07656324902100298,0.02163569170107208,-0.05410608458603941,0.10972183641503526,-0.06408808802410727,0.08332323689400328,0.06368943121078723,0.11620071068289614,-0.09888280352734866,-0.0074162853717925905,-0.12190413013853162,0.008812549112331786,0.010701579151411482,-0.04461225280044008,0.03476160083685996,0.07202382897238674,0.05209970761700044,0.11213343964775795,0.09990413506929065,-0.012306197790159307,-0.029108823731114494,-0.025714808436107024,0.049666279005887486,0.09539729813700311,0.020943919451198934,0.09825783615576265,0.12912436815695655,0.1154676062248766,0.10541083688460581,0.12359318456759325,0.13330346195316561,0.12253812549564014,0.022622968425244337,-0.04698325102052783,0.012130462081995846,0.07997444881001535,0.0037107069412752234,-0.06070435121649657,0.028062597922291765,0.058862715512588024,-0.041953395108950645,0.07083467308119927,0.004791679582130599,0.08992404377705587,0.0961095574838824,0.06537806452659509,-0.004942896371231092,0.06676618641057491,-0.05657478790724312,0.08281997178013596,-0.06695120515622124,0.11033941268622471,0.05129766715673288,0.07503256475880986,-0.05506528094986751,0.027285050680238766,0.03394244090923667,0.10929609384874929,0.09017550836918094,0.07470593233802172,-0.0625405136798494,0.09130243860479635,0.07635600767698454,-0.0031053539421970343,0.0878161234309948,0.005504694302296743,0.0014068112191541159,-0.08915681111380445,-0.06784147985985561,-0.023288328652838763,0.09764921970436674,-0.0276944663221125,0.08458765015882248,0.0006901354996205124,0.07966569628626098,0.14736239424535827,0.10440883997618454,-0.014404496655072584,0.09908278002513246,0.010678155141183001,0.046115415433190206,0.07040489043940165,-0.04262606708918515,-0.0036323577282893374,0.0026576480701213908,0.03223623018926825,0.02559229507822696,0.02528304946059309,-0.08399963761391799,-0.014904772314786888,0.044485139528579874,0.046749291329802496,-0.07151544912055328,0.0005706417148399833,-0.004112723296190144,-0.08014941819975932,0.029073944516342674,0.0013695975032939533,0.00029222482825481006,-0.027699462526812168,0.020263341827385716,-0.060368994232069706,-0.057733809026086436,-0.020675859934047306,-0.04199736540363378,-0.06587971680399753,0.06951141533270098,0.002006871064833135,-0.06166978906505844,-0.012463353472075755,0.022305854834564043,0.013682591406843067,-0.06360755356329836,-0.08093327176621137,-0.08408443956639444,-0.06950582545065072,-0.04442874008353847,-0.007672364207780583,-0.07825293655646438,-0.07142479113647839,-0.09348688797802951,-0.024207368787451437,-0.04815849495014855,0.005786529614235845,-0.0040254235499831885,0.01968745911011189,-0.07487221620537313,-0.024551588464566235,-0.017235892648963774,-0.062008468527901206,-0.020162561661864076,-0.02790587938750893,-0.002182398983955045,-0.05008028979133169,-0.06780317350371244,-0.08587853805632914,-0.03299525456231,0.05950507162744799,0.09214150870080136,0.0983793710349621,0.07990147860970802,0.08096717805065635,0.07281830917821441,0.08355580461748933,0.0756878377395626,0.08290106754719065,0.06092192678111088,0.047857658005409476,-0.029627818086538853,-0.0380205636076278,-0.0681077545186443,0.013182684567270637,-0.018449977281559653,-0.024485650318744372,-0.029386238945500544,-0.02600610620902537,-0.02550826368976824,-0.03945299040746757,-0.03344190752169841,-0.0790809258345162,-0.0745390415059226,-0.046262068523721396,-0.05657659290858695,-0.02794725416322034,-0.04305899680013441,-0.09539594545757568,-0.10369883759682241,-0.08035511423610374,-0.06255642095560578,-0.039756079665622605,-0.03214414776131559,-0.06534598015202282,-0.07911188634830185,-0.09662488381104842,-0.10669557263120533,-0.11556118671864767,-0.06840729088610184,-0.051492658801329895,-0.07766578189032114,-0.06563608122090217,-0.09605037312579723,0.2053172576175308,0.12116438795169426,-0.01867246873349,-0.012052286622073236,0.10113103187192328,0.22315823480083655,0.1685240034202462,0.05656081221204663,0.14212626410508097,0.11487456497303115,0.2020926256004356,0.1884676014794696,0.11844400884293757,0.12755503634147194,0.17580482264450503,0.12440901949506046,0.1573249642865308,0.11033198415616802,0.011512427931532355,-0.30941464944446667,-0.29964476395834544,-0.3527695175285425,-0.25462268845311087,-0.006371093195872497,0.27801616769724224,0.21064408930389877,0.4273889135106569,0.4109760000813002,1.0,0.6410277603528619,0.28929452654939536,0.5525611052679138,-0.11831359829254551,-0.1617007743617195,-0.21951665605151507,-0.15772023814696937,-0.19293285016497122,0.31965729065234144,0.07370200889665225,0.18614387034066532,0.1749816636424533,0.10079620499579078 +H3K27me2K36me2,0.007491999671582064,-0.04117848699777371,-0.05214094712470441,0.0013409387611745332,0.043056788182877996,-0.036723184468047836,-0.07225191103744853,0.032006160751452094,-0.05366728836809077,0.0624333538384077,0.05403200043590119,-0.08069189423165904,0.06302473654761946,-0.008677283687618829,-0.07805364320672942,-0.016043750360055075,-0.011377230767798155,0.06843185060955582,0.13194543289160185,-0.0635523800675985,0.015870211830180895,0.002880457279057329,-0.008668172160989262,-0.027309637309348846,0.024133242916884,0.11503496884892772,0.02223914961735641,0.06993079806819233,0.01087020113877485,0.003228318008046248,0.08689485816444348,-0.04031920312296137,-5.7809823204399214e-05,0.0543285623282143,-0.08860506337373104,0.013981352740997018,-0.08462000998300363,-0.049308174560721015,0.11133278302511976,0.0492630771217212,0.05434637618532614,0.025880471853886047,-0.07624715277971525,-0.02391496467254114,0.08647834010292195,0.03778706057185435,-0.04435415689328815,0.14613767522757543,0.0016574381713211155,0.09078869171137673,0.037637641997745316,0.11429538578426145,-0.10778380213119966,0.011335811716690788,-0.0995242346778562,0.03761607365814546,-0.014793486723734341,-0.02197860955932095,0.024849871818005534,0.04385050922240859,0.059508951479243954,0.11490862740591369,0.12388765352065487,-0.006372870869578206,-0.010681118730648616,-0.03244587921016904,0.06944479574531842,0.13768634564953108,0.035624025554142756,0.1399202280478369,0.1358494500950244,0.13870039288114344,0.110225598248087,0.14285597889827095,0.1366906832896622,0.13047376363493957,0.01896638796014419,-0.027150728419468792,0.05439838466654787,0.10502188679506559,-0.03506579849634995,-0.036596815339471095,0.04351576773983681,0.005309736538659394,-0.0475861759265094,0.08721135575172535,-0.013868821451982047,0.1227744974501992,0.12038310054083179,0.09276575053218751,0.03867752211087323,0.09703899249001485,-0.07477213772709343,0.11201054179153437,0.0021631720487850295,0.11210001591452302,0.05510829043573061,0.09781361908731934,-0.0010012714235338505,0.022114631443582073,0.0320433870916263,0.11835009030204018,0.12174812314138836,0.08654838051822562,-0.057730536899663155,0.13160589186962657,0.05896824961842298,0.05994538127655956,0.049013937129922906,-0.05810754871517844,0.0665696735344647,-0.08326207668890957,-0.09571118407461134,0.014797713895610753,0.12478251782532819,0.04295523097641179,0.09579358605725483,-0.052469581156451714,0.14280041611567443,0.14177768724793124,0.08899335597318536,0.016660500645000458,0.10236800367751436,-0.009687509541623934,0.061098710760109094,0.04578786275188642,-0.0356327782019625,0.020472711913836955,0.01596631167429351,0.023484953820769882,0.043227280997680854,0.06593343666162622,-0.09210960088494798,-0.03966924896769617,0.019135001637653366,0.06851290884539725,-0.04672903861440536,0.000570206003541718,0.010550416164523652,-0.07443963662673161,0.026204296208602824,0.026247913677565536,-0.00770000119055372,-0.01922146834351964,0.02924666673126735,-0.08659042156952887,-0.06950279603948639,-0.07315837283882233,-0.015818578889560595,-0.06318462940971528,0.010948890230747955,-0.028362153122111617,-0.04552115586424606,-0.04264509033360254,-0.02919649316684383,-0.08346074642809916,-0.06810894885189245,-0.11099561068658131,-0.11016819255703265,-0.12737425201482916,-0.1254545466632589,-0.019968855444446456,-0.07598265910309943,-0.07649521393112513,-0.10571668940014882,-0.04287162509776386,-0.04148375275246764,-0.0880681620418454,0.0023820029101117557,-0.05758084741499532,-0.08234034864207644,0.039999173079507996,-0.01534414579196066,-0.1337643806045134,-0.09766911287297637,-0.048305123378853815,-0.05041445760528183,-0.03709503451906876,-0.03665813896124809,-0.06529627632028627,-0.030138312498865397,0.059212905396177185,0.08802360723258974,0.11132659539971278,0.08661651140967375,0.09139473446259559,0.0782191670496885,0.08149551631979127,0.06852950807886912,0.09302964319535412,0.059887292678845974,0.028488095157015943,-0.048409783861984065,-0.04124524103269324,-0.04035239014730409,-0.02111479234863853,-0.044821910828923686,-0.026462916648888155,-0.008117564482266899,-0.057151774940761485,-0.04245752799706507,-0.032026702423072026,-0.02325465265558123,-0.1014167117051444,-0.09775196502639032,-0.0818319080471532,-0.05840728916786539,-0.04367072895676229,-0.10673560153915815,-0.1346244375494138,-0.10731565764506423,-0.09122778440884959,-0.09998944247644746,-0.057650156425730806,-0.05067838476302145,-0.09138914514840141,-0.09606178887522214,-0.08952464936528053,-0.10378250426894983,-0.11006692789266972,-0.0966781866695956,-0.08861359438663823,-0.10472223540368383,-0.0900768573119127,-0.11781850596393405,0.16811012916890472,0.23751002112147265,0.015928007817418904,0.02604318402613089,-0.04677566961836399,0.14251168920084306,0.20716990718569808,0.13118275115588898,0.061136239600063064,-0.026766173049895526,0.11680558315291861,0.18102894649152496,0.21470279146645452,0.07734821381089042,0.17492392283381886,0.1439836372031717,0.03594781026642016,0.1019189303324364,0.029072680500463983,-0.5194875762848526,-0.22401434992707497,-0.16357231182871798,-0.33831656173003544,-0.4388548836248061,0.2790697802392191,0.47822786315250887,0.35139172583892114,-0.18054150389398324,0.6410277603528619,1.0,-0.07984066805629908,0.3504924494633161,-0.29248552688840873,-0.1432857378475455,-0.08417150304505604,-0.14995065460878917,-0.27351224097980387,0.25890839603052773,0.05750564337822979,0.14604664403470077,0.22384640981782913,0.11352962811492358 +H3K27me3K36me0,0.033471411015884966,-0.041017167999127455,0.06163643979608405,-0.005881289526394328,-0.03212245957594108,0.07887936041235954,-0.009794197219933624,-0.012328798653842043,0.0950406217360268,-0.028493619419539647,-0.05597640852541185,0.08256856302404011,-0.04927311429152663,0.06448770968317752,0.004755844142097643,-0.05964212093044532,-0.030347381520325883,-0.0400894013739788,-0.09599707444233892,0.042967244312622194,-0.015517760016730303,-0.008062360975191807,-0.030239113044706948,0.05990751032025118,0.021394918726394156,-0.04767853310298104,0.027400407090966344,0.02670812035757843,-0.0485700083303546,-0.019220825007524006,-0.06584501275238519,0.035521914399361774,-0.005102469834424969,0.009381913080203329,0.024424384510564237,0.13613016770381403,0.03395329312840182,0.005500640660186582,-0.0006803776736351594,0.0003257966089012348,-0.014812022965455696,-0.016969134228220245,0.10247004932176701,-0.0033015895272979707,-0.026017568761583978,-0.013011636652444258,0.030895900991846904,-0.05416768880091964,-0.0601829712222139,-0.06577699262908886,0.008847222137084247,-0.06558513615936842,0.009155951802617534,-0.03266596217553073,0.02211894888275522,-0.02041113295170689,-0.06407222985074826,-0.011931702795847828,-0.013293275978906867,0.0015472286864546356,-0.015691405313905095,-0.03545163143929181,-0.07539188670843322,0.020267707515749144,-0.023191116098144098,-0.04517863983361265,-0.06834176724204609,-0.08995216432685338,-0.06280985879264732,-0.08602177313880256,-0.047712316616870566,-0.05779871608460569,-0.03401214937201131,-0.05748263217490657,-0.04224124875835276,-0.02511168737679835,-0.034951663322504434,0.0010442893172967664,-0.025200876732432896,-0.01926522013797214,0.042446286395049965,-0.001682937985039716,0.04000394354509368,-0.006817266850730855,0.024301947282551258,-0.0555965552493097,-0.0059209046086559705,-0.05901776834013453,-0.07021992138192729,-0.047651766648451346,-0.06761790442912195,-0.07178243052849906,0.06223526409196721,-0.0672507474696346,-0.10638344547903669,-0.0395230157203673,-0.023058752922076185,-0.02238672937566388,-0.03337489480530097,-0.04615291522730079,-0.027042586390221317,-0.04487787883337854,-0.06647171476402788,-0.06591926380065573,0.007050676046478709,-0.10416442604894405,-0.007687518928043022,-0.03340961190726343,0.04338045649562228,-0.002912021691019749,0.09139938646785693,0.049099997228599576,0.017805113967086107,0.001560373972145049,-0.08430820199719473,-0.08299729796358228,0.0030063040406506695,0.01875525621746644,-0.12420834354187721,-0.006536850213227648,-0.01576664644744588,0.012930275769253425,-0.03703136841842177,-0.011160280915381586,-0.030399813539415056,0.001955214725764123,0.000718314759775062,0.02880870034987375,0.005772797293053595,0.015305034061356788,-0.00623215819382397,-0.04027111916928379,0.06448583649762986,-0.051742742122134214,0.009756637903734329,-0.0563611245511008,0.009897055932535839,0.012482747404354287,0.06229414814597387,-0.008707679085814823,0.0014442704091735578,0.030817160496681567,0.03718518246156685,0.04340034500058169,-0.06178980740843994,0.07379095733597364,0.06125427747036774,0.10133529558210262,0.0452129364422974,0.01265787328143235,-0.007576928932155313,0.06298416244498292,0.06329468517053095,-0.010344070935668248,-0.023615457668213213,0.019643856198147458,0.07239884756722804,0.022296960151355537,0.0547064050517084,0.026619499941712112,0.010158990971149478,0.03032340432013129,0.07285193355383801,0.037202261080336294,0.009839458063716569,0.0021814534628458895,0.022823717385927634,0.03692987107505885,-0.01643823858295521,0.011576244195753883,0.06278414571831692,0.04615936498019759,0.003901240390693436,-0.002533046895610131,-0.00041620965109969766,0.020005457780933655,-0.018783709276019928,0.03629042316437428,0.043100327915417104,-0.014677231345676448,0.0639757721658604,0.008255596162373579,-0.02215707445918985,-0.025235748767491958,-0.03901500373170384,-0.05126905999182137,-0.006426700622705491,0.01674720293425831,-0.045667436235233956,-0.03730963229700792,-0.045027969287771204,-0.005212937389209525,0.0379026726031644,0.054316106574221944,0.06491281804411701,0.02568618976742973,0.04340734404536478,0.0699444003378772,0.0692644126238404,0.011710162411698763,0.04840670298533751,0.07802090397649214,0.07363615844439485,0.014411684139237182,0.01091462651299463,0.021590321601360502,0.04904868213114875,0.08160065703579115,0.03301064812622932,0.012357863986485355,0.006598867968819187,-0.006731529152985381,0.011250516586420147,0.03949420580154256,0.04270160289239666,-0.012962689837061716,-0.00035151116734617976,-0.004280303198067479,-0.010848160426008875,-0.01248146692409709,0.009904769411109847,0.050987209924830176,-0.0033915372306920354,0.0035394182162679804,-0.005567476814233555,0.11971629896537941,0.049767877948559844,0.07939878202515235,0.017818238904523078,0.15103597216402323,0.1551447223567073,0.051645072787636595,-0.03330390137345483,0.18894848175379206,0.1880331377537623,0.19465765170220703,0.09825668671800503,-0.005219467213014286,0.17665706148272972,0.07644507812714599,0.0032102676293007414,0.22053278040573093,0.045274685903585195,0.044403484665562855,-0.17642229474291113,-0.5042655347478975,-0.42056313789467176,-0.13581293970044236,0.17003370849661348,-0.3946674441552896,-0.3485153747903926,0.22630232874511808,0.6853556687476482,0.28929452654939536,-0.07984066805629908,1.0,0.7672658588831585,-0.03322926200896352,-0.254381381286623,-0.3339572549289392,-0.09119267929910266,-0.1735159738694196,0.15258609558832048,0.06792866862446735,0.08467623655925884,0.08246887150780012,0.10882361989468738 +H3K27me3K36me1,-0.005939860516253553,-0.06135105326737855,0.02549580700337225,-0.01576037070691261,-0.0011353167162057851,0.005947067873317767,-0.06973657277796491,-0.013998646848859632,0.027248297487192107,0.0008646375314417938,-0.026781969163976654,0.008617675121820989,-0.060401498558985675,0.030311172147650802,-0.06312586050634342,-0.057221899654466855,-0.046055244715817754,0.0024041941085325065,-0.009349899410401442,-0.0350142345357275,0.0025355944489691188,-0.02631817011153141,-0.042268365524246294,0.015747365824161304,0.018754990412358865,0.04230454675710396,0.007145885273921636,0.042607564396125175,-0.015018519732102869,0.009024882072661947,0.006516546839755581,-0.00605672300310497,0.0008643055767909761,0.018632380055699876,-0.064261046403859,0.05280672155501467,-0.010505619215332131,-0.028659715204870186,0.07265116972107927,0.030837559950007826,0.0040932540489781516,0.0221157400671815,0.029965227004086614,-0.019193803443795288,0.07170626950207042,0.03765909541503975,0.04236079786395173,0.06101648638026681,-0.05899892920912899,0.010422126910942561,0.04732165958233237,-0.011500770683343212,-0.06969017914928581,0.006894142136642512,-0.055809996670009236,-0.05014890124215673,-0.10731097023852307,-0.03244439965202339,-0.008227192684192714,0.02612489802759373,0.024660251325348454,0.011764288386803469,0.015917683962901157,0.019647259623347665,-0.07845372790248678,-0.02685759570949841,-0.05604840081059813,0.009680349452912311,-0.003210501415189815,-0.0051358870912097026,0.025511056940045834,0.04117683043381555,0.042416425354105156,0.025114549730102912,0.04244206337196228,0.04368987727581805,-0.02995785428229032,0.011026026306747571,0.013532829591957613,0.059506387278722345,0.008791011876638454,-0.012524127394763497,0.05995472069057672,-0.05363385154021656,-0.0049146201827442474,0.010863491842426236,-0.005259085052571779,0.048848792152037177,0.04110881153449706,0.041640817429874334,-0.0011090887390502846,0.02449549950717668,-0.016938111239234242,0.017583932593427738,-0.08623492776391216,0.006209025627476094,0.03293380770740554,0.040998447665601484,-0.06056752893706936,0.007465969530773672,-0.0439917509556588,-0.010536551428558296,0.01839083291386957,0.01927269849141271,-0.029452690288326512,-0.02223715635974939,0.02006235243534166,0.01242052837693322,0.11891910399548959,-0.02205512256018827,0.11397726258350001,0.013997776705171888,-0.05979714024170307,0.009045423994893182,-0.019935866249596652,-0.040975129019784076,0.05422697327179585,-0.05547792326429264,-0.03020919398464397,0.06616826116516071,0.03395325499802932,0.046241945415905046,0.029190118887121873,-0.026182747560736217,-0.015868918886110722,0.030913780490240222,-0.03232903132439242,0.007717004137406541,-0.011036104905264492,-0.008400248515582343,-0.011638906715433666,-0.03630035339720538,-0.020562828819932134,-0.036635066405790506,0.0220637481849231,-0.020697487031953947,-0.020613260520585465,0.031069289878424368,0.09445115189567507,-0.07702188365672905,0.06460431516297566,0.05115060232019637,0.06812610143289133,0.027950450800061376,-0.049354937788647135,0.035120724715526665,0.048776065598434136,0.08085032931935396,0.04609117326420286,-0.013102488334439274,-0.005031801031552096,0.007669515729817347,0.0009662101933398087,-0.04589071425250006,-0.02852469557163717,-0.012843488225416696,-0.012362406345251488,-0.05050113049897728,-0.022133523734259985,-0.010854537589166886,-0.04290151074335119,-0.0077746765526651995,-0.007161640325304708,-0.017230095613492563,-0.06162667933361274,-0.021817925041609256,-0.05551112966242926,0.0011013350996995012,-0.02700209002116269,-0.034824145632224336,0.023615580030635734,-0.00044910321934286875,-0.030870318080073587,-0.03916841788590705,-0.026092158399249846,0.004062521282051531,-0.0499757820763478,-0.02838167751103875,-0.004301310225433286,-0.05925294848520644,0.005216601154124277,0.026098628877200096,0.032503371070286495,0.045726934925801085,0.011815134705914164,0.006106268284209596,0.051138143383448714,0.05105912877240569,0.006163640990322721,0.021375089142138055,0.003852949511500367,0.0023085368824639113,0.03837737049107024,0.04059707891522363,0.050751359565670236,0.028403337180371385,0.02800637053280657,0.05636646195008153,0.06643814845110176,-0.0009571138846182567,0.03142799633148832,0.060608062928570815,0.06593805314159526,-0.02405516780579954,-0.02965306165289684,-0.0071517340993661836,0.02204906219826219,0.05802077332224972,-0.01744020077182833,-0.037599846142720175,-0.031121144081807318,-0.039991422482142894,-0.022926884650547406,0.015603227487987299,0.027247946671156563,-0.06964396752440773,-0.05411861886841854,-0.03839066562638192,-0.06001644560426047,-0.07092914569489385,-0.033256716894134536,0.012838452603642454,-0.05465853549195083,-0.022590581474527145,-0.05873729852043423,0.11733221189120671,0.06866869209726484,0.0431247056181269,-0.028172480986705415,0.12318898469412005,0.1945581286554563,0.10437065646017173,0.06460969179467956,0.1368620808915926,0.10543665382837421,0.14002731963606385,0.07559779611960946,0.03975880377948795,0.10756401095180824,0.17101251643365545,-0.017088125081816192,0.09961584186033512,-0.02195879138129942,0.07620130990684972,-0.4115843688683364,-0.6201402803569172,-0.5405432724981496,-0.3450661561153155,-0.08325791277129774,-0.3309296261213273,-0.22498279996587478,0.26771277598508714,0.4345285668601732,0.5525611052679138,0.3504924494633161,0.7672658588831585,1.0,-0.22696049802289156,-0.39419161998807295,-0.4450834683795813,-0.20356955211561573,-0.3032311666350367,0.1884430410439611,0.10497585508949878,0.12559328869169673,0.1469820473671675,0.1742555890660508 +H3K27ac1K36me0,0.005170698574555114,0.07890028558777247,0.0933949957288136,-0.017765572795886076,0.009038522576369425,0.041792920262894745,0.09327271925579746,0.06206928585779851,0.05743134939308886,0.038747962037204466,0.031385542764867325,0.04591713593833689,0.04381201428113083,-0.00570887056714891,0.047896592800698315,0.08693995797963741,-0.03189116484234925,-0.04115974322792407,-0.042140546833847145,0.1050247227563739,-0.0070252859749126125,0.04607510406957864,0.09727810849042783,0.043929985986557146,-0.031720392981577826,-0.04886980006451791,-0.02325460852265548,-0.06164704935461621,-0.02677245642577897,0.06059118388285077,-0.0088545459456746,0.1223995369828786,-0.011049074370483584,0.030802863359065145,0.06540198211570829,0.08026603301542536,0.079238933852587,0.11688324934676593,-0.05201839913871503,0.019852336727114405,-0.025667470850238846,-0.1161718132135932,0.05817066288310752,0.03086045211276008,-0.08162341271878847,-0.03286512703937753,-0.031105240437913833,-0.06845618376973553,-0.02781013637913309,-0.025864871566377016,0.028393380517764112,0.016798994151935486,0.0039534305212419775,-0.026678748771886435,0.06271835126636792,0.0783129826605026,0.002735713827177221,0.06532642709982033,-0.024142819783638803,-0.021095120791075686,-0.009977405200897838,-0.037737597519784144,-0.05313725289239682,-0.06136494040090959,0.03450299913920102,-0.009140910771139049,0.009311511081640226,-0.08380955542474931,-0.021749310745506633,-0.06310539414179389,-0.05588527539330132,-0.0614584099394152,-0.04090343459581303,-0.04350562509397708,-0.06399388604526145,-0.05729692755170905,0.030174699791459578,0.009286249597819611,-0.06868082753703425,-0.061166790022088566,0.0639179997807683,-0.024433306111310442,0.0034142056094584976,0.024485171001736857,0.05066856986123919,-0.08700171251843587,0.015748098264180357,-0.08362760183640583,-0.08802781956128185,-0.04605442002708592,0.0028560464524748984,-0.06535652192984967,0.05271201518737106,-0.0668761075241548,-0.00020586956617183987,-0.0009049250438660118,0.017518407226677087,-0.04727595654788966,0.016569294543979634,-0.05115760261173616,0.013341247813945016,-0.015959566205476748,-0.03361346863255967,-0.030429597409401588,0.014565199752865458,-0.03667933613389063,-0.032997938381698844,-0.07316778376435923,-0.058623568553938125,0.10796602854415656,-0.030119594110645406,0.004309067496141268,0.05043966420808704,-0.015737940656902153,-0.024327864512897267,-0.03017198761624033,-0.08202634762093045,0.08180625793010203,-0.06729361043474237,-0.09200802210271648,-0.06388290399895295,-0.03489200888708791,-0.06324859937232219,0.093022849404175,0.05422841836500046,-0.0433450643521746,-0.0142791369989784,-0.024026233179157523,-0.03404846371127523,-0.04600783075898502,-0.054567706650233874,-0.05000973275409514,0.07278939921837078,0.026223093751510815,-0.004568536960917405,-0.04702285492128282,0.04666722922448677,0.027490029954265707,0.045974071244286825,0.09065392574775816,0.01310073787520004,0.03348929062777582,0.061144641390413826,0.04583299478666178,0.06908361760672414,0.09120030358069056,0.06672001442436144,0.06721062621567682,0.020830301932259508,0.07617942767352895,0.050317586880865586,0.08003160656312962,0.0324186577838282,0.058314424057738144,0.0536475709816468,0.07621610115664565,0.044103841408962306,0.015680350499781052,0.041211714663068104,0.03911554040947141,0.03156756616173381,0.009386855472471946,0.04060754816316653,0.021689857893429473,0.038095961876586086,0.03952965089864757,0.04445969563560778,0.007649787001327568,0.002803546873117258,-0.0008440785662690643,0.035981383968287185,0.015244557633889886,-0.0013983224129499032,0.049478764840469945,0.04547840705208826,-0.006761381558372404,-0.007737299850617495,-0.022449283424590807,0.07513481817463759,0.02247274456181444,0.027605311165403455,0.025307885568198456,-0.004476623559840492,-0.019394432235870784,0.0016762504696191686,0.0029258294462837166,-0.029282293376500994,-0.03802840641475289,0.00158818273610105,-0.00443186174486397,-0.0231178136256208,0.010465041086909967,0.016188802252286777,0.024403536247978565,-0.0037843980875275573,0.012648885903661675,0.018748365533246915,0.005789278940829323,-0.00107335999760806,0.00713805554780442,-0.005459717335053659,-0.005672794114839601,-0.003474477131704403,0.00940225198369208,-0.0022884288820477533,-0.024647732108193793,-0.024070625593971686,-0.02315253377954874,-0.006694902021803415,0.01342335293934136,-0.02432471364584228,-0.03922551982377509,-0.04432746916360887,-0.04017449569519466,-0.046178260544275554,0.053792672272471545,0.013340270594732667,-0.02923515001914694,-0.005122153069723059,-0.013905234201526655,-0.045226464778796965,-0.02686277999136883,0.009838469866013685,-0.00022109897742723328,-0.018372802183688603,0.15881558821892247,0.0046827924225538746,0.04942407513438377,0.1186603594546991,0.19852821878742075,-0.007872335659328943,-0.07925357163958831,-0.1363886197016454,0.16567138271115706,0.38371948669637423,0.2952752078286692,0.17947973463629063,0.036840531285490925,0.22288418427719586,-0.001105351017228441,0.4909704645682109,0.27135593480562625,0.5226519962013794,0.20730505247137423,0.5813263245152951,0.5620565940868608,0.3791356793027302,0.35853278063686816,0.413647894440491,0.3506715929376026,0.031290658061053765,-0.07033832727872717,0.12813890069416067,-0.11831359829254551,-0.29248552688840873,-0.03322926200896352,-0.22696049802289156,1.0,0.7754454547765267,0.6546249549596594,0.527418313762198,0.27527846357354235,0.12056023468187657,0.08269176083194169,0.07129972477723251,-0.06888808551464114,-0.02972614511266892 +H3K27ac1K36me1,0.07212515998676679,0.09340419884407655,0.051769355163272336,-0.020869991811713815,0.04871723468357181,0.018842419592487506,0.04128556605037954,0.10869755036657656,0.008144588346859303,0.07975012775467367,0.1088934531352186,0.019762558204927477,0.1087719163680385,-0.006498251361334126,0.012146432916959568,0.08461722676505856,-0.006048072719974652,-0.0067603973297247,0.007208787532071491,0.08166595826343816,0.005573003829440892,0.05061557486610596,0.09476058621567396,0.029051651640503585,0.011575920082769475,0.0005942847454356724,-0.0434774755469727,-0.04455399235693993,-0.016175220965749488,0.07996365862885844,0.04690604204489815,0.10517406070541797,-0.03129749177898026,0.019225463366110213,0.033481717999662146,0.11180024972567923,0.061830956666383816,0.11498575393693844,-0.010463867402139431,0.03546784818388157,0.023432850491697393,-0.12524799584754065,0.021130182059833916,0.03849603678673058,-0.06718327612660066,-0.000780725477013464,-0.00862420749549228,-0.008551617537922152,-0.021915672664245454,0.005747872948914527,0.03689822817948059,0.05439634718173279,-0.003759213260503837,-0.0021675708134856076,-0.006336778878487919,0.13122264321293892,0.034353842424960666,0.10341850142981095,-0.03231310506795227,0.009962172549833677,-0.03787521945629163,-0.019072516044942485,0.0021130445764726566,-0.052616130008520307,0.03472697363000757,0.007269088605538125,0.022477400737468282,-0.027410192080640276,0.0009047540969729656,-0.011358714228501099,-0.02469709527570667,-0.009293868004570693,-0.0010587939089217084,-0.0012253231112234807,-0.023127338083361666,-0.03924585233394539,0.03525191869256498,0.007526287608309961,-0.03293115347363785,-0.026400966933022397,0.0417714882851072,-0.05985261271510206,0.01427787866713046,0.012619043633102804,-0.008199781655597566,-0.04045133261439876,0.032513723263898266,-0.025412087589067437,-0.025276884992786727,-0.014555817015110013,0.009988037622150031,-0.02293638092868043,0.03398627891369301,-0.02981782944583221,0.05936420292628103,0.040187971453774854,-0.007164185080400845,-0.03473552251698596,0.006695617869185779,-0.024799285474597064,-0.029832858379374057,0.03216665630885943,0.02433374345272787,0.003589826662944243,-0.011661104092700337,0.015724026626185956,-0.006107965233737167,-0.05047028375098242,-0.08766797814440766,0.09647254147103615,-0.022394798533300033,-0.04865385272543757,0.0022022244717112274,0.0559864252506645,0.02268257864933618,0.03177179784667251,-0.06750351097803811,0.07440437567504073,-0.0010519600726052341,-0.0718528804354757,-0.06283204094828608,-0.03135414647956673,-0.05742840607304539,0.06431096780337035,0.05737648460241763,-0.03382615808008913,-0.01492565917584114,-0.03900711063454399,-0.055113585418318185,-0.06534858247425843,-0.05014577915490861,-0.05108273917923685,-0.01032314844715707,0.040013410015706054,0.007752534837126247,-0.026398911253961432,0.02668076691224135,0.005879908213306795,0.010747155923376822,0.024396338674190603,0.004989282323986937,-0.0028912925814642883,0.023590870866456455,0.0038443045612105075,0.06760710839238607,0.025519710136509666,-0.005409783302827197,0.053187551816811944,-0.06799153319232143,0.008549263058581056,0.07767626094422286,0.07967597580022888,0.02921989237369838,0.06543820555099071,0.05666484058898653,0.05325159812793439,0.03247592753953363,-0.05806970986605117,-0.04547329045255524,-0.03630710528802087,-0.007533271779915628,-0.002410975887193289,-0.03331324688625459,-0.05983984030525963,-0.04194252360141867,0.04226454955976134,-0.03135852125167209,-0.006702615262705975,0.040409412126665406,-0.023859338154651064,0.0023763566582909266,0.031646088855610564,-0.002484006934187997,-0.03273907860950201,-0.0004826255373051595,-0.019922196105987795,-0.0010856921963334346,-0.015915452155261575,0.08983329088138658,0.025770189297914026,0.035067951108433026,0.032797481351287606,0.03701409512289547,0.029586972949721364,0.04265218896750642,0.041353593382392334,0.023579829271217233,0.015885537270514387,0.029044017429075152,0.0394481159834706,0.018519619217931514,0.03024505635139497,0.00013285933149978559,0.031158764308839813,0.0019089761130793592,0.005506064343065159,0.014993167063922345,0.018108608900403892,0.011551737975884123,-0.00648062864184616,-0.007795889554798936,0.0004869183826239697,-0.0032539341267479134,-0.042630598669050807,-0.038940743751356775,-0.04767474730557776,-0.041285336769042516,-0.037218573350984885,-0.04878611091152852,-0.04875889962609829,-0.05713284985430844,-0.07705003042391499,-0.09379656302851987,-0.06804434897010657,-0.04878839186034324,-0.031198833023431054,-0.04512299218989121,-0.07585014518209625,-0.0643883443827488,-0.07177065726261554,-0.08683632230073689,-0.05146845012782718,-0.06291224068263368,-0.07992202190700809,-0.0782186962401158,0.09355980866660717,0.08096422488925142,0.058628521352808105,0.11761396700044724,0.11039833858953221,-0.06059688651667321,-0.09891409719159737,-0.10416769878199941,0.22371305048415996,0.31199416315879747,0.24163914658645197,0.18589997892861415,0.06357509651066627,0.2841614774054843,-0.04924457375488145,0.5259049613164767,0.2490559123381666,0.5527337686875756,0.24510842317046092,0.5095187251967367,0.700019467851292,0.5418362303602849,0.4415383971288182,0.22122156541613922,0.49694648710704925,0.28670324620375587,-0.024681302804031264,-0.14591467098354793,-0.1617007743617195,-0.1432857378475455,-0.254381381286623,-0.39419161998807295,0.7754454547765267,1.0,0.8636457936526286,0.6335678693442218,0.26558808231373127,0.12273856702821627,0.20001182693227249,0.06072519636812835,0.01009618070572692,0.027887673465215694 +H3K27ac1K36me2,0.10213331718427261,0.09014992928415728,0.05086130433357989,-0.0038741633963800086,0.06604453790580356,0.008544067236608045,0.0016828544678719963,0.13866423641349485,-0.024944179691162204,0.07680002826657654,0.1109288405761046,-0.0074222599894784354,0.08725608334992738,0.005073432490640373,0.024305546696808313,0.11664039300704263,0.011469472175943901,0.009015217035504518,0.0459939026827643,0.06120975723928747,0.007614691909388799,0.07662586045648048,0.10847655311031369,-0.0023789022531637695,0.018353469325914588,0.026104206996463906,-0.05004743022469508,-0.023130441762117593,-0.03905278238387479,0.14097611994215242,0.07881098785884157,0.09646256669448898,-0.019443255842358533,0.016962871588350713,-0.02749875986740956,0.0818011325917565,0.04580042904417483,0.14564221404630406,0.030492985675434115,0.04068865782088494,0.013116182848593533,-0.09782033237434085,-0.02640409086119479,0.07577857009871684,-0.054593911245745363,0.045857811235051074,-7.064334967019476e-05,0.030430088611685616,0.018651625367279517,0.02943081419316697,0.038230853700599955,0.06370504515931626,-0.020865054156697396,-0.013470573449388032,-0.049545626479679125,0.11581280104840729,0.053269050059119964,0.1294654347730645,-0.013744347987560242,0.009701238306234948,-0.0386021822685009,0.021703718968943252,0.05478600515886866,-0.04984915705530684,0.0602619619673522,-0.0022022186543362234,0.030379137335895152,0.024155440413406788,0.02854990890218325,0.039842469067993665,0.02442686974083111,0.05020199181138272,0.044979471473986926,0.0558683010547136,0.03543904669157726,0.008313766326225682,0.0735514629106976,0.00456881743168467,-0.026502401656977287,0.02883233385938118,0.03481003654701657,-0.05706088178796522,-0.012570230976957163,-0.028941078864321065,-0.05208872594041844,0.004105551415885896,0.049741486090596,0.026178429875018134,0.02320567824136049,0.0443858866277869,0.017413655038200804,0.030893938236990045,0.01902494529007675,0.012703676967650866,0.12508387726165723,0.06606328497963691,0.025996696806176584,-0.035540280286268704,-0.015518097016175555,-0.06034622535667205,-0.05173202600938818,0.030744010873797082,0.05661669918824708,0.03517899516080403,-0.05014506567510336,0.03943985250426331,0.009578085207774862,0.004574861347829908,-0.04391107311462455,0.0453464882105197,0.01395228498840585,-0.038986207725614376,-0.04971120693192848,0.051435255519974084,0.06401501661184608,0.11269981339484114,-0.050252573901263656,0.0648254876257861,0.05497455629542903,-0.040447021594720765,-0.029702174879456377,0.008639888382069251,-0.030111396057095535,0.055428959731489966,0.06494925976259405,-0.052901110813090506,-0.052689745926969025,-0.06761344140593512,-0.09568039738874917,-0.11199860802186959,-0.09247486943683518,-0.07403706291120256,-0.05838760109408474,0.03746291947038716,0.03323645681306722,0.012912932654273693,-0.017176819598749424,-0.01912672643513893,0.012910169344479241,0.010208179791183655,0.02085075193316528,-0.006609725916442716,0.041092879638428476,-0.023023219250179496,0.0669992441181715,-0.0011129152825237,-0.02820309841741025,0.013080323847142012,-0.0942131822544121,-0.014255321670184945,0.06990539045748136,0.02505697224161472,0.006434843660820873,0.03661308180214552,0.05235748903601056,0.01693344693655962,-0.030740736618356725,-0.08147438487875873,-0.0990950270400918,-0.07354927443725431,-0.03786160703051468,-0.04061140379032181,-0.06412770129543026,-0.08593508886362443,-0.07458615654025436,0.02930442100832352,-0.06370299736603212,-0.002482962724868828,0.051849649728679205,-0.07154813268950987,-0.04365865423729351,0.03627035108424905,0.014765960835001734,-0.030001140175397702,-0.019221589578402767,0.006071466441541876,0.009963226670492225,-0.031114826060478266,0.08175693905649462,0.029241896171539085,0.00962525244320696,0.04716097355424714,0.05582840613796906,0.05110603091050782,0.060179855651367034,0.06280193329911968,0.05278902017487009,0.022178412988367924,0.051921985816229616,0.0651635144440072,0.055165853200293574,0.05772885446488356,-0.061082407450534004,-0.024253788299926422,-0.03737915681594362,-0.03575696877662739,-0.0377987189184168,-0.03323424241985329,-0.020215758788065977,-0.05505134783300635,-0.05263644812925491,-0.03482389061047375,-0.03352433623246539,-0.12027732020444011,-0.09452735465432432,-0.08647577801239045,-0.07596273735474902,-0.07197380558223411,-0.11962396824015308,-0.12071855397657247,-0.11099455300953666,-0.11252407964125846,-0.1254111542754109,-0.10573043012869371,-0.08207857413297771,-0.09352693105501853,-0.09860772292347957,-0.12075442751713542,-0.10901276210577698,-0.10680906814298168,-0.12402232117461016,-0.09613314242914377,-0.1146017074513011,-0.1248792559258554,-0.12606678430285356,0.07682882664351183,0.18865874114795642,0.0981485540594519,0.14977939397913992,0.06831844970705678,-0.05730084391098592,-0.06450727770042892,-0.051885428682294274,0.2568708864792129,0.2604360699338654,0.23675565985139665,0.1885892863400286,0.10199213861021986,0.33595120738015544,-0.04074229504075577,0.5764444037514643,0.19891842444920063,0.5818736373769077,0.14645710268248838,0.45746224721479056,0.6888144020980146,0.6297050358617956,0.5241443274484213,0.15178487702542556,0.48473991118818205,0.3834048303384039,-0.020312440075082486,-0.2381848708288194,-0.21951665605151507,-0.08417150304505604,-0.3339572549289392,-0.4450834683795813,0.6546249549596594,0.8636457936526286,1.0,0.7038810231524579,0.20921873921285722,0.14435003139667357,0.09112197040431641,0.0901691643277229,0.08824099597949354,0.05700787423545843 +H3K27ac1K36me3,0.040593714970034285,0.026672519461363835,0.10843714444123768,0.007819291173866616,0.035412652199710584,0.022730166604402875,0.026605824906180273,0.08793105594540347,0.01321760495086972,0.06139401912656296,0.08392932986632876,0.03220563568766118,0.0738942003011092,0.030521402824135953,0.01779825786181497,0.06510245653461144,0.04020534207628309,0.018952205600010714,-0.009798233751047132,0.05418423603981138,0.04757008636109268,0.02848383667967955,0.05502453183785588,0.032481636907952395,0.01529333789832395,0.002553210798336075,-0.033218044423920214,-0.02281797046018844,-0.03486583303247089,0.10910309042169625,0.04408005556464267,0.0753912127719737,-0.019586795289341374,-0.005650795208822475,0.020289287114184998,0.07561379228538734,0.01713778309941886,0.11849085817672893,-0.015768729241600023,0.023068493202222595,0.004394064520947799,-0.0676240911042276,0.016678951426909255,0.05022714164158975,-0.07761193720994178,0.03245320345974127,0.028643125480881555,-0.013951455758429383,-0.028460805388784455,0.017521043315737367,0.0785516386470212,-0.02419894814780831,-0.004947171583790857,-0.012419063942862513,-0.03786248518151595,0.07888322854712512,0.07006761387133326,0.08850232507596346,-0.04461728953693307,-0.04703114340901938,-0.03532217529065439,-0.0748266552448115,-0.01646071226990711,-0.02267557640093766,0.05371156939861109,0.037666303402352906,-0.04325718641175837,-0.06157360949434796,0.01101917093722728,-0.06142880056382953,-0.05819885595228102,-0.02211849635547082,-0.008755944456306028,-0.04228772429597575,-0.04300006029494536,-0.07603922270970619,0.03449713356309478,0.06748297620946686,-0.019754631752249115,0.007357610445116758,0.03064999168093181,-0.029097820560491507,0.01818439482172488,-0.05231722723850036,-0.0005229436598299904,-0.04035052330779431,0.03777812987224095,-0.010138856339758126,-0.012683247832727793,0.009319125234249444,0.02019785673362624,-0.03700720609403808,0.028459666326900834,-0.03440817053887681,0.08426377492309702,-0.04116668412367131,-0.025357987418413993,-0.055279968344042016,-0.05273423722413996,-0.09213242500291027,-0.05810164362067036,-0.047902063402870794,-0.022475251697829546,-0.015385679033485181,-0.011986525427221967,-0.00029939817264768183,0.00687645480793922,-0.03653002830882421,0.0006594412542989305,-0.021924394480574285,-0.011276020420201954,-0.02305957399812933,0.009415088949582375,0.05413825094898037,-0.01858950240830286,0.05011824377420706,-0.05629121011417895,0.02256679430735264,-0.006670095574497697,-0.07669435214259145,-0.04731735752820896,-0.016820494920431108,-0.021172463316865665,0.009770070112422176,0.03584890942772847,-0.05486448754305637,-0.03243987865620032,-0.04927914541380921,-0.07153029413231753,-0.06314744608902685,-0.0379901404348827,-0.05397463311178279,-0.013402597890963316,-0.018275818311295832,0.015351335327226979,-0.029904384875305345,-0.006918361951412629,-0.002592082995919173,0.01162615605379312,0.02103508661937224,0.011203761077913993,0.005529451466550928,0.05422839603428843,0.007313723139127491,0.024741340111261792,0.021154964391477866,-0.015224180659439375,0.018537390556724247,-0.056436940533966924,-0.01906121432152976,0.019952650176515447,-0.021567116626910233,0.009521032249123375,0.023115609470485153,0.05363640271556029,0.020362910589286458,-0.01936710610275683,-0.028210124773697585,-0.019430038247763348,0.006258103280259906,0.013683049766001213,-0.014073147549046311,-0.005456784029638432,0.002371898843397202,0.015732661363874252,0.05969812087773722,-0.029629266771966943,0.05541543470358547,0.041569668680922905,0.005194182859393112,0.00347024217984585,0.058903903768384225,0.028441726071372866,0.042558276428500214,0.033535878189170636,0.090237728775874,0.07937931922297234,0.02149690482236425,0.08010493561776325,0.06823386390322565,0.03429187552339985,0.04900215321406209,0.05089105366235698,0.04345241788822127,0.04781706868210609,0.03880883115315942,0.07618003556058675,0.0755873142973897,0.05200573746933195,0.043800268873151006,0.04528736202167149,0.07162640689649145,-0.025442769107851898,-0.0019566013656486256,-0.00618620457988715,-0.011375552909339653,-0.02658017235892091,-0.01845731386888745,-0.015531431675388854,-0.03723581039498347,-0.03542317650839205,-0.019914004839664136,-0.01493565585108303,-0.05200531046166297,-0.05271148596063906,-0.060780915156381544,-0.04748758643490857,-0.034037143629250054,-0.059107265850242716,-0.05621439828690401,-0.06129711446545268,-0.07448400067444073,-0.07015031765496016,-0.05254731743298284,-0.029173021783783032,-0.07232142609712064,-0.07566895835307363,-0.0683281756132139,-0.07114227076370476,-0.061220237704078403,-0.06730841883233234,-0.039033994950866034,-0.06619466684497251,-0.05700914366970432,-0.05686833296582664,0.03901152091872471,0.15114532572349018,0.11134908588478587,0.13050164347778884,0.08999523550616698,0.012211676889196901,-0.04913161628365551,-0.0004355288014468453,0.16622533729672795,0.19662694007381623,0.17110708084915155,0.11371450261414855,0.04274675655947309,0.19879966104287727,0.00831812475888306,0.43338346076966655,0.13840516746772347,0.4325320369025396,0.24382760429422454,0.35495898741492693,0.4225897855116927,0.5555848751071311,0.5914988337348673,0.1850121559775122,0.2635413253088063,0.18506815661599654,0.07121054423344879,-0.03373993273806064,-0.15772023814696937,-0.14995065460878917,-0.09119267929910266,-0.20356955211561573,0.527418313762198,0.6335678693442218,0.7038810231524579,1.0,0.1396049620882215,0.14105622095923767,0.19753278883659375,0.07581341376724553,0.11939214004086147,0.16661759605386206 +H3.3K27me0K36me0,-0.04733395131217922,0.027274743138812903,-0.12637586177323318,0.004126823307834269,-0.009439738929913276,-0.08754152265166468,0.11254148590639093,-0.047067645490176564,-0.23117370882955732,-0.0064279036175246065,-0.021025472808928865,-0.20871664681740204,-0.10530916607662714,-0.1577866762617565,-0.09366500818416515,0.005967382199923794,-0.02239984349811357,-0.019840697513756295,0.17496689059323423,-0.0677603740384354,0.042218747007080275,-0.013979337212155952,-0.06514456901963407,-0.209551725999189,-0.0380844509980973,0.1514670719639246,0.02311020248209857,-0.020423439687075173,-0.0091045258811876,-0.007199050638320602,0.12204176571417974,-0.05719334459882104,-0.13105821138561913,-0.02754941759653803,0.035586925945160365,-0.0014970059337646717,-0.02872333645167462,0.02734257145635019,0.09992186357428455,0.07653889678574262,0.10552751278049245,0.053574173579330184,-0.1945338111531878,-0.10371344468589018,0.12082124159791659,0.09181902485908316,-0.03592774318937189,0.11885804964778501,-0.006896017097638842,0.1372803260224489,0.019179773506868284,0.09111480964852028,0.04322858946323452,0.004294870236625753,-0.018291894952342052,-0.07135581100965392,-0.007904352998101263,-0.044376529531429953,-0.03204245063083339,-0.032634381090405035,0.08828234897377968,0.059784960834402115,0.09802915322362052,-0.017788202544473775,-0.12940696109028693,-0.05722182330376752,0.11105278654244795,0.12370984697317855,0.1326403239339027,0.1452233180244112,0.08747055268806138,0.07214069125173417,0.043419343861997785,0.08684971468802245,0.07011589507493704,0.05719520868279504,-0.10008241413824827,-0.11193373329978257,0.09281112570976446,0.010293848166845114,-0.1066404895634085,0.07435290338165923,0.00274618219220496,-0.031490877845439,-0.0625957819351013,0.10554437715281574,-0.07111288760607062,0.04798836870357303,0.04383439177482278,0.10437421019836249,0.058972942628859645,0.13855339781581524,-0.1958513347452332,0.14670072226356967,-0.013516187439224276,0.1044799653396697,0.05643644091365014,0.060087857923828134,0.11754794023195615,0.04143263039248226,-0.0037513089958859315,-0.015497054582865597,0.1099131638359241,0.13909118194989079,0.0257408661052428,0.1682416637196581,0.0439550095667313,0.06037609768935101,0.05950212503248562,0.03312924804452052,-0.13834082715477417,-0.05433290697784005,0.032606668712977786,-0.07804677588224915,0.08735169343689905,0.10257131623649125,-0.0849935979388771,0.004087460646427429,0.02722484243851236,-0.01596694882027272,-0.0647354874183672,-0.07091731721151188,-0.04507150485121289,-0.04975880608500022,0.023746662571743644,-0.07137251240155991,-0.017740854620544914,-0.046514517645559514,-0.05323380044267658,-0.043692284896815696,-0.0035118536775281843,0.002012602134907874,0.009530359114050655,-0.04308879001165894,-0.14496633869803432,0.1406183106158915,-0.01592003924600664,0.027668500795673474,0.031839716658494374,0.06209728781079945,0.08382853143678864,0.02858051908328347,0.09689285956969387,0.01196718976518407,0.16108841880732144,-0.027804749368897815,-0.05284927258659404,-0.07006527330892362,0.0052122222818042395,0.08101737493975857,-0.047234767557590165,-0.0667713042376718,-0.11937556360313917,-0.026897545717197067,-0.03644806375837499,-0.01997364284931506,-0.049599003089062135,0.022041777893058237,-7.882762948095819e-05,0.011956612398111887,-0.011994595067824899,-0.04961564559073625,0.007706080734918116,-0.008346642313459822,0.004839254596250934,-0.06637498781776346,0.005966015030008581,0.014991449865109125,-0.007416782710504611,-0.016561262465278385,-0.06460008950712146,-0.06365865981992723,-0.027546978882446983,-0.017211881009235194,-0.009425655815305415,-0.056466179524010264,-0.0019766830347012873,-0.08461580800383205,-0.13505698607422512,-0.10319587454940088,-0.10492868398748881,-0.01730418461287361,0.10991569020881543,0.12285053506507736,0.14034226219718832,0.1467359595114748,0.08238664325725845,0.014203652407494147,0.15557997420546626,0.1549694909048288,0.10185364520341984,0.11738203831023046,-0.05191016813791555,-0.08795560906589465,-0.061794968018202924,-0.03302101267462196,-0.059153225362707854,-0.11207695388171249,-0.0723680884710666,-0.021181511425605936,-0.08516261799007495,-0.10050381240689896,-0.0794185947817739,-0.016922082428832898,-0.021287449709326372,-0.021026994082062357,-0.07435740654625725,-0.08923296646751626,-0.001031869880272912,0.037910118987970406,-0.004981004589903349,-0.018844156648927697,-0.013544124908058938,-0.06182153692328092,-0.06764637625022213,0.041717269858570605,0.026386779326224914,0.03306501754394156,-0.012323915868141933,-0.00743861124027886,-0.006702929192075199,-0.07495571872011207,0.04267401902093026,0.026002262352006266,0.014647162221614305,0.0748502361044163,0.15423338028175906,0.06351795372142902,0.026579812861468526,0.22799248923324794,0.21704921870255503,0.08930360170808513,0.2245222617577581,0.07686685512157018,0.042551134313833255,-0.01880836992530257,-0.10426420642169533,-0.03729980536142904,-0.0033337998990326813,0.23423174053461202,0.07056441800656858,0.032514666058332746,0.06337521208439185,0.11748078056964636,0.4535392801214335,0.37054766557476443,0.24966716705383196,0.25591316629012817,0.335302402050166,0.1772169496848043,-0.01974713418626326,-0.09586370041011953,0.0022411074093602887,-0.19293285016497122,-0.27351224097980387,-0.1735159738694196,-0.3032311666350367,0.27527846357354235,0.26558808231373127,0.20921873921285722,0.1396049620882215,1.0,0.2313070769905293,0.09557917542605453,0.13284592154584335,0.058123021764638794,-0.009865730250298556 +H3K56me0,-0.015090300065203994,-0.053513503316877764,-0.050834431561577964,-0.003100347914881825,0.005705272408247284,-0.019569426747200577,-0.04050733269536596,0.0037405580384595044,-0.08776020968570522,0.03966952042452374,0.0011558695071556284,-0.08060476075945129,-0.014288222187779538,-0.06418446823763717,-0.06342077138264851,-0.012890307656524765,-0.051147736321620875,-0.005917663656446968,0.05172871656019721,-0.06621076934104805,0.07607585612170818,0.0197833271803994,-0.0016317108796659204,-0.06873727297034675,0.020205185592816224,0.06891399004519144,0.010825912484330343,0.029502979663023298,-0.05631624297246799,-0.03662780187759845,0.1211539054528195,-0.04254995022300491,-0.019646249378010613,0.017695677178576626,-0.02716323189835756,0.05472763190699328,-0.08559813062233182,-0.025026515728557477,0.0531566267794817,0.007967949174084313,0.0779284104237028,-0.026966469835593965,-0.06688370437235011,-0.021589757311382844,0.021594603805159714,0.0020550626118642254,-0.019921945893890444,0.04064309297198213,-0.07394848072082699,0.01988750285890787,-0.004782107641468083,0.0873100821378022,-0.0236288169151172,-0.03049324718475084,-0.09707979992293263,-0.05117992687207962,-0.014671169110238302,-0.09465884270191424,-0.01683366629074262,-0.02183129981822713,0.001381928177429397,0.05510188793701615,0.023488461600790524,-0.021355995843962892,-0.011182006276568781,-0.07114056181051093,0.015787692758372242,0.05538071766234826,-0.008289142661910354,0.07253956918644613,0.07215166192456861,0.040847996481660084,0.026612711840631874,0.05839345873771413,0.05867590315700675,0.07398354988554291,-0.055877985224388416,-0.0795785365330086,-0.0037498140246515132,-0.007639825210876794,-0.07475159231809521,0.03608030432405401,0.027690250984853636,-0.03636406417526659,-0.06583356347402917,0.02486812998382544,0.006055153847394168,0.010735078506361833,0.012364728472334921,0.01726404157271468,-0.005919649959268002,0.02545040175305292,-0.07460564774381466,0.025031621630534625,-0.02527866998132346,0.03027236316005844,0.00300424448833757,-0.011401127058693752,0.030110127765827555,-0.0287228828649287,-0.05695645105551745,-0.0032739529858620796,0.03586205947760892,0.031779297350292425,-0.018778940427015705,0.08052827774985112,0.02599458686668589,0.038628794653860266,0.029325982862950586,-0.019618618919296508,0.003086908575623919,-0.05455687828824264,-0.023785319680144378,-0.014756361541498163,0.014043309938729194,0.08150268802249795,-0.020051190038578248,-0.012797262343517076,0.020482077933338106,0.009267954246265309,0.0045593689236368305,-0.032221904702397566,-0.009159548988544852,0.014413532119420727,0.038101143888356025,-0.01466010132537577,-0.031099182670999946,-0.018293898918908463,-0.033709679262335694,-0.020709022458637864,-0.011840865939253415,0.004554449238157469,-0.04392187822972771,-0.053076339064774346,-0.05979481391982053,0.0036389792482398394,-0.045060165246772525,-0.007774476291273348,0.03837953429590882,-0.03758308819187617,0.04159937154523007,0.025980269878004884,0.04080574391733381,0.004130814320118294,0.06522359315804954,-0.03777054945966465,-0.062435543695577,0.015148083378068687,-0.05115308191555951,-0.02152090016947419,0.010255675298147804,-0.030614166278629975,-0.041454787671805805,-0.026419159125171912,-0.0004581681674407856,-0.01736431653398398,-0.04564840378378017,-0.021550654407212766,-0.027167556442085482,-0.016117586260898743,-0.017914245381109667,0.011404321745575891,0.014702002450270358,-0.021214027772291536,-0.037650979827923065,0.040715993134231715,0.009111374609393283,0.01599407158486687,-0.037769414123755556,0.017218754116750407,-0.02143983997594826,0.009124179175741385,0.0615187151418895,-0.01289820099378472,0.008296811597077913,0.086893125434836,0.0604273951687739,-0.028457093280824748,-0.09931690530065769,-0.07235725141529459,-0.027594910065670566,0.053311356106796604,0.08240393705061659,0.08727916890790463,0.06893548287339953,0.08115528124497388,0.0963248640596895,0.082297244747399,0.07097337810357579,0.09810770761344552,0.07823734089521442,0.08624582202790673,-0.07114441048846105,-0.048057691388628795,-0.02620372930055607,-0.07455306852962998,-0.056462761651647896,-0.03386233890297618,-0.012462967088755189,-0.07149779202158288,-0.05147916592628062,-0.02897282048845513,-0.01622715084868368,-0.07124972804004004,-0.07932726582236939,-0.06347718753754064,-0.05440362585013312,-0.03377659933563552,-0.010810728774531394,-0.03444956813939216,-0.04830517414972989,-0.08311833651302769,-0.06924882607676465,-0.03902326561736504,-0.04253321174373286,-0.06258748320939397,-0.018124630753075063,-0.03919404629129915,-0.06655155530078483,-0.08770833055940479,-0.06307900931505331,-0.045600779833071536,-0.015419502947834,-0.01777208305052023,-0.0539115376926136,0.38132504638143083,0.27671853681545505,0.12793422526069453,0.09315955379710064,0.29067060020993896,0.39673021854524626,0.37136241669848963,0.33596924009340023,0.1706808609397862,0.17597847823721935,0.2292566802704875,0.21937205394432777,0.2343805356295298,0.12712428374923407,0.4632933496809382,0.22777848030376982,0.287523619107341,0.1629097999936852,0.16228608376277526,0.12323023045276735,0.15994969910843101,0.11352481593774602,0.22544890048029248,0.2128830409150824,0.28922387257839,0.2443092828878473,0.34179742203233626,0.2033894986193381,0.31965729065234144,0.25890839603052773,0.15258609558832048,0.1884430410439611,0.12056023468187657,0.12273856702821627,0.14435003139667357,0.14105622095923767,0.2313070769905293,1.0,0.1818036940611126,0.4569728790145602,0.3531377234460254,0.18508860312276848 +H3K56me1,0.03849637076363528,-0.011798804802610667,0.08133455135136693,0.010449979183631133,-0.041540741350614835,-0.06071871899930513,0.013079839454991807,0.014590803496330426,0.00019761172109035517,0.010624707459029771,0.004024915187193376,0.025299014224021383,0.0032648020616064654,0.034325346177384114,-0.03626562988450186,-0.06740477264326443,0.003384540041536331,-0.003305441434234255,-0.012781900807330797,0.002075460989721228,0.03061821762749594,-0.028838416707301674,-0.032110192026211154,-0.011455395527210985,0.02683573539019411,0.04852306157058804,0.060002693750072535,0.021291521862533965,-0.008941798051973607,-0.006202738918441528,0.017689701768089778,-0.011918605314219585,-0.051358712044579785,-0.019986436606110908,0.04250844356271833,0.05956384219964668,-0.013864194523696785,-0.01821660178571203,0.015410368406549503,0.05533403090269182,0.04454082791416476,0.046327281671412146,0.04528768833044462,-0.002294763912040604,-0.020219948253922468,0.023376105584813067,0.03042711005576729,-0.024116599073873205,-0.04580358618717631,0.1020126745787988,-0.0073798606998798965,-0.1088318925156228,0.04493989073872959,-0.03345267628313639,-0.007958687362546629,0.05150019890879947,0.013253935142202699,0.01425690560383402,-0.04668253993047541,0.004859577941378582,-0.02038197617303858,-0.03015067734493647,-0.012764842189129554,-0.057881610181536605,-0.0026516918784456572,0.0350179449206665,-0.04654994834408137,0.03253798391716702,-0.0018936782351074881,-0.016549594754947352,-0.031366949191393524,-0.023560041663722997,-0.03279640724735332,-0.025689762464883237,-0.019949999068826833,-0.036831111186854434,-0.0016093481562150286,0.038111266121974796,0.053479904311120235,-0.011312240777242756,-0.002482809106712796,0.055057405613154364,0.06653942241416036,-0.05592902272709025,0.01968676853204417,-0.010121487721028668,-0.032174770303045545,0.006268195591308807,0.0026228155738903824,0.024914419745398052,-0.014455027160992836,-0.019737497044951063,-0.05704419399997383,-0.013203551623949197,-0.0185350070483904,-0.051174305927479034,-0.015160241080751173,-0.06047619001261544,-0.003325603362892236,0.011084865319565783,-0.04542195828381532,-0.1024376766022427,-0.042531972767434624,0.0031332915112786738,0.03687857714800589,0.011437101699960317,0.04630395243019367,0.04862247300815805,-0.04792630691436401,-0.032814418436253386,-0.011848977254321371,-0.06718317893680062,0.006728953503686267,0.08355899876552492,0.0021879103081342993,-0.00508598219258467,-0.03565330570977429,-0.08571954358044508,-0.0025947266156644017,-0.051696242551573325,-0.03577401156801115,-0.01811363138755648,-0.05454417776054421,0.0155672231420307,0.010759139875964321,-0.0021475183624719354,0.04130740257936318,-0.004752470173911596,-0.02137746355157532,-0.01120001917616759,-0.014140359422574215,0.002904335845522529,-0.028786110661598033,-0.01777258723689062,-0.029952420974803197,-1.5545470891043702e-05,0.02254461784570884,-0.050787823009747664,-0.010411588854517989,-0.01514319588362709,-0.030262529122159338,0.0030969136377588494,-0.006497064329191041,-0.017714842469995537,0.003956919389660303,0.04276452960079202,0.010208254277844013,-0.0012420645685212353,-0.006696316410623819,-0.0044790317386027715,-0.041410255457982166,-0.05392676310675713,-0.04270097627490278,-0.019923889682131622,-0.033743273358153754,-0.05716192518965469,-0.06821711151004672,-0.015867446727423174,0.017163516986712302,0.020365762252376518,-0.033969836291921206,-0.05036415773464658,0.02221755196106657,0.011296197607034819,0.019957973944739513,0.03748811745443442,-0.010335501347244846,-0.05031282528905165,-0.07139000016488915,0.0022566595534764936,0.0422862277375587,-0.008902720758829983,0.033393572293409786,-0.02488606619966182,-0.04592003066742647,0.03520644369796828,0.061712975387344236,-0.042311929683202125,-0.06166594783047844,-0.04644009520686789,-0.039808193068073976,-0.049467012536994696,-0.03802830061057024,-0.06776580888915815,-0.07250973012458144,-0.05981216024250527,-0.022733243960719404,-0.04646696816300709,-0.05756752232344261,-0.04324727616219097,-0.06020346805836097,-0.034208679727592305,0.0793115838600393,0.06678494675130972,0.07567504673297494,0.05482174795695315,0.038242973142100074,0.04849067160069298,0.04322269012674001,0.04659792331877104,0.04660630085490677,0.07209765763774137,0.05976008352066832,0.05221942245471842,0.053024512338894145,0.05586711342505941,0.0567372347929837,0.07519273989209607,0.0793243676209461,0.045620776993855854,0.06236446078195661,0.08135016924732483,0.07585657737370866,0.08282251691475123,0.08360937025246283,0.012651278227486986,0.04838546456615416,0.06100595122177187,0.02830608216531751,0.06835631126729524,0.07437077139195233,0.0657457199663451,0.07514257106562942,0.08850600809519017,0.04977143354100591,0.10544268248017125,0.09773854994459623,0.10150717751356705,0.09400293706638244,0.1095808175096614,0.16172906754033284,0.07740644804766274,0.06507965267659845,0.13808975167447524,0.05226299955010035,-0.0096396570514588,-0.023260203768984015,-0.012354920519933928,0.024201310267315257,0.10565511870050583,-0.026508479042413904,0.043335647333769295,-0.004186195890179437,0.3864825675304405,0.04870186879526138,0.056127358706131954,0.023261336408835872,0.08958014472945533,0.06161225956982711,0.057678549337055844,0.061389187833049065,0.12670237322840497,0.03859592361935249,0.07370200889665225,0.05750564337822979,0.06792866862446735,0.10497585508949878,0.08269176083194169,0.20001182693227249,0.09112197040431641,0.19753278883659375,0.09557917542605453,0.1818036940611126,1.0,0.09556490197434621,0.13640782202456114,0.3095911054257125 +H3K79me0,0.02600360396754287,-0.041461241066900315,-0.069508567875402,0.04961490887439416,-0.04293262058198245,-0.008097917868234656,0.018268320275873804,-0.0391197104144652,-0.021996406839646068,-0.035872019002892115,-0.05584159033502485,-0.01407983653315095,-0.0002348845987457272,-0.025710478486659305,0.002435845270576443,-0.03486297778576689,-0.06765813656779436,-0.08341692442920497,-0.016983781890012695,-0.04115234317034231,0.06927490459308755,-0.03907456974577301,-0.05530336319372564,-0.019015249243988598,-0.00013910443663633286,0.017775188354711466,-0.008702814841920455,0.047475416869647596,0.002444072685666893,0.035983265009510136,0.050205326888448344,-0.012784545464373027,-0.03164598195011859,-0.017544732881732788,0.02808246654231085,0.016509163375538972,-0.009718991453655906,-0.03360912271418019,-0.0014322281179748753,-0.06003254241634491,0.060966959529317834,0.052423989913607555,-0.008486067265628167,-0.07485512138873826,0.0202524058285393,0.05100684303782353,0.011871672175181073,-0.0012539979623636083,0.01007296418245781,0.012859599119491052,-0.0010896821178497625,-0.004964768096512655,0.04049973844348926,-0.044919268602377715,-0.007737617075901334,-0.00482693284372437,-0.0409629663151211,0.035049727078194176,-0.009514917984787053,0.02994789562357272,-0.0008909178597971567,0.007145344818413919,-0.009069344087846164,-0.041781354166206645,-0.004130760896791143,0.0006485167931942435,-0.002531461320720237,-0.009582004780245795,-0.02329186966433116,-0.02154197734242432,0.0018589323958042479,-0.010290652498865412,0.006821104435414365,0.00885041307115697,0.014174806970277894,0.04351115290104866,-0.02076344774890117,-0.004517801004003902,-0.05111178503861172,-0.04368472739464006,-0.06584319733470843,0.07135254491005234,0.038650707660670455,-0.030129103856949363,-0.001102776458020581,-0.02278195800704919,-0.0026058443389660063,-0.022017616750386854,-0.03873213567930242,-0.004427477405903708,0.013528524727031728,-0.024802285650982313,-0.011524036669030017,-0.04528798649721037,0.001273608075482722,-0.006722761334640734,0.02023290078271055,-0.015410994397691306,0.015259247362324374,-0.05705433861187885,-0.04217376502813228,-0.04690524655323558,5.638145301030199e-05,0.0027014809963233134,0.03949298840534001,-0.016406999173551193,0.03514337678217606,0.0308157855419232,0.025849068259063804,-0.05629220077617655,-0.011256393304847925,0.004044756430805473,0.0012291161934761825,0.020350620530421484,-0.03726593910052041,0.06810624370947164,-0.050691415119984796,-0.012801040432321175,-0.025162632564321767,-0.023783382670629658,-0.035862703711029606,-0.03397186875152316,-0.039368594430968115,-0.006910001853053636,0.006810239631447387,-0.01582878173335863,-0.04184917777364568,0.018675423494757544,-0.0019205203713085325,0.0007800663898291946,-0.006723453123063783,0.03150057517338357,0.01871114089754476,-0.004560669100480442,-0.056192702087472055,-0.033815572563031915,0.011187177479600886,0.048530327384709096,0.023127171437178223,0.02067786511526447,0.03158368029311358,-0.0020757471407610623,0.03579470041024399,-0.01034653226077456,0.0019115093619910379,0.04012835445552276,0.03072154512093723,0.0378409167744407,0.04412852300656259,0.05295578999313684,0.043221787449703626,-0.01696435222738061,0.0010866959621985107,0.05065506337836342,0.06134197074689005,0.022695527735300855,-0.025899347054889724,0.04588499449841474,0.014579362789227453,0.02198553655291134,-0.010727110944588218,-0.05967580184120627,0.012152957764757676,0.017656077071512438,0.012460093305126768,-0.01128181424689043,0.03207484874303406,0.029436755328866887,-0.03331568828168468,0.0003307162189674725,0.04606550753128417,0.010106031238049278,0.0918183849171095,0.030235688613843598,0.008673124610423693,-0.004566625873383035,-0.006388098603079935,-0.004652577720608366,-0.051050340361794615,-0.03322352252235774,-0.04164331241614581,-0.027932366093450102,-0.035411492389130626,-0.05104209504304337,-0.04139002947362023,-0.050522017739639366,-0.05672788956617275,-0.022978923136245076,-0.03303276932890827,-0.05971533617472543,-0.022720117335740468,-0.002586808524372423,-0.006284002917818555,-0.009852620743589028,0.01884803363589638,-0.034067283108345336,-0.03279297962143815,-0.044048788365474066,-0.006571077519226942,-0.04059288716826057,-0.06572799858225399,-0.05318550563316544,8.005912907207418e-05,0.0021289792503975573,-0.015186579009118949,-0.0591255624721372,-0.07417927779896487,-0.04197383497878934,0.029690923401935722,-0.011563060331305457,-0.04044454333760123,-0.039950020985106964,-0.09466319219234968,-0.06934495917160925,-0.01717040477595195,-0.00961815918742621,0.04945710290588341,0.006571911699397263,-0.003247144086354664,-0.05060383009525216,-0.05200610290136811,-0.030143898476705292,0.03610338544342997,0.016925217505480965,-0.003480709804189238,0.24392995335536452,0.13437953361152144,0.06183844840149615,0.07758076028001738,0.21726661587295434,0.26191170041720796,0.22281764469140533,0.20847067192283125,0.08867226601559582,0.1287591020401773,0.15031955976992648,0.12521632979592381,0.1386902702389022,0.0403744770196931,0.27698860146453447,0.11227250608362646,0.17230342711198565,0.06600223004138472,0.07503890192428495,0.110522065543424,0.11522220640763071,0.09599923664713625,0.12869433183260626,0.17102181952946016,0.19714511592690206,0.12610015978493475,0.16719027792265162,0.16327058159406851,0.18614387034066532,0.14604664403470077,0.08467623655925884,0.12559328869169673,0.07129972477723251,0.06072519636812835,0.0901691643277229,0.07581341376724553,0.13284592154584335,0.4569728790145602,0.09556490197434621,1.0,0.198830938904763,0.049577990936932555 +H3K79me1,0.021895033149677917,-0.02851845115606883,-0.05464069338893814,0.011765141673079139,-0.030498233159289005,-0.03523334098226005,-0.06150569291596647,0.008989280689361317,-0.07929254078755053,-0.02162894970620966,-0.03233534219285799,-0.08061539764000497,0.0002513683752015937,-0.04183172530683848,-0.10999820246532876,-0.004614496740960744,-0.00010550611393612684,0.03019771208246978,0.09217031231294798,-0.1016975816481612,0.00043341013455594425,0.026665334612021918,0.006821796464734246,-0.06111089589327629,0.005035919056556965,0.04282374643719122,0.04307470058521575,0.058168023710642,-0.019843186034725242,-0.0006646269351930821,0.08865977377397494,-0.08994022889352052,-0.03220325317212145,0.019830823752812997,-0.06319175090304331,0.07005411810791642,-0.03773473594878216,-0.01160564491358638,0.042472717850672755,0.02495663343813351,0.05881011508300518,0.055006375899057096,-0.06550479389507742,-0.021812725557128303,0.06412269517674941,-0.002632739259204245,0.00047811047787882507,0.0747002681781018,-0.05410347504597935,0.007293570623152406,0.02004916596700866,0.054620930163788724,-0.05416112151012921,-0.06652817750248123,-0.0669308343302338,-0.01641248181507246,-0.041273464756529016,-0.08971413793221904,-0.0033559858206922916,0.024560435218929904,0.023139725730072478,0.07916551157957105,0.053397954659692416,-0.021055043021773894,-0.006516181815279857,-0.10048006300079215,0.03553374331801713,0.07967649769940352,-0.0036475199796783208,0.11849947892267917,0.09160837210307213,0.05719828579409557,0.026167363320840478,0.07127457553511472,0.06690909671388018,0.07379849405051074,-0.05562639428135564,-0.09943634763184213,0.030745887435615307,-0.0017900482931566335,-0.04934324732110935,0.05812626527251721,-0.0028406366440911464,-0.018636938815216324,-0.0665059637739287,0.027324496827201644,-0.011772754178995178,0.034291200470033915,0.060365093933189874,0.03405115922734224,-0.02692028199943443,0.027620235210992265,-0.08253013227964545,0.045082311205910906,-0.04141201217532876,0.0941057113684931,0.016224202004657056,0.03549933020374486,-0.01947231072649435,0.038545190380484755,-0.05042749215563019,0.02419342949902004,0.02774157467713305,-0.009607787388667266,-0.04448615167956513,0.09079173949527043,0.055617087447956355,0.05981051467291525,0.08271222683659335,-0.07577781542469063,0.027773390750357535,-0.06907575848723661,-0.035423491183321415,0.00508897133011089,0.050632445273065575,0.13977083858732728,0.024633109722634352,-0.08788244878454271,0.051970921553507195,0.05634484977023566,-0.009160238049917672,0.007773182412491048,0.013343863909507876,-0.056915171885060144,0.04907088326174302,0.0002242559560362049,-0.0839282369862367,-0.043392500812610854,-0.030348003079162463,-0.014083262374689428,0.009420197973247111,0.03285717008791201,-0.0757827917265484,-0.022671304532213575,-0.009661759106665538,0.012419459423080738,-0.056319287472719456,-0.004764452735195801,0.01928125917637243,-0.061378760236024,0.03094064158354421,0.036771288497522515,0.012312292618840273,0.0235433003289133,0.028773183455512823,-0.06836352351431081,-0.07316989744875434,-0.03680104047848293,-0.03625767632180188,-0.056532054359929966,0.03215104899363334,-0.017298745899379343,-0.047378782125683375,-0.009303762996772139,-0.022150875416320662,-0.01356252572631483,-0.011025845647978108,-0.05253274259491853,-0.017209722828155933,-0.012296649882777302,-0.023997752885736495,0.01399530306037242,0.018080137509109494,-0.03065714932174713,-0.028307367416974153,0.024748895365173346,-0.015015484930324303,0.01746689166079086,0.03492485185155517,0.0206734633192106,-0.013463962853518535,0.01793842057869787,0.017905146035403913,-0.03478275304770843,0.008484725403322265,0.06045594897935624,0.0558174850605381,-0.029288186762757986,-0.02574795164976291,-0.042988252022062724,-0.040012178124151886,0.0012127075696647582,0.0901889774284035,0.1008217774263787,0.05669552994704011,0.09152925692829308,0.10383677527848985,0.02929261558391293,0.06809611303770138,0.08857180688472051,0.06591593841778416,0.06858350828143063,-0.04756508711536322,-0.05825021512292549,-0.06471287313241963,0.003959005337750849,-0.03135237456084678,-0.05114878330669759,-0.056047136859833535,-0.01925371278417326,-0.008851656293122187,-0.04280017567819552,-0.058236160976768,-0.08383951394156713,-0.04116785714515334,-0.004982497879840055,-0.008549131285469544,-0.0262790360023854,-0.05740101006216474,-0.09585637690607493,-0.029974946983998642,-0.03495621817875019,-0.01153456396927218,-0.00855920029571937,-0.04236271222650238,-0.06720663429271213,-0.049109553019720496,-0.0684339941617431,-0.06482095609321734,-0.02839379867525013,-0.008740302629470906,-0.025247792742240285,-0.052344671153739204,-0.07136297483379975,-0.0813172469948959,0.1836948472976081,0.22113958632240277,0.06439023902718254,0.056650405727826536,0.023550115013400957,0.20024377135452542,0.23221299822049885,0.2011307127225436,0.1015775550113353,-0.03798694855303191,0.06114646041379874,0.09829716668235143,0.18427885902327482,0.06896158455736212,0.23399133339073117,0.1100121965012643,0.08520883722412047,0.07258312535195262,0.1505221608286489,-0.105459107045222,0.006398367773895659,0.015972151295709353,0.10535007763835123,-0.062266213573104134,0.08724696534081654,0.16683064439447817,0.23511353857066597,0.009595185698304103,0.1749816636424533,0.22384640981782913,0.08246887150780012,0.1469820473671675,-0.06888808551464114,0.01009618070572692,0.08824099597949354,0.11939214004086147,0.058123021764638794,0.3531377234460254,0.13640782202456114,0.198830938904763,1.0,0.6796422834818925 +H3K79me2,0.009091890241570585,-0.009319413243138144,-0.010630711491055548,0.04242608670273421,-0.0058614184991551506,-0.03386256794961398,-0.032602598143696565,0.05829796540779538,-0.07505825425569744,0.013074835317099276,-0.019551417826114855,-0.07516035544099176,0.007385491079233834,-0.044449228449409614,-0.1460845020648019,0.01936642007797231,0.029617991167995565,0.07013416107122197,0.09604510815367286,-0.10312453140538247,-0.031115118169944278,0.04883232156912994,0.02599432028725669,-0.05821326864940972,0.001926662264775507,0.08601369223476572,-0.01650220755804457,0.010547053988682524,-0.018873262972459174,0.025782014744089875,0.08154662745593416,-0.08608805259985415,-0.015352830895735645,0.02704859346943356,-0.08065934723628886,0.111985463984933,-0.03226563696180461,-0.0011903235533621676,0.08112585068607461,0.05387784574434401,0.04936260145907116,0.08189735561234157,-0.04409639274785395,0.020398983612370795,0.0914974515223424,0.0144380261739394,0.008548074884518062,0.09180226958372555,-0.04115620639189887,0.08222243937652356,0.028717518097438503,0.0211785626799685,-0.026561112329521314,-0.05434782674559863,-0.08096067352494143,-0.025763006855996206,-0.024486763633569938,-0.046188559052497566,-0.01567607262032097,0.023516935806945027,0.041428391582143356,0.0504584210151005,0.06518921642795214,-0.00543060417737911,-0.009092983101062045,-0.04667221338888567,-0.0007195784526106318,0.09128662165703501,0.05354818361782863,0.09569251291645407,0.06466516076166212,0.06965839208325056,0.045292911466421455,0.055747366312851925,0.061609381630005594,0.03663778469518453,-0.046413104360919874,-0.026940248654001454,0.03528923248614302,0.06938099701145196,0.0031432666254858277,0.021729318614101743,0.05213006647786126,-0.044872708264871025,-0.037392820034866193,0.07429073810564849,0.03774645867507971,0.07523171771858621,0.08433403320650593,0.08121049900898322,-0.008904724830071258,0.056502220743091254,-0.033212941357415926,0.0398572176240434,-0.043276382928081863,0.057781571215276765,0.012036808631875374,0.044246199691399174,-0.025034832059709775,-0.027083720465934245,-0.02743272605977525,0.010143947420089693,0.05372915316559536,0.04866360551566304,-0.054967109035293435,0.09396494345144132,0.0815394228556072,0.07444700821615348,0.10489587195279121,-0.026491581553439558,0.03972895168419521,-0.031051084129543893,-0.007502787565012846,-0.008276970684028979,0.058827937554155926,0.10722164687424472,0.04284702614553131,-0.08452570794856441,0.08429646801757933,0.07841633832978007,0.017639713392020293,0.030662150547552912,0.02159421527973285,-0.06389067353695782,0.05123780297582589,0.006786445329295845,-0.056953732108418066,-0.06597072776542603,-0.04658858252521665,-0.02796967718516849,0.0024943140706427756,0.013485542905116166,-0.02245380074645051,-0.015349535036805936,0.035572241311631676,0.01993678099180406,-0.040115762577402146,-0.044478236102142014,0.025435394028895015,-0.07159978000534802,0.009510616176094808,0.024291944919147702,-0.003763129209157764,0.0049019082607483725,0.024533834766748107,-0.05950501751388247,-0.059067531418891595,-0.06529267632194907,-0.0401037959152533,-0.0337196292799206,-0.006418099208064138,-0.05093589762413418,-0.11243380479785482,-0.043830161630485046,-0.03753439114367303,-0.033757635214512346,-0.03855771666465846,-0.05305174105122539,-0.007980487087255368,-0.016416779177922308,-0.01971801637140066,0.008093654172850356,0.003004056260553417,-0.02078116310017052,-0.013432785590357267,-0.028226749531991495,-0.03515789086597697,-0.002821930674922791,-0.0035756599773598898,-0.019495822211873775,-0.028322034016582575,-0.03943873679043691,-0.043520629696085965,-0.029993320564090657,0.012229431589641925,0.03444098966394053,0.015945719700331214,-0.02934540185079482,-0.01821723948358166,-0.006725987890692941,-0.020096966043641196,-0.005287436646077363,0.08292808769122272,0.0684755940600916,0.05607852515910057,0.07980161537423995,0.09954924238365648,0.02484292351214549,0.06498945938775522,0.08457960895611542,0.06953142829810684,0.06572043237431766,-0.07533075431966987,-0.09224630799877843,-0.07343008421642705,-0.04739447602821995,-0.05802861762114295,-0.08090320976241376,-0.08560806126458448,-0.04781567066591192,-0.03903589800294635,-0.053808393511687896,-0.06912246184181611,-0.07858108488478516,-0.06404119062754454,-0.030608881621095037,-0.027897067654556084,-0.028070910559710244,-0.06716544147762103,-0.08595583517190081,-0.0508065638888951,-0.040379297858241736,-0.004398063966723349,-0.010798256117572055,-0.05013634278321715,-0.05388498052298116,-0.07300924827412615,-0.07220277131634863,-0.0707195753030975,-0.04239980566538693,-0.021745191779938833,-0.04612882966915757,-0.05530465640230921,-0.04583853142542449,-0.06190701083229029,0.11234223836007577,0.1344104558721554,0.05238726268152056,0.044714480040190116,0.04988542444295457,0.1694628797039523,0.1575923812053402,0.13195815965919022,0.049684280647944744,-0.03784384004448748,0.024416531852029646,0.04278101528200205,0.07074742843043538,0.008854289744182836,0.15585925622871633,0.020043059075171347,-0.033505590070352115,-0.017637766884898307,0.23162313336980847,-0.053936139270258664,-0.02637548800019565,0.006628175933137517,0.12834314735055938,-0.013477165044793174,-0.004328607216701437,0.07353752396686204,0.2166478388313372,0.047650365825089275,0.10079620499579078,0.11352962811492358,0.10882361989468738,0.1742555890660508,-0.02972614511266892,0.027887673465215694,0.05700787423545843,0.16661759605386206,-0.009865730250298556,0.18508860312276848,0.3095911054257125,0.049577990936932555,0.6796422834818925,1.0 diff --git a/src/python/EDA/linear regression.ipynb b/src/python/EDA/linear regression.ipynb new file mode 100644 index 0000000..f40c2ba --- /dev/null +++ b/src/python/EDA/linear regression.ipynb @@ -0,0 +1,536 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.model_selection import train_test_split\n", + "from sklearn.linear_model import LinearRegression\n", + "from scipy.stats import pearsonr\n", + "from sklearn.metrics import mean_squared_error\n", + "from sklearn.metrics import mean_absolute_error\n", + "from sklearn.model_selection import KFold\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 2-aminoadipate 3-phosphoglycerate Alpha-glycerophosphate 4-pyridoxate \\\n", + "0 6.112727 6.034198 5.896896 6.000532 \n", + "1 5.577413 5.727045 5.111468 6.073250 \n", + "2 5.886398 5.574881 5.541259 5.848375 \n", + "3 5.770030 6.099229 6.233259 5.543495 \n", + "4 5.480683 5.469742 6.509397 6.251005 \n", + "\n", + " Aconitate Adenine Adipate Alpha-ketoglutarate AMP Citrate \\\n", + "0 5.513618 5.868529 5.977177 5.693074 5.923737 5.641242 \n", + "1 5.802494 5.824473 5.888821 5.768379 5.760784 5.914742 \n", + "2 5.665026 5.875548 5.894904 5.839640 5.742613 5.570208 \n", + "3 5.767759 6.155905 6.111148 5.949481 6.342703 6.054781 \n", + "4 5.190578 5.897085 6.148333 5.607481 5.871600 5.128463 \n", + "\n", + " ... C56:8 TAG C56:7 TAG C56:6 TAG C56:5 TAG C56:4 TAG C56:3 TAG \\\n", + "0 ... 6.070239 6.133433 6.091089 6.257711 6.372732 6.202511 \n", + "1 ... 6.248653 6.633575 6.378052 6.341043 6.360945 6.333540 \n", + "2 ... 5.942887 5.946988 5.837980 5.913350 6.137530 5.807546 \n", + "3 ... 6.516922 6.113791 6.282113 6.248667 6.109480 6.043570 \n", + "4 ... 6.161981 6.777932 6.676390 6.695659 6.751029 6.385056 \n", + "\n", + " C56:2 TAG C58:8 TAG C58:7 TAG C58:6 TAG \n", + "0 5.939576 6.309821 6.115974 5.999436 \n", + "1 6.137271 7.065858 6.832174 6.363064 \n", + "2 5.704149 5.881193 5.785208 5.504225 \n", + "3 5.846802 6.429402 5.779815 6.241530 \n", + "4 6.682612 6.757899 6.728570 6.879260 \n", + "\n", + "[5 rows x 225 columns]\n", + " H3K4me0 H3K4me1 H3K4me2 H3K4ac1 H3K9me0K14ac0 H3K9me1K14ac0 \\\n", + "0 0.116020 -0.153144 -0.348607 -1.417128 -1.281177 -0.719707 \n", + "1 -0.058624 0.219592 0.110946 -0.170282 0.334630 0.497303 \n", + "2 0.480909 0.298440 0.073777 0.413953 -0.479543 0.133280 \n", + "3 -0.079957 -0.617656 -0.566702 0.079932 0.373140 0.159682 \n", + "4 -0.059965 -0.063483 -0.267980 0.357422 0.075651 0.047830 \n", + "\n", + " H3K9me2K14ac0 H3K9me3K14ac0 H3K9ac1K14ac0 H3K9me0K14ac1 ... \\\n", + "0 -0.208080 -0.033416 -0.967821 -1.150058 ... \n", + "1 0.307907 -0.466686 0.062518 -0.517698 ... \n", + "2 0.053279 -0.220467 -0.427160 0.215504 ... \n", + "3 0.060946 -0.181112 0.208328 0.182229 ... \n", + "4 0.115243 -0.498239 -0.059567 0.845077 ... \n", + "\n", + " H3K27ac1K36me0 H3K27ac1K36me1 H3K27ac1K36me2 H3K27ac1K36me3 \\\n", + "0 0.396178 1.261963 0.492776 -0.211349 \n", + "1 -1.198709 -1.394997 -1.123119 -1.501911 \n", + "2 0.055683 -0.659294 0.114288 -1.289012 \n", + "3 1.098303 0.381884 0.258282 0.751323 \n", + "4 -0.185237 0.239421 0.358072 -0.176527 \n", + "\n", + " H3.3K27me0K36me0 H3K56me0 H3K56me1 H3K79me0 H3K79me1 H3K79me2 \n", + "0 -0.554973 -0.222912 -0.310910 -0.272655 0.271469 0.469647 \n", + "1 -0.180229 -0.075173 NaN 0.051018 0.099032 0.169761 \n", + "2 0.280396 0.117564 NaN 0.185984 0.191760 -0.437561 \n", + "3 0.031194 -0.199316 0.037929 0.003978 -0.225147 -0.061445 \n", + "4 -0.351188 0.037021 NaN 0.045495 -0.153684 -0.106306 \n", + "\n", + "[5 rows x 42 columns]\n" + ] + } + ], + "source": [ + "md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name=\"All\")\n", + "mt = md.drop(['Tissue', 'Medium','Culture'], axis=1)\n", + "hm = pd.read_csv('GCP_proteomics_remapped.csv')\n", + "merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line')\n", + "MET = merge_tb.iloc[:,1:226]\n", + "GCP = merge_tb.iloc[:,227:269]\n", + "print(MET.head())\n", + "print(GCP.head())\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(259, 42)\n", + "(604, 225)\n" + ] + } + ], + "source": [ + "# GCP.to_numpy()\n", + "# MET.to_numpy()\n", + "GCP = np.nan_to_num(GCP, nan=0)\n", + "MET = np.nan_to_num(MET, nan=0)\n", + "Xtrain, Xtest, Ytrain, Ytest =train_test_split(GCP, MET, test_size=0.3, random_state=0)\n", + "\n", + "# print(GCP.shape)\n", + "# print(Xtrain)\n", + "print(Xtest.shape)\n", + "# print(MET.shape)\n", + "print(Ytrain.shape)\n", + "# print(Ytest.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression()]\n" + ] + } + ], + "source": [ + "\n", + "GCP2MET_models = []\n", + "for i in range(Ytrain.shape[1]):\n", + " mdl_G2M = LinearRegression().fit(Xtrain, Ytrain[:, i])\n", + " GCP2MET_models.append(mdl_G2M)\n", + "\n", + "# GCP2MET_models.append(mdl_G2M.coef_)\n", + "# Ypred = mdl_G2M.coef_ * Xtest\n", + "print(GCP2MET_models)\n", + "# print(len(GCP2MET_models))\n", + "\n", + "MET2GCP_models = []\n", + "\n", + "for j in range(Xtrain.shape[1]):\n", + " mdl_M2G = LinearRegression().fit(Ytrain, Xtrain[:,j])\n", + " MET2GCP_models.append(mdl_M2G)\n", + "\n", + "# MET2GCP_models.append(mdl_M2G.coef_)\n", + "# print(MET2GCP_models)\n", + "# print(len(MET2GCP_models))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def evaluate_models(models, Xtest, Ytest):\n", + " \"\"\"\n", + " evaluate_models returns results from the model predictions, including the pearson\n", + " correlation coefficient, p-Values, and MSE.\n", + "\n", + " :param models: A list of scikit-learn model objects.\n", + " :param Xtest: A numpy array or pandas dataframe containing validation set input data.\n", + " :param Ytest: A numpy array or pandas dataframe containing validation set output data.\n", + " :return pred_resul: A dictionary containing the final MSE, pValue, or rValue.\n", + " \n", + " \"\"\"\n", + " \n", + " predictions = []\n", + " rValue = list()\n", + " pValue = list()\n", + " MSE = list()\n", + " for i in range(len(models)):\n", + " mdl = models[i]\n", + " Ypred = mdl.predict(Xtest)\n", + " predictions.append(Ypred)\n", + " \n", + " r, pvalue = pearsonr(Ypred, Ytest[:, i])\n", + " rValue.append(r)\n", + " pValue.append(pvalue)\n", + " \n", + " mse = mean_squared_error(Ypred, Ytest[:, i])\n", + " MSE.append(mse)\n", + " \n", + "\n", + " df_MSE = pd.DataFrame(MSE)\n", + " df_pValue = pd.DataFrame(pValue)\n", + " df_rValue = pd.DataFrame(rValue)\n", + " \n", + " return df_MSE, df_pValue, df_rValue\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " GCP2MET_models\n", + "0 0.105660\n", + "1 0.113761\n", + "2 0.211453\n", + "3 0.124643\n", + "4 0.102915\n", + ".. ...\n", + "220 0.157474\n", + "221 0.174273\n", + "222 0.269746\n", + "223 0.353366\n", + "224 0.266817\n", + "\n", + "[225 rows x 1 columns]\n" + ] + } + ], + "source": [ + "mse1,p1,pearson1 = evaluate_models(GCP2MET_models, Xtest, Ytest)\n", + "mse1.columns = [\"GCP2MET_models\"]\n", + "print(mse1)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0 1 2 3 4 5 6 \\\n", + "mse1 0.098891 0.094329 0.319502 0.113154 0.105149 0.133179 0.045786 \n", + "mse2 0.123628 0.103319 0.335725 0.139940 0.102402 0.140503 0.043725 \n", + "mse3 0.099345 0.103648 0.278150 0.128813 0.099365 0.136939 0.038375 \n", + "\n", + " 7 8 9 ... 215 216 217 \\\n", + "mse1 0.080428 0.250379 0.112139 ... 0.145670 0.202951 0.192299 \n", + "mse2 0.064761 0.253493 0.116281 ... 0.101652 0.203684 0.191712 \n", + "mse3 0.067909 0.191660 0.102278 ... 0.124050 0.197997 0.183160 \n", + "\n", + " 218 219 220 221 222 223 224 \n", + "mse1 0.224030 0.169372 0.142034 0.170940 0.298064 0.340335 0.290046 \n", + "mse2 0.250278 0.189576 0.166025 0.201022 0.316814 0.396047 0.300359 \n", + "mse3 0.250604 0.200674 0.176717 0.198773 0.277209 0.326478 0.239974 \n", + "\n", + "[3 rows x 225 columns]\n" + ] + } + ], + "source": [ + "\n", + "kf = KFold(n_splits=3)\n", + "\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse_result = pd.DataFrame()\n", + "pvalue_result = pd.DataFrame()\n", + "rvalue_result = pd.DataFrame()\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + "# print(\"TRAIN:\", train_index, \"TEST:\", test_index)\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_GCP2MET_models = []\n", + " final_metrics = []\n", + " for i in range(y_train.shape[1]):\n", + " mdl_G2M = LinearRegression().fit(X_train, y_train[:, i])\n", + " v_GCP2MET_models.append(mdl_G2M)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_GCP2MET_models, X_test, y_test)\n", + "# print(\"mse:_\")\n", + "# print(df_MSE)\n", + " mse_result = pd.concat([mse_result,df_MSE],axis = 1)\n", + " pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + " rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "\n", + " \n", + "mse_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse_result = mse_result.T\n", + "print(mse_result)\n", + " \n", + " \n", + "\n", + "# MET2GCP_models = []\n", + "\n", + "# for j in range(Xtrain.shape[1]):\n", + "# mdl_M2G = LinearRegression().fit(Ytrain, Xtrain[:,j])\n", + "# MET2GCP_models.append(mdl_M2G)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 mse1\n", + "1 mse1\n", + "2 mse3\n", + "3 mse1\n", + "4 mse3\n", + " ... \n", + "220 mse1\n", + "221 mse1\n", + "222 mse3\n", + "223 mse3\n", + "224 mse3\n", + "Length: 225, dtype: object\n" + ] + } + ], + "source": [ + "minMSE = mse_result.idxmin()\n", + "print(minMSE)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " GCP2MET_models v_GCP2MET_models\n", + "0 0.105660 0.098891\n", + "1 0.113761 0.094329\n", + "2 0.211453 0.278150\n", + "3 0.124643 0.113154\n", + "4 0.102915 0.099365\n", + ".. ... ...\n", + "220 0.157474 0.142034\n", + "221 0.174273 0.170940\n", + "222 0.269746 0.277209\n", + "223 0.353366 0.326478\n", + "224 0.266817 0.239974\n", + "\n", + "[225 rows x 2 columns]\n" + ] + } + ], + "source": [ + "mse_min = pd.DataFrame()\n", + "MSE_min = list()\n", + "for index in mse_result:\n", + " v = mse_result[index][minMSE[index]]\n", + " MSE_min.append(v)\n", + "# print(v)\n", + "mse_min = pd.DataFrame(MSE_min)\n", + "mse_min.columns = [\"v_GCP2MET_models\"]\n", + "# print(mse_min)\n", + "raw = mse1.join(mse_min)\n", + "print(raw)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression()]\n" + ] + } + ], + "source": [ + "\n", + "new_GCP2MET = list()\n", + "for index, row in raw.iterrows():\n", + " if row['GCP2MET_models'] < row['v_GCP2MET_models']:\n", + " \n", + " new_GCP2MET.append(GCP2MET_models[index])\n", + " else:\n", + " new_GCP2MET.append(v_GCP2MET_models[index])\n", + " \n", + " \n", + "print(new_GCP2MET)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0 1 2 3 4 5 6 \\\n", + "mse1 0.278417 0.602853 0.974677 2.441553 0.459369 0.340847 0.318485 \n", + "mse2 0.267023 0.550682 0.850470 2.371134 0.531666 0.377817 0.367990 \n", + "mse3 0.235952 0.705763 0.798577 2.282222 0.424247 0.345435 0.377377 \n", + "\n", + " 7 8 9 ... 32 33 34 \\\n", + "mse1 0.509803 1.173574 0.740704 ... 1.715578 1.983225 1.772992 \n", + "mse2 0.606396 1.081328 0.833995 ... 2.053370 2.572370 1.867790 \n", + "mse3 0.521812 0.861796 0.589929 ... 1.806748 2.627610 1.953604 \n", + "\n", + " 35 36 37 38 39 40 41 \n", + "mse1 1.707244 0.825451 0.078526 3.219407 0.189220 0.390186 1.148773 \n", + "mse2 2.054275 0.823895 0.086911 3.499662 0.262691 0.536727 1.569529 \n", + "mse3 2.180980 0.824251 0.091608 3.133288 0.193200 0.415433 1.396639 \n", + "\n", + "[3 rows x 42 columns]\n" + ] + } + ], + "source": [ + "## MET TO GCP\n", + "mse2,p2,pearson2 = evaluate_models(MET2GCP_models, Ytest, Xtest)\n", + "mse2.columns = [\"MET2GCP_models\"]\n", + "\n", + "kf = KFold(n_splits=3)\n", + "KFold(n_splits=3, random_state=None, shuffle=True)\n", + "mse2_result = pd.DataFrame()\n", + "# pvalue_result = pd.DataFrame()\n", + "# rvalue_result = pd.DataFrame()\n", + "for train_index, test_index in kf.split(Xtrain, Ytrain):\n", + " X_train, X_test = Xtrain[train_index], Xtrain[test_index]\n", + " y_train, y_test = Ytrain[train_index], Ytrain[test_index]\n", + " v_MET2GCP_models = []\n", + " metrics = []\n", + " for i in range(X_train.shape[1]):\n", + " mdl_M2G = LinearRegression().fit(y_train, X_train[:, i])\n", + " v_MET2GCP_models.append(mdl_M2G)\n", + " df_MSE, df_pValue, df_rValue = evaluate_models(v_MET2GCP_models, y_test, X_test)\n", + " mse2_result = pd.concat([mse2_result,df_MSE],axis = 1)\n", + "# pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1)\n", + "# rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1)\n", + "mse2_result.columns = [\"mse1\",\"mse2\",\"mse3\"]\n", + "mse2_result = mse2_result.T\n", + "print(mse2_result) " + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression(), LinearRegression()]\n" + ] + } + ], + "source": [ + "minMSE2 = mse2_result.idxmin()\n", + "# print(minMSE)\n", + "\n", + "mse2_min = pd.DataFrame()\n", + "MSE2_min = list()\n", + "for index in mse2_result:\n", + " v = mse2_result[index][minMSE2[index]]\n", + " MSE2_min.append(v)\n", + "# print(v)\n", + "mse2_min = pd.DataFrame(MSE2_min)\n", + "mse2_min.columns = [\"v_GCP2MET_models\"]\n", + "# print(mse2_min)\n", + "raw2 = mse2.join(mse2_min)\n", + "# print(raw2)\n", + "\n", + "new_MET2GCP = list()\n", + "for index, row in raw.iterrows():\n", + " if row['GCP2MET_models'] < row['v_GCP2MET_models']:\n", + " \n", + " new_MET2GCP.append(GCP2MET_models[index])\n", + " else:\n", + " new_MET2GCP.append(v_GCP2MET_models[index])\n", + " \n", + " \n", + "print(new_MET2GCP)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/src/python/EDA/new_corr.csv b/src/python/EDA/new_corr.csv new file mode 100644 index 0000000..201a7b2 --- /dev/null +++ b/src/python/EDA/new_corr.csv @@ -0,0 +1,226 @@ +,H3K4me0,H3K4me1,H3K4me2,H3K4ac1,H3K9me0K14ac0,H3K9me1K14ac0,H3K9me2K14ac0,H3K9me3K14ac0,H3K9ac1K14ac0,H3K9me0K14ac1,H3K9me1K14ac1,H3K9me2K14ac1,H3K9me3K14ac1,H3K9ac1K14ac1,H3K18ac0K23ac0,H3K18ac1K23ac0,H3K18ac0K23ac1,H3K18ac1K23ac1,H3K18ac0K23ub1,H3K27me0K36me0,H3K27me0K36me1,H3K27me0K36me2,H3K27me0K36me3,H3K27me1K36me0,H3K27me1K36me1,H3K27me1K36me2,H3K27me1K36me3,H3K27me2K36me0,H3K27me2K36me1,H3K27me2K36me2,H3K27me3K36me0,H3K27me3K36me1,H3K27ac1K36me0,H3K27ac1K36me1,H3K27ac1K36me2,H3K27ac1K36me3,H3.3K27me0K36me0,H3K56me0,H3K56me1,H3K79me0,H3K79me1,H3K79me2 +2-aminoadipate,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3-phosphoglycerate,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,,,,,,, +Alpha-glycerophosphate,,,1,1,,-1,,,,1,1,1,1,,,,1,1,,,,1,,,,,-1,,,,,,,,,1,-1,,1,,-1,-1 +4-pyridoxate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aconitate,,1,,,1,,,1,1,,,,,1,,,,,-1,,,,,,,,1,,,,,,,,,,,,,,, +Adenine,,,,,-1,-1,,-1,-1,,,1,,,-1,,,,,,,1,,,,,,,-1,,,,,,,,,,,,,-1 +Adipate,,,,1,,,,-1,,,,,,,,,,,1,1,,,,,,,,,,-1,,,,,,,1,,,,, +Alpha-ketoglutarate,,1,,,,,,,,,,,,,,1,,,,,,,,,,1,,,,,,,,1,1,,,,,,,1 +AMP,,-1,,,,-1,-1,-1,,1,1,1,1,,-1,,1,,,-1,,1,,-1,,,-1,1,,,,,,,,,-1,,,,-1,-1 +Citrate,,,,,,,,,1,,,,,1,,,,,-1,,,,,,,,1,,1,,,,,,,,,,,,, +Isocitrate,,,,,1,,,1,1,,,,,1,,1,,1,-1,,,,1,,,1,,,,,,,,,1,,,,,,, +CMP,,-1,,,,-1,-1,-1,,1,1,1,,,-1,,1,1,,,,1,,-1,,,-1,-1,-1,,,,,,,,-1,,,,-1,-1 +Cystathionine,,,,,,-1,,,,1,1,1,1,,-1,,1,1,,,,1,,-1,,,,-1,,,-1,,,1,,,-1,,,,, +Cytidine,,,,,,-1,,-1,,1,1,1,,1,-1,,1,1,,,,1,,-1,,,-1,-1,-1,,,,,,,,-1,,,,, +dCMP,,-1,,,-1,-1,-1,-1,-1,,,,,,-1,,1,,,,,1,,,,,-1,,-1,-1,,,,,,,-1,,,,-1,-1 +DHAP/G3P,,,,,,,,1,,,,,,,1,,,,,1,,,,1,1,1,,,,,,,1,1,1,,,,,,, +Erythrose-4-phosphate,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +F1P/F6P/G1P/G6P,,1,,,,,,1,,,,,,,,,,,,,,,,,,1,1,,1,1,,,,,,,,,,-1,,1 +hexoses (HILIC neg),1,1,,,,1,1,1,,-1,-1,,,,1,,-1,,,,,-1,,,,,1,,1,1,,,,,,,1,,,,1,1 +Fumarate/Maleate/Alpha-ketoisovalerate,,,,,,,,-1,,1,1,1,,,,,1,1,,,,,,,,,,,,,,,,,,,,-1,,,-1,-1 +Glucuronate,,,,,1,1,,,,,,,-1,,1,,,-1,-1,,,,,1,1,1,,1,1,,,,,,,,,,,,, +Glutathione oxidized,1,,,,,,,,,,,,,1,,1,,,-1,,,,1,,,,1,,,,,,,,1,,,,,,, +Glutathione reduced,1,,,,,,-1,,,,1,,,1,,1,,1,-1,,,,,,,,,,,,,,1,1,1,,,,,,, +GMP,,,,,,-1,-1,-1,,1,1,1,,,-1,,1,1,,,,1,,-1,,,-1,-1,,,,,,,,,-1,,,,,-1 +Guanosine,,,,,,-1,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hippurate,,1,,,1,1,,1,1,,,-1,,,1,,,,,,,-1,,1,,,1,1,1,1,,1,,,,,1,,,,,1 +Hypoxanthine,,,,,,,,,-1,,,,1,,,,,,,,,,-1,,,,,,,,,,,,,,,,,,, +Inosine,,1,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,1,,,-1,,,,,,,,, +Kynurenine,-1,-1,,,,,,,,,-1,-1,,-1,,,,-1,1,,,,,,,,,-1,,,,,,,,,,,,,, +Lactate,,,,,,,,1,1,,,-1,,1,,,,,-1,,,-1,,,,,,,,,,,,,1,,,,,,, +Lactose,1,1,,,,1,1,1,1,,,,,,1,,,,,,,,1,,1,1,1,,1,1,,,,,,,1,1,,,1,1 +Malate,,,,,,,,,,1,1,,,,,1,,1,,,,,,,,,,,,,,,,,,,,,,,-1,-1 +NAD,1,,1,,,,-1,,1,1,1,,,1,,,,,-1,,,,,,,,,,,,,,,,,,-1,,,,, +NADP,,,,,,,,,,,,,,,,,,,-1,,,,,,,,1,,,,,,,,,,,,,,, +Oxalate,,-1,,,-1,,,-1,-1,,,1,,-1,,,,,1,,1,1,,,,,-1,,-1,-1,,,,,,,,,,,,-1 +Pantothenate,1,1,1,1,,,,,1,1,1,1,,1,,,1,1,,,,,,,,,,1,,,1,1,,,,,,,,,,1 +PEP,,,,,,-1,,,,,,,,,,1,,,,,,,,,,,,,,,,,,1,1,,,,,,, +Ribose-5-P/Ribulose5-P,1,1,,,,,,1,1,,,,,1,,1,,1,,1,,,1,,,,1,,,,,,1,1,1,1,,,,,, +Sorbitol,,1,,,1,1,1,1,1,-1,-1,-1,-1,,1,,-1,,,,,-1,,1,,,1,1,1,1,,1,,,,,,,,,,1 +Succinate/Methylmalonate,1,1,,,,,,,,,,,,,,,,,,,,-1,,,,,1,,,,,,,,,,,,,-1,, +Sucrose,,1,,,,1,,1,1,,,,,,1,,,,,,,,,1,1,1,1,1,1,,,,,,,,1,1,,,, +Thymine,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,-1,,,,,,1,, +UMP,,-1,,,,-1,-1,-1,,1,1,1,1,,-1,,1,,,,,1,,-1,,,-1,,,,,,,,,,-1,,,,, +UDP-galactose/UDP-glucose,,,1,,,,,,1,1,1,,,1,,,,1,-1,,,,,,,,,,,,,,,,,,-1,,,-1,, +Uracil,1,1,,,,1,,1,,,,,,,1,,,,,,-1,-1,,,,,1,,1,1,,1,,-1,,,,,,,,1 +Urate,,1,,,1,1,,1,,,-1,-1,-1,,1,,-1,,,,,-1,,1,,,,1,,,,,,,,,,,,,, +Uridine,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Xanthine,1,1,,-1,,1,,1,1,-1,-1,-1,,,1,,-1,,,,,-1,,,,,1,,1,1,,1,,,,,,,,,,1 +Taurocholate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,, +Glycodeoxycholate/Glycochenodeoxycholate,,,,,,,,1,,,-1,,,,1,,-1,,,,,-1,,,,,1,,1,,,,,,,,1,,1,,,1 +Taurodeoxycholate/Taurochenodeoxycholate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Phosphocreatine,1,1,,,,,,,,,,,,,,1,,1,,,,,,,1,,,,1,1,,,,,,,,,-1,,, +3-methyladipate/Pimelate,,,,,,,,-1,-1,1,,,,,,,,,1,,,,,,,-1,,,-1,-1,,,,,,,,,,,, +6-phosphogluconate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Alpha-hydroxybutyrate,-1,-1,,,,-1,,-1,-1,1,,,,,,,,,1,,,,,,,-1,-1,,-1,-1,,,,,,,,,,,,-1 +2-hydroxyglutarate,,,1,1,-1,,,,,,,,,1,-1,,,,-1,,,,,,,,,,,,,,,1,,,-1,-1,,,, +Inositol,-1,-1,-1,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,-1,,,,1,,,,,, +Malondialdehyde,,,,,,-1,-1,,1,,,,,,-1,,,,,,,,,,,,,,,,,,,1,1,,,-1,,,, +Glycine,1,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,, +Alanine,1,,,-1,1,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Serine,,,,,,1,1,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,1,,,,, +Threonine,1,1,,,,,,1,1,,,,,1,1,,,,,,,,,,1,1,1,,1,1,,,,,,,,,,,, +Methionine,1,1,,,,1,,1,1,-1,-1,,,,1,,-1,,,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +Aspartate,,,,,,,,,,,,,,,,,,,1,,,,,,,-1,,,,,,,,,,,,,,,, +Glutamate,,,,,,,,,,,,1,-1,,,,,,,,1,1,1,,,,,,,,,-1,,,,,,,,,, +Asparagine,,,,,,,,,,,,,,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,-1, +Glutamine,1,1,,,,,1,,,,,,,,1,,,,,,,-1,,,,,,,,,,,,,,-1,1,,,,, +Histidine,1,1,,,1,1,1,1,1,-1,-1,,,,1,,-1,,,,,-1,,,,1,1,,1,1,,,-1,,,,,,,,,1 +Arginine,,,,,,1,,1,,,-1,-1,-1,,1,,-1,,,,,,,,,,,,,,,,,,,,1,,,,, +Lysine,1,1,,-1,,1,1,1,1,-1,-1,,,,1,,-1,,,,,-1,,,,1,1,,1,1,,,,,,-1,1,,,,1,1 +Valine,1,1,,-1,1,,1,1,1,,,,,,1,,,,,,,-1,,,1,1,1,,1,1,,,,,,,1,,,,1,1 +Leucine,1,1,,,1,1,1,1,1,-1,,,,,1,,-1,,,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +Isoleucine,1,1,,,,,,1,1,,,,,,,,-1,,,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +Phenylalanine,1,1,,-1,1,1,,1,1,,,,,,1,,,,-1,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +Tyrosine,1,1,,,1,1,,1,1,,,,,,1,,,,,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +Tryptophan,1,1,,,1,1,,1,1,,,,,,1,,,,-1,,,-1,,,,,1,,1,1,,,,,,-1,,,,,, +Proline,1,,,,,,-1,,,1,,,,,,1,,1,-1,,,,,,,,,,,,,,,,,,-1,,,,, +Cis/Trans-hydroxyproline,,-1,,1,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,1,,,,,-1, +Ornithine,,,,,,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,1,,,,, +Citrulline,,,,,1,1,,1,,,,,,,,,,,,,,,,,,,1,1,1,1,,,,,,,,,,,, +Taurine,,,,1,,,,-1,,,1,1,,1,-1,1,,1,,,,,,,-1,,,,,-1,,,,,,,-1,,,,, +5-HIAA,,,,,,,,,-1,,,,,-1,,,,,1,,,,,,,,,,-1,,,,,,,,1,,,,, +Serotonin,,,,,,,,,,,,,,,,,,,1,,,,-1,,,,,,,,,1,,,,,,,,,, +GABA,,-1,,,,,-1,-1,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,-1 +Acetylglycine,,-1,,,,-1,,-1,-1,1,,1,,,,,,,1,,,,,,,-1,-1,,-1,-1,,,1,,,,,,,,, +Dimethylglycine,,1,,,,1,,1,,-1,-1,-1,,,,,-1,,,,,-1,,,,,1,,,,,,,,,,1,,,,,1 +Homocysteine,,,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +SDMA/ADMA,,1,,,1,1,,1,1,,-1,-1,,,1,,-1,,,,,-1,,,,,1,,1,1,,,,,,,,,,,,1 +NMMA,,1,,,1,,,1,1,,,-1,,,1,,,,,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +Allantoin,,1,,,1,1,,1,1,-1,-1,-1,,,1,,-1,,,,,-1,,,,,1,,,,,,,,,,,,,,,1 +Anthranilic acid,,,,,,,,,,-1,-1,-1,,-1,,,-1,,,,1,,,,,,,,,,-1,,,,,,1,,,,, +Kynurenic acid,,1,,,1,1,,1,1,-1,-1,-1,-1,,1,,-1,,,,,-1,,,,,1,,1,1,,,,,,,1,,,,,1 +5-adenosylhomocysteine,,-1,,1,,-1,-1,-1,,1,1,1,1,1,-1,,1,1,-1,,,,,,,,,,-1,-1,,,,,,,-1,,,,-1,-1 +Carnosine,,1,,,,1,1,1,,-1,-1,,,,1,,-1,,,,,-1,,,,,1,,1,1,,,,,,,1,,,,, +N-carbamoyl-beta-alanine,,,,,,,,,,,-1,-1,-1,,,,-1,,,,,,,,,,,,,,-1,,,,1,,,,,,, +Thiamine,1,1,,,,,,1,1,,,,,1,1,,,1,-1,,,-1,,,1,1,1,,1,1,,,,,,,1,,,,1, +Niacinamide,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Betaine,1,,-1,,,,,,,,,,,,,1,,,,,,-1,,,,,,,,1,,,,,,,,,,,, +Choline,,,,,,,,,-1,,,,,,1,,,,,,,,,,,,,,,,,,,,,,1,,,,, +Alpha-glycerophosphocholine,,,,,,,,1,,,,-1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +Acetylcholine,,,-1,,-1,-1,,,,,,,,,-1,,,,-1,,,,,,,,,,,,,,,,,,,,,,, +Creatine,,,,,,,,,1,,,,,1,,,,1,-1,-1,,-1,-1,-1,,,,,1,1,,,,,,,,,-1,,, +Creatinine,,1,,,1,1,,1,1,,-1,-1,,,1,,-1,,,,,-1,,,,,1,,1,1,,,,,,,,,,,,1 +Thyroxine,,,,,1,1,,1,1,,-1,-1,,,1,,-1,,,,,-1,,1,,,1,1,1,,,1,,,,,1,,,,,1 +Trimethylamine-N-oxide,,-1,,,,,,-1,-1,,,,,-1,,,,,1,,,1,,,,-1,-1,,-1,,,,,,,,,,,,,-1 +Hexoses (HILIC pos),,1,,,,1,1,1,,-1,-1,,,,1,,-1,,,,,-1,,,,,1,,1,1,,,,,,,1,,,,1,1 +Adenosine,,,,,,,,,,,-1,-1,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 +Thymidine,,,,-1,,1,1,1,,-1,-1,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 +Xanthosine,,,,,1,1,,1,1,,-1,-1,-1,,1,,-1,,,,-1,-1,,,,,1,1,1,,1,1,,-1,,,,,,,1,1 +2-deoxyadenosine,,-1,,-1,,,,,1,,,,,1,,,1,,1,,,,,,,,,,,,,,1,,,,,,,,, +2-deoxycytidine,,,,,,,,,1,,,,,1,,,,,,-1,,-1,,-1,,,,,,,1,1,,,,,-1,,,,, +cAMP,,-1,-1,,,,,-1,,,,,,,,,,,,,,,,,,,,,-1,-1,,,,,,,,,,,, +Cotinine,-1,-1,,,,,,,,,,,,,,,,,1,,,,,,,-1,,,,,,,,,,,1,,,,, +Pipecolic acid,,,,,,,,,,,,,,,,,,,1,,,1,,,,,,,,,,,,,,,,,1,,, +Pyroglutamic acid,1,1,,,1,,,1,1,-1,-1,,,,1,,,,,,,-1,,,,1,1,,1,1,,,,,,,,,,,,1 +1-methylnicotinamide,,1,1,,1,,,1,1,-1,-1,-1,-1,,,,-1,,,,,,,,,,1,,,,,,,,1,,1,,,,1,1 +Butyrobetaine,1,,,,,,,,,,,,,,,1,,,-1,-1,-1,,-1,-1,,,,,,,,,,,,,-1,,,,, +Putrescine,,,,,,,,-1,,,1,1,,,,,,,,,,,,,,,,,,-1,,-1,1,,,,,,-1,,,-1 +Methionine sulfoxide,,1,,,,,,1,,-1,-1,,,,1,1,-1,,,,,,,,,1,1,,,1,-1,,,,,,,,,,, +Carnitine,1,1,,,,,,1,,,,,,,,1,-1,,,-1,-1,-1,-1,,,,,,1,1,,,,,,,,,,,, +Acetylcarnitine,1,,,,,,,,,,,,,,,1,,,-1,,,,,,,,,,,,,,,,,,,,,,, +Propionylcarnitine,,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,,,,,,,, +Malonylcarnitine,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,1,-1,,,,,,,,,,, +Butyrylcarnitine/Isobutyrylcarnitine,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,-1 +Valerylcarnitine/Isovalerylcarnitine/2-methylbutyroylcarnitine,,,,,,,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hexanoylcarnitine,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,,,,,-1,,,,, +Heptanoylcarnitine,,,,1,,,,,-1,,,,,,,,,,1,,,,,,,-1,,,,,,,,,,,,,,,, +Lauroylcarnitine,,,,,-1,-1,,,-1,,,,,,-1,,,,,-1,,,,-1,,,-1,,,,,,,,-1,,,,,,-1, +Myristoylcarnitine,,,,,-1,-1,,,,,,,,,,,,,,-1,,,-1,-1,,,,,,,,,,,-1,-1,,,,,, +Palmitoylcarnitine,,,,,-1,,,,-1,,,,,,,,,,,,,,,,,,,,,,,,-1,,-1,,,,,,, +Stearoylcarnitine,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,,-1,,,,,,, +Oleylcarnitine,,1,,,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Arachidonyl carnitine,,-1,,,,-1,,-1,-1,,,,,,,,,,1,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,-1, +Sarcosine,,-1,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,, +Beta-alanine,,-1,,,,,,,1,,,,,1,,,,,-1,,,,,,,,,,,,,,,,,,-1,,,,, +Anserine,,,,,,,1,1,,-1,-1,,,,1,,-1,,,,,-1,,,,,1,1,,,,,,,,,1,,,,, +C14:0 LPC,,,,,-1,,,-1,-1,,,1,,,,,1,,,,,1,,,,,,,,,,,,,,,,,,,, +C16:1 LPC,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C16:0 LPC,,,,,,,,,,,,,,,,,,,,,,,,,-1,,1,,,,1,1,,,,,,,,,, +C18:2 LPC,,,,,,,,,-1,,,,,,,,,,1,1,1,1,,,,,,,,,,-1,1,,,,1,,,,,-1 +C18:1 LPC,1,1,,,,1,,1,,,,,,,,,,,,,,,,,,,1,,,,,1,,,,,,,,,, +C18:0 LPC,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,1,,,,,,,,,,, +C20:4 LPC,,,,,,1,,,,,,,,,,,,,,,,,,,,,,1,,,1,1,,,,,,,,,, +C20:3 LPC,,,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,1,,,,,,,,,,, +C22:6 LPC,1,,,,,1,,1,,,,,,,1,,,,,,,,,,,,1,,,,,,,,,,1,,,,, +C16:0 LPE,,-1,,,,,,-1,,1,1,1,,,,,,,,,,,,,-1,-1,-1,,,,1,,,,,,,,,,, +C18:1 LPE,,-1,,1,,,-1,-1,,1,1,,,,,,,,,,,,,,-1,-1,,,,,,,,,,,,,,,, +C18:0 LPE,,-1,,,,,,-1,,1,1,1,,,,,1,,,,,,,,,,,,,,1,,,,,,,,,,, +C20:4 LPE,,-1,,,,,1,-1,-1,,,,,,,,,,1,,,,-1,,,,,,,,,,,,-1,,,,,,, +C22:6 LPE,,,,,,,,,-1,,,,,,,-1,,,,,,1,,,,-1,,,,,,,,,,,,,,,-1, +C32:2 PC,,1,1,,,,-1,,1,1,1,1,1,1,-1,1,1,1,-1,,,,,,,1,,,,,,,,,,,,,,,, +C32:1 PC,,,1,,-1,,-1,-1,,1,1,1,1,1,-1,1,1,1,,,,,,-1,,,,,,,,,,,,,,,,,,-1 +C32:0 PC,-1,-1,,,,-1,-1,-1,,1,,,,1,-1,,,,,,,,,,,-1,-1,,,,,,,,,,,,,,,-1 +C34:4 PC,,,,,,,,,,,1,1,1,,,1,1,1,,,,1,,,,,,,,,,,,,,,,,,,, +C34:3 PC,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +C34:2 PC,,,1,,,,-1,-1,,1,1,,,1,-1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,, +C34:1 PC,,,1,,,,,-1,,1,1,1,1,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,-1 +C36:4 PC-A,,-1,,,,,,,-1,1,,,,,,,,,,1,,1,,,,-1,-1,,,-1,,,,,,,,,,,, +C36:4 PC-B,-1,,,,,,,,-1,,,,,-1,,,,,,,,1,,,,-1,-1,,-1,-1,1,,,,,,,,,,, +C36:3 PC,-1,-1,,,,,,,,,,,,,,,,,1,,,,,1,,,,,,-1,,,,,,,,,,,, +C36:2 PC,,,,,,,-1,-1,,1,1,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,,,, +C36:1 PC,,-1,,,,,,-1,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C38:6 PC,1,-1,,,,,,,-1,,,,,-1,,,,,1,,,,,,,-1,,,-1,-1,1,,,,-1,,,,,,, +C38:5 PC,-1,-1,,,,,,,-1,,,,,-1,,,,,1,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,,-1 +C38:4 PC,-1,-1,,,,,,-1,-1,,,,,,,,,,1,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,,-1 +C38:2 PC,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +C40:6 PC,,-1,,1,,,,,-1,,,,,-1,,,,,,,1,1,,,,,-1,,-1,,,-1,,,,,1,,,,, +C14:0 SM,,,,,,,,,1,,,,,1,,1,,,,,,,1,,,,,,,,,,,,,,,,,,, +C16:1 SM,,,,,,,,,1,,,,,1,,1,,1,-1,,,,,,,,,,,,,,,,,,,,,,, +C16:0 SM,,,,,,,,-1,,,,,,,,,,,,,,,,,,,,,,,,-1,,,,,,,,,, +C18:2 SM,,-1,,,,,,-1,,,,,,,,,,,,,,,,,,,-1,,-1,,,,,,,,,,,,, +C18:1 SM,,,,1,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,-1 +C18:0 SM,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,, +C22:1 SM,,,1,,,,,,,,,,,,,,,,,,,1,,,,,-1,,,-1,,,,,,,,,,,, +C22:0 SM,,,1,,,,,-1,,1,1,,,,,,,,,,-1,1,,,,,,,,,,,,,,,,,,,, +C24:1 SM,,,,,,,,,,,,-1,,,,,,,,1,,1,1,1,,,,,,,,,,,,1,,,,,, +C24:0 SM,,,,,,,,,,,,,,,,,,,,,,,1,,,1,,,,,,-1,,,,1,,,,,, +C34:2 DAG,,-1,-1,,-1,-1,,-1,-1,,,1,,,-1,,,,,-1,,,,,,,,,,,,,,,,,-1,,,,, +C34:1 DAG,,-1,,,,-1,-1,-1,,1,1,,,,-1,,,1,,,,,,,,,,,,,,,,,,,-1,,,,, +C36:2 DAG,-1,-1,,,-1,-1,,-1,,,,,,,-1,,,,,,,1,,,,,,,-1,,,,,,,,-1,,,,, +C36:1 DAG,,-1,,,-1,-1,,-1,,,,1,,,-1,,1,,,,,,,,,,,,,,,,,,,,-1,,,,, +C14:0 CE,,,-1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C16:1 CE,,,,,,1,,1,,-1,-1,-1,,,,,,,,,,-1,,,,,1,1,1,1,,1,,,,,1,,,,1, +C16:0 CE,,1,,-1,,1,,1,,-1,-1,-1,-1,,1,,-1,,,,,-1,,,,,1,1,1,1,,1,,,,,1,,,-1,1, +C18:3 CE,,,,-1,,1,,1,,-1,-1,-1,-1,,1,,-1,,,,,,,1,,,1,1,1,,,,,,,,1,,,,, +C18:2 CE,1,1,,,,1,,1,,-1,-1,-1,-1,,1,,-1,,,,,-1,,,,,1,1,1,1,,,,,,,1,,,-1,, +C18:1 CE,,1,,,,1,,1,,-1,-1,-1,-1,,,,-1,,,,,-1,,,,,1,1,1,1,,1,,,,,,,,-1,1,1 +C18:0 CE,,,-1,,,,,1,,,,-1,-1,,,,,,,,,,,,,,1,1,1,1,,,,,,,,,,,, +C20:5 CE,,,,-1,1,1,,1,,-1,-1,-1,-1,,1,,-1,,,,,-1,,1,,,1,1,1,1,,,,,,,1,,,,, +C20:4 CE,,1,,-1,1,1,,1,,-1,-1,-1,-1,,1,,-1,,,,,-1,,1,,,1,1,1,1,,1,,,,,1,,,-1,, +C20:3 CE,,,,-1,,,1,1,,-1,-1,-1,,,1,,-1,,,,,,,1,,,1,,1,1,,,,,,,1,,,,, +C22:6 CE,,,,,1,1,,1,,-1,-1,-1,-1,,1,,-1,,,1,,,,1,,,1,1,,,,,,,,,1,,,,,1 +C46:2 TAG,,,,,-1,-1,,-1,,,,1,1,,-1,,,,,-1,,,,-1,,,-1,,,,,,,,,,,,,,, +C46:1 TAG,,,,,-1,-1,-1,-1,,1,1,1,1,,-1,,1,,,-1,,,,-1,,,-1,,,,,,,,,,-1,,,,, +C46:0 TAG,,,,,,-1,,-1,,,,,,,,,,,,-1,,,,-1,,-1,-1,,,,,,,,,,,,,,, +C48:3 TAG,-1,,,,-1,,,-1,,,,,,,-1,,,,,-1,,,,-1,,,,,,,,,,,,,,,,,, +C48:2 TAG,,,,,-1,,,-1,,1,1,1,1,,-1,,1,1,,-1,,,,-1,,,,,,,,,,,,,-1,,,,, +C48:1 TAG,,,,,,-1,-1,-1,,1,1,,,,-1,,1,,,-1,-1,,,-1,,,,,,,,,,,,,-1,,,,, +C48:0 TAG,,,,,,-1,,-1,,,,,,,,,,,,-1,-1,,,-1,,-1,,,,,,,,,,,,,,,, +C50:3 TAG,,,,,-1,,,-1,,,,,,,-1,,1,,,-1,,,,-1,,,-1,,,,,,,,,,,,,,, +C50:2 TAG,,,,,-1,-1,-1,-1,,,1,,,,-1,,1,,,-1,,,,-1,,,,,,,,,,,,,-1,,,,, +C50:1 TAG,,,,,,-1,-1,-1,,,1,,,,-1,,,,,-1,-1,,,-1,,,,,,,,,,,,,-1,,,,, +C50:0 TAG,,,,,,-1,,-1,,,,,,,,,,,,-1,-1,,,,-1,-1,,,,,,,,,,,-1,,,,, +C52:5 TAG,-1,-1,,,-1,,,-1,-1,,,,,-1,-1,-1,,,,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,, +C52:4 TAG,-1,-1,,,-1,,,-1,,,,,,,-1,-1,,,,,,1,,,,-1,-1,,-1,,,,,,,,,,,,, +C52:3 TAG,,,,,-1,-1,-1,-1,,,,,,,-1,,,,,-1,,,,,,,-1,,,,,,,,,,,,,,, +C52:2 TAG,,,,,,-1,-1,-1,,,,,,,-1,,,,,-1,,,,-1,,,-1,,,,,,,,,,-1,,,,, +C52:1 TAG,-1,-1,,,,,,-1,,,,,,,-1,-1,,,,-1,-1,,,,-1,-1,,,,,,,,,,,-1,,1,,, +C54:7 TAG,,-1,,,,,,-1,-1,,,,,-1,,-1,,-1,,,,1,,,,-1,-1,,,-1,,,,,-1,,,,1,,, +C54:6 TAG,-1,-1,,,-1,,,-1,-1,,,,,-1,,-1,,,1,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,, +C54:5 TAG,-1,-1,,,,,,-1,-1,,,,,-1,,-1,,-1,1,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,, +C54:4 TAG,-1,-1,,,-1,,,-1,,,,,,,-1,-1,,,,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,, +C54:3 TAG,-1,-1,,,-1,,,-1,,,,,,,-1,-1,,,,,,,,,,,-1,,-1,-1,,,,,,,,,,-1,, +C54:2 TAG,-1,-1,,,,,,-1,,,,,,,-1,-1,,,,,,,,,,,-1,,,,,,,,,,-1,,1,,, +C54:1 TAG,-1,-1,,,,-1,,-1,,,,,,-1,,-1,,-1,,,,,,,,-1,-1,,,,,,,,,,-1,,1,,, +C56:8 TAG,,-1,,,,,,-1,-1,,,,,-1,,-1,,-1,,,,1,,,,-1,-1,,-1,,,,,,-1,,,,,,, +C56:7 TAG,-1,-1,,,,,,-1,-1,,,,,-1,,-1,,-1,1,,,1,,,,-1,-1,,-1,-1,,,,,,,,,,,, +C56:6 TAG,-1,-1,,,,,,-1,-1,,,,,-1,,-1,,-1,1,,,1,,,,-1,-1,,-1,-1,,,,,-1,,,,,,, +C56:5 TAG,-1,-1,,,,,,-1,-1,,,,,-1,-1,-1,,-1,,,,1,,,,-1,-1,,-1,-1,,-1,,,,,,,,,, +C56:4 TAG,-1,-1,,,-1,,,-1,-1,,,,,,-1,-1,,,,,,1,,,,-1,-1,,-1,-1,,-1,,,,,,,,,, +C56:3 TAG,-1,-1,,,-1,,,-1,,,,,,,,,,,,,,,,,,-1,-1,,,-1,,,,,,,,,,,, +C56:2 TAG,-1,-1,,,,,,-1,,,,,,,,-1,,,,,,,,,,-1,-1,,,-1,,,,,,,-1,,,,, +C58:8 TAG,-1,-1,,,,,,,-1,,,,,-1,,-1,,-1,1,1,,1,,,,-1,-1,,-1,-1,,,,,-1,,,,1,,, +C58:7 TAG,-1,-1,,,,,,,-1,,,,,-1,,-1,,-1,1,,,1,,,,-1,-1,,-1,-1,,,,,-1,,,,1,,, +C58:6 TAG,-1,-1,,,,,,-1,-1,,,,,-1,,-1,,-1,,,,1,,,,-1,-1,,-1,-1,,,,,-1,,,,,,, diff --git a/src/python/EDA/pvalues<0.05.csv b/src/python/EDA/pvalues<0.05.csv new file mode 100644 index 0000000..0b37589 --- /dev/null +++ b/src/python/EDA/pvalues<0.05.csv @@ -0,0 +1,226 @@ +,H3K4me0,H3K4me1,H3K4me2,H3K4ac1,H3K9me0K14ac0,H3K9me1K14ac0,H3K9me2K14ac0,H3K9me3K14ac0,H3K9ac1K14ac0,H3K9me0K14ac1,H3K9me1K14ac1,H3K9me2K14ac1,H3K9me3K14ac1,H3K9ac1K14ac1,H3K18ac0K23ac0,H3K18ac1K23ac0,H3K18ac0K23ac1,H3K18ac1K23ac1,H3K18ac0K23ub1,H3K27me0K36me0,H3K27me0K36me1,H3K27me0K36me2,H3K27me0K36me3,H3K27me1K36me0,H3K27me1K36me1,H3K27me1K36me2,H3K27me1K36me3,H3K27me2K36me0,H3K27me2K36me1,H3K27me2K36me2,H3K27me3K36me0,H3K27me3K36me1,H3K27ac1K36me0,H3K27ac1K36me1,H3K27ac1K36me2,H3K27ac1K36me3,H3.3K27me0K36me0,H3K56me0,H3K56me1,H3K79me0,H3K79me1,H3K79me2 +2-aminoadipate,,,,,,,,,0.0391,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +3-phosphoglycerate,,,,,,,,0.0027,,,,,,,,,,,,,,,,,,,,,,,,,0.0465,0.0107,0.0061,,,,,,, +Alpha-glycerophosphate,,,0.0012,0.0002,,0.0437,,,,0.0077,0.0017,0.002,0.0127,,,,0.0003,0.0032,,,,0.0018,,,,,0.03,,,,,,,,,0.0132,0.0031,,0.0293,,0.0434,0.032 +4-pyridoxate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Aconitate,,0.0135,,,0.0153,,,0.0102,0.0016,,,,,0.0335,,,,,0.0075,,,,,,,,0.0484,,,,,,,,,,,,,,, +Adenine,,,,,0.0193,0.0076,,0.0172,0.0005,,,0.0456,,,0.034,,,,,,,0.0021,,,,,,,0.0042,,,,,,,,,,,,,0.0313 +Adipate,,,,0.0342,,,,0.0372,,,,,,,,,,,0.016,0.0368,,,,,,,,,,0.0154,,,,,,,0.0007,,,,, +Alpha-ketoglutarate,,0.01,,,,,,,,,,,,,,0.0239,,,,,,,,,,0.0419,,,,,,,,0.0415,0.0064,,,,,,,0.0352 +AMP,,0.0289,,,,0.0006,0.0008,0.0,,0.0006,0.0002,0.0011,0.0121,,0.0,,0.0001,,,0.035,,0.0222,,0.0043,,,0.0012,0.0409,,,,,,,,,0.0,,,,0.0415,0.0082 +Citrate,,,,,,,,,0.0173,,,,,0.029,,,,,0.0175,,,,,,,,0.0177,,0.0078,,,,,,,,,,,,, +Isocitrate,,,,,0.039,,,0.0223,0.0149,,,,,0.0437,,0.0339,,0.043,0.013,,,,0.0427,,,0.0046,,,,,,,,,0.023,,,,,,, +CMP,,0.0222,,,,0.0063,0.0002,0.0,,0.0012,0.0018,0.0248,,,0.0,,0.0004,0.049,,,,0.0024,,0.0181,,,0.0043,0.0175,0.0179,,,,,,,,0.0,,,,0.0189,0.0018 +Cystathionine,,,,,,0.0007,,,,0.0346,0.0024,0.0107,0.0065,,0.0389,,0.001,0.0007,,,,0.0284,,0.0184,,,,0.0077,,,0.0231,,,0.0153,,,0.0116,,,,, +Cytidine,,,,,,0.0141,,0.0004,,0.0168,0.0084,0.0068,,0.0188,0.0044,,0.0002,0.0154,,,,0.0067,,0.0067,,,0.0008,0.0276,0.0075,,,,,,,,0.0053,,,,, +dCMP,,0.0217,,,0.045,0.004,0.0189,0.0003,0.0193,,,,,,0.0005,,0.0018,,,,,0.0115,,,,,0.003,,0.0007,0.0348,,,,,,,0.0355,,,,0.0024,0.0 +DHAP/G3P,,,,,,,,0.0026,,,,,,,0.0343,,,,,0.0035,,,,0.0086,0.0299,0.0451,,,,,,,0.0437,0.025,0.004,,,,,,, +Erythrose-4-phosphate,,0.0107,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +F1P/F6P/G1P/G6P,,0.0,,,,,,0.0015,,,,,,,,,,,,,,,,,,0.0022,0.0014,,0.0005,0.0075,,,,,,,,,,0.0494,,0.0396 +hexoses (HILIC neg),0.0351,0.0002,,,,0.0088,0.0026,0.0,,0.0002,0.0024,,,,0.0004,,0.0049,,,,,0.0009,,,,,0.0007,,0.0051,0.001,,,,,,,0.0069,,,,0.0254,0.006 +Fumarate/Maleate/Alpha-ketoisovalerate,,,,,,,,0.029,,0.0021,0.0104,0.0088,,,,,0.025,0.0348,,,,,,,,,,,,,,,,,,,,0.0234,,,0.0166,0.0296 +Glucuronate,,,,,0.0227,0.0215,,,,,,,0.002,,0.0425,,,0.0136,0.011,,,,,0.001,0.0077,0.0135,,0.0007,0.0021,,,,,,,,,,,,, +Glutathione oxidized,0.0154,,,,,,,,,,,,,0.0203,,0.0462,,,0.0185,,,,0.0463,,,,0.0317,,,,,,,,0.0264,,,,,,, +Glutathione reduced,0.0175,,,,,,0.0259,,,,0.0072,,,0.0023,,0.0018,,0.0073,0.0388,,,,,,,,,,,,,,0.0471,0.0392,0.0027,,,,,,, +GMP,,,,,,0.0333,0.0005,0.0001,,0.001,0.0009,0.0088,,,0.0005,,0.0,0.0397,,,,0.031,,0.0084,,,0.0467,0.0333,,,,,,,,,0.0,,,,,0.0198 +Guanosine,,,,,,0.0189,,,0.0082,,,,,0.0023,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hippurate,,0.0014,,,0.0365,0.0204,,0.0002,0.0235,,,0.0138,,,0.0015,,,,,,,0.0024,,0.0214,,,0.0046,0.0057,0.0016,0.0351,,0.0199,,,,,0.0074,,,,,0.0026 +Hypoxanthine,,,,,,,,,0.0324,,,,0.0363,,,,,,,,,,0.0316,,,,,,,,,,,,,,,,,,, +Inosine,,0.0449,,,,,,,,,,,,,,,,,,,,,0.0333,,,,,,,0.0196,,,0.0256,,,,,,,,, +Kynurenine,0.0389,0.025,,,,,,,,,0.0348,0.0098,,0.0146,,,,0.0318,0.0256,,,,,,,,,0.0353,,,,,,,,,,,,,, +Lactate,,,,,,,,0.0455,0.0006,,,0.0313,,0.0065,,,,,0.0133,,,0.0121,,,,,,,,,,,,,0.0042,,,,,,, +Lactose,0.0126,0.0001,,,,0.0,0.0051,0.0,0.0068,,,,,,0.0,,,,,,,,0.0247,,0.0192,0.0076,0.0,,0.0023,0.0056,,,,,,,0.0103,0.0036,,,0.0242,0.0197 +Malate,,,,,,,,,,0.0029,0.0207,,,,,0.0261,,0.0244,,,,,,,,,,,,,,,,,,,,,,,0.0098,0.033 +NAD,0.0275,,0.0458,,,,0.0064,,0.0444,0.0101,0.0348,,,0.0008,,,,,0.0066,,,,,,,,,,,,,,,,,,0.0156,,,,, +NADP,,,,,,,,,,,,,,,,,,,0.0442,,,,,,,,0.0355,,,,,,,,,,,,,,, +Oxalate,,0.0067,,,0.0168,,,0.0014,0.0002,,,0.0147,,0.0454,,,,,0.0006,,0.0409,0.0009,,,,,0.0073,,0.0192,0.0342,,,,,,,,,,,,0.0189 +Pantothenate,0.042,0.0,0.0002,0.0407,,,,,0.0034,0.0006,0.0002,0.0049,,0.0002,,,0.0,0.0001,,,,,,,,,,0.0003,,,0.0,0.0445,,,,,,,,,,0.0026 +PEP,,,,,,0.0364,,,,,,,,,,0.0413,,,,,,,,,,,,,,,,,,0.0216,0.02,,,,,,, +Ribose-5-P/Ribulose5-P,0.0094,0.001,,,,,,0.0029,0.006,,,,,0.0097,,0.0419,,0.0261,,0.0233,,,0.0127,,,,0.0266,,,,,,0.027,0.0147,0.0011,0.0085,,,,,, +Sorbitol,,0.0099,,,0.0228,0.0031,0.0499,0.0,0.0185,0.0369,0.0045,0.0135,0.0398,,0.0033,,0.0287,,,,,0.0,,0.0384,,,0.0001,0.0081,0.0079,0.0152,,0.0331,,,,,,,,,,0.0449 +Succinate/Methylmalonate,0.0436,0.0175,,,,,,,,,,,,,,,,,,,,0.0144,,,,,0.0283,,,,,,,,,,,,,0.0188,, +Sucrose,,0.0243,,,,0.0466,,0.0001,0.0418,,,,,,0.0004,,,,,,,,,0.0215,0.0192,0.0338,0.0018,0.0364,0.0031,,,,,,,,0.0059,0.0072,,,, +Thymine,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0124,0.0068,,,,,,0.0339,, +UMP,,0.0156,,,,0.0023,0.0006,0.0,,0.0001,0.0002,0.0044,0.0214,,0.0004,,0.0001,,,,,0.0139,,0.0432,,,0.0052,,,,,,,,,,0.0,,,,, +UDP-galactose/UDP-glucose,,,0.0286,,,,,,0.0491,0.0332,0.0317,,,0.0029,,,,0.0365,0.0048,,,,,,,,,,,,,,,,,,0.0184,,,0.02,, +Uracil,0.0497,0.0168,,,,0.026,,0.0001,,,,,,,0.0041,,,,,,0.0449,0.0008,,,,,0.0033,,0.0046,0.0122,,0.0023,,0.0316,,,,,,,,0.0071 +Urate,,0.05,,,0.0011,0.0396,,0.0,,,0.023,0.0011,0.008,,0.0164,,0.0477,,,,,0.0201,,0.0144,,,,0.0284,,,,,,,,,,,,,, +Uridine,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Xanthine,0.0035,0.0007,,0.0358,,0.0008,,0.0,0.0348,0.004,0.01,0.031,,,0.0043,,0.0035,,,,,0.0,,,,,0.0002,,0.0003,0.0003,,0.0107,,,,,,,,,,0.0068 +Taurocholate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0292,,,,,,,,,,, +Glycodeoxycholate/Glycochenodeoxycholate,,,,,,,,0.0039,,,0.0257,,,,0.0056,,0.0276,,,,,0.038,,,,,0.0153,,0.0137,,,,,,,,0.0037,,0.0329,,,0.023 +Taurodeoxycholate/Taurochenodeoxycholate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Phosphocreatine,0.0149,0.0003,,,,,,,,,,,,,,0.0373,,0.0088,,,,,,,0.0498,,,,0.017,0.0283,,,,,,,,,0.0062,,, +3-methyladipate/Pimelate,,,,,,,,0.0062,0.0159,0.0206,,,,,,,,,0.0042,,,,,,,0.0356,,,0.0343,0.0022,,,,,,,,,,,, +6-phosphogluconate,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Alpha-hydroxybutyrate,0.0315,0.0001,,,,0.0058,,0.0013,0.0242,0.0288,,,,,,,,,0.0075,,,,,,,0.0065,0.0001,,0.0005,0.0221,,,,,,,,,,,,0.0075 +2-hydroxyglutarate,,,0.0032,0.0008,0.0171,,,,,,,,,0.0482,0.0127,,,,0.0038,,,,,,,,,,,,,,,0.0448,,,0.0296,0.0474,,,, +Inositol,0.0422,0.0224,0.0148,,,,,,,,,,,,,0.0374,,,,,,,,,,,,,,,,0.0489,,,,0.041,,,,,, +Malondialdehyde,,,,,,0.0029,0.0311,,0.0413,,,,,,0.0343,,,,,,,,,,,,,,,,,,,0.0201,0.0003,,,0.0336,,,, +Glycine,0.0352,,,,,,,,,,,0.0337,,,,,,,,,,,,,,,,,,,,,,,,,0.017,,,,, +Alanine,0.0164,,,0.0417,0.007,,,,0.0002,,,,,0.0102,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Serine,,,,,,0.0283,0.021,,,,,,,,0.0187,,,,,,,,,,,,,,,,,,,,,,0.0088,,,,, +Threonine,0.001,0.001,,,,,,0.0022,0.0131,,,,,0.0226,0.0141,,,,,,,,,,0.0411,0.012,0.0389,,0.0288,0.0082,,,,,,,,,,,, +Methionine,0.0079,0.0001,,,,0.0191,,0.0,0.003,0.0189,0.033,,,,0.002,,0.0152,,,,,0.0011,,,,0.032,0.0001,,0.0087,0.0011,,,,,,,,,,,,0.0069 +Aspartate,,,,,,,,,,,,,,,,,,,0.018,,,,,,,0.0344,,,,,,,,,,,,,,,, +Glutamate,,,,,,,,,,,,0.0226,0.0388,,,,,,,,0.0058,0.0048,0.0043,,,,,,,,,0.0098,,,,,,,,,, +Asparagine,,,,,,,,,,,,,,0.0477,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0244, +Glutamine,0.0117,0.012,,,,,0.0031,,,,,,,,0.0307,,,,,,,0.0295,,,,,,,,,,,,,,0.016,0.0089,,,,, +Histidine,0.0024,0.0007,,,0.0204,0.0011,0.025,0.0,0.0362,0.0074,0.0133,,,,0.0,,0.0474,,,,,0.0152,,,,0.0052,0.0008,,0.0058,0.0001,,,0.0475,,,,,,,,,0.0169 +Arginine,,,,,,0.0025,,0.0112,,,0.021,0.0237,0.0185,,0.0161,,0.0127,,,,,,,,,,,,,,,,,,,,0.0078,,,,, +Lysine,0.019,0.0001,,0.0415,,0.0285,0.0152,0.0,0.0268,0.002,0.0091,,,,0.0002,,0.0323,,,,,0.0005,,,,0.0074,0.0003,,0.0029,0.0002,,,,,,0.0475,0.0104,,,,0.0102,0.0034 +Valine,0.0055,0.0003,,0.0476,0.0313,,0.0415,0.0,0.0063,,,,,,0.001,,,,,,,0.0021,,,0.0368,0.0128,0.0011,,0.0021,0.0008,,,,,,,0.026,,,,0.0278,0.012 +Leucine,0.0067,0.0001,,,0.0323,0.0122,0.048,0.0,0.0013,0.0242,,,,,0.0044,,0.0227,,,,,0.0003,,,,0.0148,0.0,,0.004,0.001,,,,,,,,,,,,0.0069 +Isoleucine,0.0421,0.0014,,,,,,0.0003,0.001,,,,,,,,0.0273,,,,,0.0013,,,,0.0332,0.0001,,0.0153,0.0187,,,,,,,,,,,,0.0235 +Phenylalanine,0.005,0.0001,,0.0429,0.0212,0.0322,,0.0,0.001,,,,,,0.0029,,,,0.0389,,,0.0007,,,,0.0051,0.0002,,0.0025,0.0004,,,,,,,,,,,,0.0161 +Tyrosine,0.0112,0.0003,,,0.0286,0.0257,,0.0,0.0004,,,,,,0.0101,,,,,,,0.0027,,,,0.0016,0.0001,,0.0017,0.0008,,,,,,,,,,,,0.0086 +Tryptophan,0.0035,0.0001,,,0.0193,0.0117,,0.0,0.0145,,,,,,0.001,,,,0.0247,,,0.0018,,,,,0.0004,,0.0082,0.0047,,,,,,0.0224,,,,,, +Proline,0.0238,,,,,,0.0205,,,0.044,,,,,,0.0258,,0.0104,0.0465,,,,,,,,,,,,,,,,,,0.0044,,,,, +Cis/Trans-hydroxyproline,,0.0381,,0.0352,,,,,,,,,,,,,,,,,,0.0307,,,,,,,,,,,,,,0.0267,,,,,0.03, +Ornithine,,,,,,0.0039,,0.0097,,,,,,,0.002,,,,,,,,,,,,,,,,,,,,,,0.0465,,,,, +Citrulline,,,,,0.0196,0.0323,,0.0016,,,,,,,,,,,,,,,,,,,0.0036,0.0228,0.0262,0.0175,,,,,,,,,,,, +Taurine,,,,0.0093,,,,0.0177,,,0.0247,0.0094,,0.0371,0.0347,0.0482,,0.0324,,,,,,,0.0134,,,,,0.0185,,,,,,,0.0337,,,,, +5-HIAA,,,,,,,,,0.0324,,,,,0.0208,,,,,0.0056,,,,,,,,,,0.0093,,,,,,,,0.0212,,,,, +Serotonin,,,,,,,,,,,,,,,,,,,0.0154,,,,0.0129,,,,,,,,,0.0239,,,,,,,,,, +GABA,,0.0064,,,,,0.0095,0.0053,,,,,,,,,,,,,,,,,,,,,,,,0.0027,,,,,,,,,,0.0275 +Acetylglycine,,0.006,,,,0.0014,,0.0013,0.012,0.0167,,0.0377,,,,,,,0.0484,,,,,,,0.0058,0.0,,0.0152,0.0138,,,0.0487,,,,,,,,, +Dimethylglycine,,0.0308,,,,0.0064,,0.0002,,0.008,0.0139,0.0463,,,,,0.0039,,,,,0.0027,,,,,0.0039,,,,,,,,,,0.0323,,,,,0.015 +Homocysteine,,,0.0234,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +SDMA/ADMA,,0.0066,,,0.0075,0.0172,,0.0,0.0137,,0.0422,0.0273,,,0.0099,,0.0312,,,,,0.0069,,,,,0.012,,0.0182,0.0033,,,,,,,,,,,,0.0301 +NMMA,,0.0084,,,0.0153,,,0.0,0.0016,,,0.0262,,,0.0205,,,,,,,0.0079,,,,0.0059,0.0016,,0.0042,0.0005,,,,,,,,,,,,0.0139 +Allantoin,,0.0036,,,0.0134,0.002,,0.0,0.0408,0.0061,0.0036,0.0065,,,0.0073,,0.0023,,,,,0.0047,,,,,0.004,,,,,,,,,,,,,,,0.0023 +Anthranilic acid,,,,,,,,,,0.0037,0.0002,0.0061,,0.0019,,,0.0038,,,,0.0243,,,,,,,,,,0.0115,,,,,,0.0054,,,,, +Kynurenic acid,,0.0126,,,0.0102,0.0019,,0.0,0.0052,0.0105,0.006,0.002,0.0153,,0.0147,,0.0007,,,,,0.0008,,,,,0.0013,,0.0173,0.0072,,,,,,,0.0344,,,,,0.0455 +5-adenosylhomocysteine,,0.0408,,0.0324,,0.0416,0.0026,0.0,,0.0025,0.0001,0.0022,0.0347,0.0131,0.0014,,0.0002,0.036,0.0418,,,,,,,,,,0.01,0.0295,,,,,,,0.0,,,,0.0016,0.0126 +Carnosine,,0.0005,,,,0.0024,0.0143,0.0,,0.0084,0.0101,,,,0.0045,,0.001,,,,,0.0016,,,,,0.002,,0.0127,0.0134,,,,,,,0.0084,,,,, +N-carbamoyl-beta-alanine,,,,,,,,,,,0.0271,0.0318,0.0293,,,,0.0316,,,,,,,,,,,,,,0.05,,,,0.0001,,,,,,, +Thiamine,0.001,0.0,,,,,,0.0014,0.01,,,,,0.0272,0.0261,,,0.0361,0.0136,,,0.0032,,,0.0349,0.0012,0.0002,,0.0046,0.0023,,,,,,,0.0445,,,,0.0177, +Niacinamide,,,,,,,,0.0274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Betaine,0.0017,,0.0076,,,,,,,,,,,,,0.0449,,,,,,0.0252,,,,,,,,0.035,,,,,,,,,,,, +Choline,,,,,,,,,0.0253,,,,,,0.0037,,,,,,,,,,,,,,,,,,,,,,0.0073,,,,, +Alpha-glycerophosphocholine,,,,,,,,0.0007,,,,0.0183,,,0.0449,,,,,,,,,,,,,,,,,,,,,,,,,,, +Acetylcholine,,,0.0058,,0.0459,0.0265,,,,,,,,,0.007,,,,0.0034,,,,,,,,,,,,,,,,,,,,,,, +Creatine,,,,,,,,,0.0463,,,,,0.041,,,,0.0232,0.0048,0.038,,0.0084,0.0199,0.0492,,,,,0.0109,0.004,,,,,,,,,0.0233,,, +Creatinine,,0.0034,,,0.0185,0.0377,,0.0,0.0109,,0.0219,0.0257,,,0.0117,,0.0458,,,,,0.0012,,,,,0.013,,0.0334,0.0083,,,,,,,,,,,,0.0341 +Thyroxine,,,,,0.0143,0.0028,,0.0001,0.0029,,0.0141,0.0288,,,0.0065,,0.0091,,,,,0.0181,,0.0461,,,0.0029,0.0361,0.0135,,,0.0215,,,,,0.0145,,,,,0.044 +Trimethylamine-N-oxide,,0.0013,,,,,,0.0054,0.0007,,,,,0.0353,,,,,0.0438,,,0.0486,,,,0.0241,0.0009,,0.0216,,,,,,,,,,,,,0.0297 +Hexoses (HILIC pos),,0.0005,,,,0.0139,0.0024,0.0,,0.001,0.0073,,,,0.0,,0.0207,,,,,0.0128,,,,,0.0018,,0.006,0.0018,,,,,,,0.0007,,,,0.0488,0.0038 +Adenosine,,,,,,,,,,,0.0072,0.0009,0.0305,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0218 +Thymidine,,,,0.0031,,0.0294,0.0016,0.0125,,0.0112,0.0104,0.0375,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0352 +Xanthosine,,,,,0.0002,0.0006,,0.0,0.0198,,0.0068,0.0001,0.0059,,0.0008,,0.0048,,,,0.0096,0.0001,,,,,0.0369,0.0291,0.0369,,0.0449,0.0003,,0.0415,,,,,,,0.0178,0.0021 +2-deoxyadenosine,,0.0439,,0.0077,,,,,0.0002,,,,,0.0207,,,0.0261,,0.0459,,,,,,,,,,,,,,0.0237,,,,,,,,, +2-deoxycytidine,,,,,,,,,0.0004,,,,,0.0027,,,,,,0.0059,,0.0327,,0.0052,,,,,,,0.0147,0.0,,,,,0.0242,,,,, +cAMP,,0.003,0.0151,,,,,0.0061,,,,,,,,,,,,,,,,,,,,,0.0085,0.0126,,,,,,,,,,,, +Cotinine,0.0485,0.0307,,,,,,,,,,,,,,,,,0.007,,,,,,,0.0157,,,,,,,,,,,0.0354,,,,, +Pipecolic acid,,,,,,,,,,,,,,,,,,,0.0111,,,0.0008,,,,,,,,,,,,,,,,,0.0199,,, +Pyroglutamic acid,0.0473,0.0151,,,0.0498,,,0.0021,0.0018,0.0429,0.0469,,,,0.0282,,,,,,,0.0018,,,,0.0144,0.0007,,0.0029,0.005,,,,,,,,,,,,0.02 +1-methylnicotinamide,,0.0015,0.0251,,0.0335,,,0.0,0.018,0.0001,0.0,0.0,0.0071,,,,0.0,,,,,,,,,,0.002,,,,,,,,0.025,,0.0189,,,,0.0004,0.0005 +Butyrobetaine,0.0425,,,,,,,,,,,,,,,0.0169,,,0.027,0.0153,0.0273,,0.0462,0.0065,,,,,,,,,,,,,0.0056,,,,, +Putrescine,,,,,,,,0.0151,,,0.031,0.0319,,,,,,,,,,,,,,,,,,0.0111,,0.0198,0.035,,,,,,0.0496,,,0.0311 +Methionine sulfoxide,,0.0043,,,,,,0.0008,,0.0021,0.0392,,,,0.0209,0.0432,0.0071,,,,,,,,,0.0203,0.0003,,,0.0002,0.0327,,,,,,,,,,, +Carnitine,0.0025,0.0019,,,,,,0.0089,,,,,,,,0.0133,0.0305,,,0.0434,0.0138,0.0014,0.0278,,,,,,0.0037,0.0014,,,,,,,,,,,, +Acetylcarnitine,0.0069,,,,,,,,,,,,,,,0.0226,,,0.0249,,,,,,,,,,,,,,,,,,,,,,, +Propionylcarnitine,,,,,,,,,,,,,,,,,,,,,,,,,0.0115,,,,,,,,,,,,,,,,, +Malonylcarnitine,,,,,,,,,,,,,,,,,,,,0.0207,,,,,,,,,,0.018,0.0049,,,,,,,,,,, +Butyrylcarnitine/Isobutyrylcarnitine,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.046,0.0106 +Valerylcarnitine/Isovalerylcarnitine/2-methylbutyroylcarnitine,,,,,,,,,,,,0.0305,0.0135,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Hexanoylcarnitine,,,,,,,,,,,,,,,,,,,,,,,0.0237,,,,,,,,,,,,,,0.0242,,,,, +Heptanoylcarnitine,,,,0.0057,,,,,0.0392,,,,,,,,,,0.0303,,,,,,,0.0072,,,,,,,,,,,,,,,, +Lauroylcarnitine,,,,,0.0042,0.0061,,,0.0459,,,,,,0.0381,,,,,0.0155,,,,0.0109,,,0.0396,,,,,,,,0.048,,,,,,0.0389, +Myristoylcarnitine,,,,,0.0161,0.0201,,,,,,,,,,,,,,0.0267,,,0.0162,0.0376,,,,,,,,,,,0.0068,0.0285,,,,,, +Palmitoylcarnitine,,,,,0.027,,,,0.0403,,,,,,,,,,,,,,,,,,,,,,,,0.0496,,0.0066,,,,,,, +Stearoylcarnitine,,0.0481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0326,,0.0091,,,,,,, +Oleylcarnitine,,0.0037,,,0.0262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Arachidonyl carnitine,,0.0006,,,,0.0396,,0.0208,0.0076,,,,,,,,,,0.0176,,,0.0177,,,,0.0135,0.0095,,0.0379,0.0157,,,,,,,,,,,0.0063, +Sarcosine,,0.0194,0.0054,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0345,,,,,,,,,,, +Beta-alanine,,0.0367,,,,,,,0.049,,,,,0.0212,,,,,0.0087,,,,,,,,,,,,,,,,,,0.0047,,,,, +Anserine,,,,,,,0.0108,0.0015,,0.0348,0.0287,,,,0.0266,,0.0052,,,,,0.0103,,,,,0.0481,0.0407,,,,,,,,,0.0017,,,,, +C14:0 LPC,,,,,0.0474,,,0.0337,0.0306,,,0.0122,,,,,0.0295,,,,,0.0086,,,,,,,,,,,,,,,,,,,, +C16:1 LPC,,,,,,,,,,,,0.029,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C16:0 LPC,,,,,,,,,,,,,,,,,,,,,,,,,0.0479,,0.0309,,,,0.0005,0.0011,,,,,,,,,, +C18:2 LPC,,,,,,,,,0.0443,,,,,,,,,,0.0062,0.0248,0.0125,0.0312,,,,,,,,,,0.0148,0.027,,,,0.013,,,,,0.0181 +C18:1 LPC,0.0194,0.0432,,,,0.0153,,0.0163,,,,,,,,,,,,,,,,,,,0.0065,,,,,0.0031,,,,,,,,,, +C18:0 LPC,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0352,,,,0.0101,,,,,,,,,,, +C20:4 LPC,,,,,,0.0348,,,,,,,,,,,,,,,,,,,,,,0.0165,,,0.002,0.0025,,,,,,,,,, +C20:3 LPC,,,,,,,,,,,,,,,,,,,,,,,,,,0.0022,,,,,0.0082,,,,,,,,,,, +C22:6 LPC,0.0241,,,,,0.0152,,0.0089,,,,,,,0.0115,,,,,,,,,,,,0.049,,,,,,,,,,0.0019,,,,, +C16:0 LPE,,0.0474,,,,,,0.0011,,0.0078,0.0016,0.0082,,,,,,,,,,,,,0.0311,0.0068,0.0347,,,,0.0136,,,,,,,,,,, +C18:1 LPE,,0.0423,,0.0115,,,0.0267,0.0001,,0.0011,0.0045,,,,,,,,,,,,,,0.0458,0.026,,,,,,,,,,,,,,,, +C18:0 LPE,,0.0014,,,,,,0.0009,,0.0004,0.0006,0.0444,,,,,0.0004,,,,,,,,,,,,,,0.0154,,,,,,,,,,, +C20:4 LPE,,0.0001,,,,,0.0329,0.0468,0.0237,,,,,,,,,,0.0087,,,,0.0386,,,,,,,,,,,,0.0265,,,,,,, +C22:6 LPE,,,,,,,,,0.0113,,,,,,,0.0424,,,,,,0.0102,,,,0.0412,,,,,,,,,,,,,,,0.0474, +C32:2 PC,,0.0015,0.0299,,,,0.0073,,0.0051,0.0034,0.0003,0.0038,0.0115,0.0,0.0195,0.0002,0.0062,0.0,0.0069,,,,,,,0.0413,,,,,,,,,,,,,,,, +C32:1 PC,,,0.0058,,0.0375,,0.0122,0.0002,,0.0,0.0,0.0,0.0016,0.0002,0.0079,0.002,0.0007,0.0001,,,,,,0.0281,,,,,,,,,,,,,,,,,,0.0407 +C32:0 PC,0.0092,0.0039,,,,0.0003,0.0014,0.0017,,0.0369,,,,0.0299,0.0004,,,,,,,,,,,0.0335,0.0017,,,,,,,,,,,,,,,0.0002 +C34:4 PC,,,,,,,,,,,0.0066,0.0028,0.0027,,,0.0049,0.0076,0.0005,,,,0.0238,,,,,,,,,,,,,,,,,,,, +C34:3 PC,,,,,,,,,,,,,,,,0.0061,,,,,,,,,,,,,,,,,,,,,,,,,, +C34:2 PC,,,0.0305,,,,0.0052,0.0066,,0.0026,0.0016,,,0.001,0.0437,0.0017,0.0224,0.0028,,,,,,,,,,,,,,,,,,,,,,,, +C34:1 PC,,,0.0058,,,,,0.0047,,0.0009,0.0008,0.0102,0.0447,,,,0.0046,0.0082,,,,,,,,,,,,,,,,,,,,,,,,0.0217 +C36:4 PC-A,,0.0144,,,,,,,0.0016,0.0352,,,,,,,,,,0.0239,,0.0067,,,,0.0045,0.0054,,,0.003,,,,,,,,,,,, +C36:4 PC-B,0.0394,,,,,,,,0.0008,,,,,0.0401,,,,,,,,0.0253,,,,0.0013,0.0028,,0.0413,0.0049,0.0344,,,,,,,,,,, +C36:3 PC,0.0448,0.0342,,,,,,,,,,,,,,,,,0.0017,,,,,0.0369,,,,,,0.0086,,,,,,,,,,,, +C36:2 PC,,,,,,,0.0327,0.0238,,0.0268,0.0418,,,,,,,,,,,,,,,,,,,0.0301,,,,,,,,,,,, +C36:1 PC,,0.0262,,,,,,0.028,,,0.0351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C38:6 PC,0.0461,0.0311,,,,,,,0.0009,,,,,0.0133,,,,,0.0325,,,,,,,0.0171,,,0.0165,0.0074,0.0227,,,,0.046,,,,,,, +C38:5 PC,0.0058,0.0062,,,,,,,0.0003,,,,,0.004,,,,,0.018,,,0.0057,,,,0.0129,0.0226,,0.0351,0.0129,,,,,,,,,,,,0.0252 +C38:4 PC,0.0014,0.005,,,,,,0.0253,0.0035,,,,,,,,,,0.0019,,,0.0009,,,,0.0082,0.0036,,0.0101,0.0084,,,,,,,,,,,,0.0452 +C38:2 PC,,,,,,,,,,,,,,,,0.029,,,,,,,,,,,,,,,,,,,,,,,,,, +C40:6 PC,,0.0043,,0.0396,,,,,0.0014,,,,,0.0255,,,,,,,0.0492,0.0006,,,,,0.0246,,0.0229,,,0.0092,,,,,0.0133,,,,, +C14:0 SM,,,,,,,,,0.0468,,,,,0.0245,,0.0157,,,,,,,0.0007,,,,,,,,,,,,,,,,,,, +C16:1 SM,,,,,,,,,0.0053,,,,,0.003,,0.0007,,0.0127,0.0498,,,,,,,,,,,,,,,,,,,,,,, +C16:0 SM,,,,,,,,0.0237,,,,,,,,,,,,,,,,,,,,,,,,0.0123,,,,,,,,,, +C18:2 SM,,0.0009,,,,,,0.0002,,,,,,,,,,,,,,,,,,,0.0066,,0.019,,,,,,,,,,,,, +C18:1 SM,,,,0.043,,,,,,,,,,0.0435,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0049 +C18:0 SM,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0.0074,, +C22:1 SM,,,0.0124,,,,,,,,,,,,,,,,,,,0.0021,,,,,0.0093,,,0.0022,,,,,,,,,,,, +C22:0 SM,,,0.043,,,,,0.0462,,0.033,0.0447,,,,,,,,,,0.0458,0.0306,,,,,,,,,,,,,,,,,,,, +C24:1 SM,,,,,,,,,,,,0.0411,,,,,,,,0.0379,,0.0255,0.0005,0.0283,,,,,,,,,,,,0.009,,,,,, +C24:0 SM,,,,,,,,,,,,,,,,,,,,,,,0.0007,,,0.0479,,,,,,0.0155,,,,0.0177,,,,,, +C34:2 DAG,,0.0148,0.007,,0.0081,0.0169,,0.0047,0.0118,,,0.0208,,,0.0267,,,,,0.0318,,,,,,,,,,,,,,,,,0.033,,,,, +C34:1 DAG,,0.0017,,,,0.0004,0.0097,0.0005,,0.0393,0.0424,,,,0.0042,,,0.0246,,,,,,,,,,,,,,,,,,,0.0,,,,, +C36:2 DAG,0.0396,0.0009,,,0.0427,0.0095,,0.0004,,,,,,,0.0126,,,,,,,0.002,,,,,,,0.046,,,,,,,,0.0002,,,,, +C36:1 DAG,,0.0001,,,0.0345,0.001,,0.0006,,,,0.0106,,,0.0433,,0.0468,,,,,,,,,,,,,,,,,,,,0.0004,,,,, +C14:0 CE,,,0.002,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +C16:1 CE,,,,,,0.0306,,0.0,,0.0035,0.0199,0.0019,,,,,,,,,,0.0138,,,,,0.0009,0.0107,0.0014,0.0107,,0.0236,,,,,0.032,,,,0.0374, +C16:0 CE,,0.0205,,0.0409,,0.0086,,0.0,,0.0076,0.0122,0.0008,0.0422,,0.0218,,0.0238,,,,,0.0086,,,,,0.0072,0.0133,0.0007,0.0102,,0.0173,,,,,0.0227,,,0.0352,0.0355, +C18:3 CE,,,,0.0159,,0.0377,,0.0,,0.0036,0.0112,0.0064,0.0366,,0.0426,,0.0304,,,,,,,0.0479,,,0.0097,0.0208,0.01,,,,,,,,0.0012,,,,, +C18:2 CE,0.0464,0.0152,,,,0.003,,0.0,,0.0043,0.0103,0.0029,0.0401,,0.0073,,0.0077,,,,,0.0079,,,,,0.0009,0.0142,0.0013,0.008,,,,,,,0.0017,,,0.0183,, +C18:1 CE,,0.0186,,,,0.0072,,0.0,,0.0048,0.0076,0.0003,0.0175,,,,0.0128,,,,,0.0168,,,,,0.0003,0.0428,0.0078,0.011,,0.0147,,,,,,,,0.0239,0.0072,0.0137 +C18:0 CE,,,0.0448,,,,,0.0433,,,,0.0079,0.0247,,,,,,,,,,,,,,0.0472,0.0408,0.0074,0.0384,,,,,,,,,,,, +C20:5 CE,,,,0.0388,0.0325,0.0105,,0.0,,0.001,0.0001,0.0,0.0041,,0.008,,0.0008,,,,,0.0078,,0.0066,,,0.0036,0.0067,0.0046,0.0496,,,,,,,0.0011,,,,, +C20:4 CE,,0.0228,,0.0304,0.0165,0.0014,,0.0,,0.0098,0.0086,0.0015,0.0143,,0.004,,0.0074,,,,,0.0009,,0.0314,,,0.0004,0.01,0.0015,0.0122,,0.025,,,,,0.0012,,,0.0101,, +C20:3 CE,,,,0.0013,,,0.0376,0.0,,0.0001,0.0003,0.0004,,,0.0115,,0.0022,,,,,,,0.049,,,0.0035,,0.0172,0.0158,,,,,,,0.0138,,,,, +C22:6 CE,,,,,0.005,0.0183,,0.0,,0.0194,0.0005,0.0,0.0008,,0.0087,,0.0129,,,0.0181,,,,0.0001,,,0.0034,0.0005,,,,,,,,,0.0196,,,,,0.0292 +C46:2 TAG,,,,,0.0006,0.0378,,0.0,,,,0.0118,0.0162,,0.0019,,,,,0.0001,,,,0.0007,,,0.0087,,,,,,,,,,,,,,, +C46:1 TAG,,,,,0.0396,0.0264,0.0215,0.0,,0.0352,0.003,0.0223,0.046,,0.0011,,0.0285,,,0.001,,,,0.001,,,0.0179,,,,,,,,,,0.018,,,,, +C46:0 TAG,,,,,,0.0193,,0.0002,,,,,,,,,,,,0.0207,,,,0.0095,,0.0265,0.0065,,,,,,,,,,,,,,, +C48:3 TAG,0.0486,,,,0.0043,,,0.0005,,,,,,,0.0007,,,,,0.0007,,,,0.0045,,,,,,,,,,,,,,,,,, +C48:2 TAG,,,,,0.012,,,0.0,,0.0426,0.0021,0.0066,0.0321,,0.0009,,0.0053,0.0361,,0.0014,,,,0.0063,,,,,,,,,,,,,0.0395,,,,, +C48:1 TAG,,,,,,0.0146,0.0111,0.0001,,0.0187,0.0052,,,,0.0028,,0.025,,,0.0024,0.0477,,,0.0136,,,,,,,,,,,,,0.0045,,,,, +C48:0 TAG,,,,,,0.0367,,0.0084,,,,,,,,,,,,0.006,0.0489,,,0.0117,,0.0463,,,,,,,,,,,,,,,, +C50:3 TAG,,,,,0.0097,,,0.0,,,,,,,0.0005,,0.0244,,,0.0116,,,,0.017,,,0.0249,,,,,,,,,,,,,,, +C50:2 TAG,,,,,0.0353,0.016,0.0105,0.0,,,0.0136,,,,0.0005,,0.0413,,,0.0019,,,,0.0126,,,,,,,,,,,,,0.0041,,,,, +C50:1 TAG,,,,,,0.0151,0.0107,0.0011,,,0.0454,,,,0.0065,,,,,0.0077,0.0388,,,0.0185,,,,,,,,,,,,,0.0085,,,,, +C50:0 TAG,,,,,,0.0394,,0.0119,,,,,,,,,,,,0.0136,0.0308,,,,0.0445,0.0234,,,,,,,,,,,0.0125,,,,, +C52:5 TAG,0.0054,0.0076,,,0.0121,,,0.0006,0.0042,,,,,0.0123,0.018,0.0096,,,,,,0.0012,,,,0.0043,0.0,,0.0105,0.0082,,,,,,,,,,,, +C52:4 TAG,0.005,0.0093,,,0.0122,,,0.0001,,,,,,,0.0019,0.0465,,,,,,0.0126,,,,0.0246,0.0009,,0.0489,,,,,,,,,,,,, +C52:3 TAG,,,,,0.0116,0.0397,0.0363,0.0003,,,,,,,0.0026,,,,,0.0343,,,,,,,0.0388,,,,,,,,,,,,,,, +C52:2 TAG,,,,,,0.0096,0.0056,0.0001,,,,,,,0.0011,,,,,0.018,,,,0.022,,,0.0252,,,,,,,,,,0.0089,,,,, +C52:1 TAG,0.0231,0.0181,,,,,,0.0018,,,,,,,0.0388,0.0421,,,,0.0266,0.0175,,,,0.0482,0.0085,,,,,,,,,,,0.0093,,0.0411,,, +C54:7 TAG,,0.0064,,,,,,0.0141,0.0014,,,,,0.0008,,0.0096,,0.0159,,,,0.0156,,,,0.0005,0.0011,,,0.0012,,,,,0.009,,,,0.0287,,, +C54:6 TAG,0.0145,0.001,,,0.0339,,,0.0016,0.0002,,,,,0.003,,0.007,,,0.0325,,,0.0072,,,,0.0003,0.0,,0.0068,0.0012,,,,,,,,,,,, +C54:5 TAG,0.0125,0.0068,,,,,,0.0071,0.032,,,,,0.0131,,0.0057,,0.0275,0.014,,,0.0021,,,,0.036,0.0001,,0.0092,0.0137,,,,,,,,,,,, +C54:4 TAG,0.0015,0.0027,,,0.0379,,,0.0001,,,,,,,0.0047,0.0113,,,,,,0.0092,,,,0.0367,0.0001,,0.0129,0.0098,,,,,,,,,,,, +C54:3 TAG,0.0267,0.025,,,0.0481,,,0.0017,,,,,,,0.0142,0.0476,,,,,,,,,,,0.0073,,0.0418,0.0352,,,,,,,,,,0.0411,, +C54:2 TAG,0.0159,0.0082,,,,,,0.0005,,,,,,,0.0283,0.0298,,,,,,,,,,,0.0094,,,,,,,,,,0.0416,,0.0341,,, +C54:1 TAG,0.0092,0.0004,,,,0.0402,,0.0119,,,,,,0.0442,,0.0016,,0.0346,,,,,,,,0.0255,0.016,,,,,,,,,,0.0153,,0.0177,,, +C56:8 TAG,,0.0009,,,,,,0.0025,0.0001,,,,,0.001,,0.0042,,0.012,,,,0.0306,,,,0.0025,0.0086,,0.0308,,,,,,0.0209,,,,,,, +C56:7 TAG,0.0051,0.0004,,,,,,0.0384,0.0004,,,,,0.0013,,0.0109,,0.0143,0.0289,,,0.0122,,,,0.0294,0.0004,,0.0055,0.0072,,,,,,,,,,,, +C56:6 TAG,0.0017,0.0004,,,,,,0.0064,0.0002,,,,,0.0003,,0.0012,,0.0024,0.0263,,,0.0016,,,,0.0011,0.0008,,0.0044,0.0147,,,,,0.0166,,,,,,, +C56:5 TAG,0.0014,0.0008,,,,,,0.0012,0.0004,,,,,0.0012,0.0343,0.0049,,0.0219,,,,0.0008,,,,0.0039,0.0002,,0.0007,0.0022,,0.0272,,,,,,,,,, +C56:4 TAG,0.0015,0.0027,,,0.0165,,,0.0001,0.0446,,,,,,0.0109,0.0205,,,,,,0.0013,,,,0.0116,0.0,,0.0015,0.0015,,0.0202,,,,,,,,,, +C56:3 TAG,0.0155,0.0056,,,0.0305,,,0.002,,,,,,,,,,,,,,,,,,0.0093,0.0005,,,0.0248,,,,,,,,,,,, +C56:2 TAG,0.0132,0.0008,,,,,,0.0015,,,,,,,,0.0164,,,,,,,,,,0.0109,0.0009,,,0.0156,,,,,,,0.0232,,,,, +C58:8 TAG,0.0494,0.001,,,,,,,0.0018,,,,,0.0004,,0.0137,,0.0082,0.0158,0.0493,,0.003,,,,0.0176,0.0022,,0.0124,0.0029,,,,,0.0473,,,,0.0385,,, +C58:7 TAG,0.017,0.0031,,,,,,,0.0026,,,,,0.0005,,0.0068,,0.0104,0.0215,,,0.008,,,,0.0264,0.0038,,0.0365,0.0161,,,,,0.0453,,,,0.0205,,, +C58:6 TAG,0.0085,0.0004,,,,,,0.0068,0.0003,,,,,0.0006,,0.0054,,0.0181,,,,0.0056,,,,0.0031,0.0005,,0.0125,0.0037,,,,,0.032,,,,,,, diff --git a/src/python/LASSO.py b/src/python/LASSO.py new file mode 100644 index 0000000..858f78b --- /dev/null +++ b/src/python/LASSO.py @@ -0,0 +1,309 @@ +#!/usr/bin/env python +# coding: utf-8 + +# In[1]: + + +import numpy as np +import pandas as pd +from sklearn.model_selection import train_test_split +from sklearn import linear_model +from scipy.stats import pearsonr +from sklearn.metrics import mean_squared_error +from sklearn.metrics import mean_absolute_error +from sklearn.model_selection import KFold +from sklearn.linear_model import LassoCV +from sklearn.linear_model import MultiTaskLassoCV +from yellowbrick.datasets import load_concrete +from yellowbrick.regressor import AlphaSelection +from yellowbrick.regressor.alphas import alphas + + + +# ### Merge datasets based on cancer cell line name; +# ### concatenate the two dataframes and match based on cancer cell lines; +# ### save them into two new dataframes- MET and GCP; +# ### split GCP and MET into train and test set respectively. +# + +# In[15]: + + +md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name="All") +mt = md.drop(['Tissue', 'Medium','Culture'], axis=1) +hm = pd.read_csv('GCP_proteomics_remapped.csv') +merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line') +MET = merge_tb.iloc[:,1:226] +GCP = merge_tb.iloc[:,227:269] + +GCP = np.nan_to_num(GCP, nan=0) +MET = np.nan_to_num(MET, nan=0) + +Xtrain, Xtest, Ytrain, Ytest =train_test_split(GCP, MET, test_size=0.3, random_state=0) +print(Xtest.shape) +print(Ytest.shape) +print(Xtrain.shape) +print(Ytrain.shape[1]) + + + +# ### Tuning the alpha + +# In[4]: + + + +alphas = [10**-6, 10**-5,10**-4,10**-3,10**-2,10**-1,1,2,3,4,5,6,7,8,9,10] + +mdl = list() +error = list() +for i,a in enumerate(alphas): + for j in range(Ytrain.shape[1]): + x=linear_model.Lasso(alpha=a).fit(Xtrain, Ytrain[:, j]) + mdl.append(x) + ypred = mdl[i].predict(Xtest) + error.append(mean_squared_error(ypred,Ytest[:, j])) +print(error) +minmse_index = error.index(min(error)) +best_alpha = alphas[minmse_index] +print(best_alpha) + + +# ### Fit train sets in Lasso with best alpha to generate models + +# In[5]: + + +GCP2MET_models = [] +for i in range(Ytrain.shape[1]): + mdl_G2M =linear_model.Lasso(alpha=best_alpha).fit(Xtrain, Ytrain[:, i]) +# mdl_G2M =linear_model.Lasso(alpha=0.01).fit(Xtrain, Ytrain[:, i]) + GCP2MET_models.append(mdl_G2M) +print(GCP2MET_models) + + +MET2GCP_models = [] + +for j in range(Xtrain.shape[1]): + mdl_M2G = linear_model.Lasso(alpha=best_alpha).fit(Ytrain, Xtrain[:,j]) + MET2GCP_models.append(mdl_M2G) +print(len(MET2GCP_models)) + + +# ### To evaluate models and get correlation coefficient, pvalue, and mse value. + +# In[6]: + + +def evaluate_models(models, Xtest, Ytest): + """ + evaluate_models returns results from the model predictions, including the pearson + correlation coefficient, p-Values, and MSE. + + :param models: A list of scikit-learn model objects. + :param Xtest: A numpy array or pandas dataframe containing validation set input data. + :param Ytest: A numpy array or pandas dataframe containing validation set output data. + :return pred_resul: A dictionary containing the final MSE, pValue, or rValue. + + """ + + predictions = [] + rValue = list() + pValue = list() + MSE = list() + for i in range(len(models)): + mdl = models[i] + Ypred = mdl.predict(Xtest) + predictions.append(Ypred) + + r, pvalue = pearsonr(Ypred, Ytest[:, i]) + rValue.append(r) + pValue.append(pvalue) + + mse = mean_squared_error(Ypred, Ytest[:, i]) + MSE.append(mse) + + df_MSE = pd.DataFrame(MSE) + df_pValue = pd.DataFrame(pValue) + df_rValue = pd.DataFrame(rValue) + + return df_MSE, df_pValue, df_rValue + + +# ## GCP_to_MET +# ### perform 3-fold cross validation to find model that generate the smallest mse value. + +# In[ ]: + + +mse1,p1,pearson1 = evaluate_models(GCP2MET_models, Xtest, Ytest) +mse1.columns = ["GCP2MET_models"] +print(mse1) + + +# In[7]: + + +kf = KFold(n_splits=3) + +KFold(n_splits=3, random_state=None, shuffle=True) +mse_result = pd.DataFrame() +pvalue_result = pd.DataFrame() +rvalue_result = pd.DataFrame() +for train_index, test_index in kf.split(Xtrain, Ytrain): +# print("TRAIN:", train_index, "TEST:", test_index) + X_train, X_test = Xtrain[train_index], Xtrain[test_index] + y_train, y_test = Ytrain[train_index], Ytrain[test_index] + v_GCP2MET_models = [] + final_metrics = [] + for i in range(y_train.shape[1]): + mdl_G2M = linear_model.Lasso(alpha=best_alpha).fit(X_train, y_train[:, i]) +# mdl_G2M = linear_model.Lasso(alpha=0.01).fit(X_train, y_train[:, i]) + v_GCP2MET_models.append(mdl_G2M) + df_MSE, df_pValue, df_rValue = evaluate_models(v_GCP2MET_models, X_test, y_test) + mse_result = pd.concat([mse_result,df_MSE],axis = 1) + pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1) + rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1) +mse_result.columns = ["mse1","mse2","mse3"] +mse_result = mse_result.T +print(mse_result) + + +# In[8]: + + +minMSE = mse_result.idxmin() +# print(minMSE) + +mse_min = pd.DataFrame() +MSE_min = list() +for index in mse_result: + v = mse_result[index][minMSE[index]] + MSE_min.append(v) +# print(v) +mse_min = pd.DataFrame(MSE_min) +mse_min.columns = ["v_GCP2MET_models"] +# print(mse_min) +raw = mse1.join(mse_min) +print(raw) + + +# ### Generate new list of model + +# In[9]: + + +new_GCP2MET = list() +for index, row in raw.iterrows(): + if row['GCP2MET_models'] < row['v_GCP2MET_models']: + + new_GCP2MET.append(GCP2MET_models[index]) + else: + new_GCP2MET.append(v_GCP2MET_models[index]) + + +print(new_GCP2MET) + + +# ### Evaluate if the correlation coefficient generated with the list of best model is significant or not + +# In[10]: + + +mse_G2M,p_G2M,pearson_G2M = evaluate_models(new_GCP2MET, Xtest, Ytest) +p_G2M.columns = ["GCP2MET_p"] +pearson_G2M.columns = ["GCP2MET_r"] +raw_G2M = p_G2M.join(pearson_G2M) +pearson_G2M.columns = ["GCP2MET_r_0.05"] +new_G2M = raw_G2M.join(pearson_G2M) + +for index, row in new_G2M.iterrows(): + if row['GCP2MET_p'] >= 0.05: + row['GCP2MET_r_0.05'] = 'NaN' + +print(new_G2M) +new_G2M.to_csv('LASSO_G2M.csv') + + +# ## MET TO GCP (repeat the same process above) + +# In[12]: + + +mse2,p2,pearson2 = evaluate_models(MET2GCP_models, Ytest, Xtest) +mse2.columns = ["MET2GCP_models"] + +kf = KFold(n_splits=3) +KFold(n_splits=3, random_state=None, shuffle=True) +mse2_result = pd.DataFrame() +# pvalue_result = pd.DataFrame() +# rvalue_result = pd.DataFrame() +for train_index, test_index in kf.split(Xtrain, Ytrain): + X_train, X_test = Xtrain[train_index], Xtrain[test_index] + y_train, y_test = Ytrain[train_index], Ytrain[test_index] + v_MET2GCP_models = [] + metrics = [] + for i in range(X_train.shape[1]): + mdl_M2G = linear_model.Lasso(alpha=best_alpha).fit(y_train, X_train[:, i]) + v_MET2GCP_models.append(mdl_M2G) + df_MSE, df_pValue, df_rValue = evaluate_models(v_MET2GCP_models, y_test, X_test) + mse2_result = pd.concat([mse2_result,df_MSE],axis = 1) +# pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1) +# rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1) +mse2_result.columns = ["mse1","mse2","mse3"] +mse2_result = mse2_result.T +# print(mse2_result) + + +# In[13]: + + +minMSE2 = mse2_result.idxmin() +# print(minMSE) + +mse2_min = pd.DataFrame() +MSE2_min = list() +for index in mse2_result: + v = mse2_result[index][minMSE2[index]] + MSE2_min.append(v) +# print(v) +mse2_min = pd.DataFrame(MSE2_min) +mse2_min.columns = ["v_MET2GCP_models"] +# print(mse2_min) +raw2 = mse2.join(mse2_min) + +new_MET2GCP = list() +for index, row in raw2.iterrows(): + if row['MET2GCP_models'] < row['v_MET2GCP_models']: + + new_MET2GCP.append(MET2GCP_models[index]) + else: + new_MET2GCP.append(v_MET2GCP_models[index]) + + +print(new_MET2GCP) + + +# In[14]: + + +mse_M2G,p_M2G,pearson_M2G = evaluate_models(new_MET2GCP, Ytest, Xtest) +p_M2G.columns = ["MET2GCP_p"] +pearson_M2G.columns = ["MET2GCP_r"] +raw_M2G = p_M2G.join(pearson_M2G) +pearson_M2G.columns = ["MET2GCP_r_0.05"] +new_M2G = raw_M2G.join(pearson_M2G) + +for index, row in new_M2G.iterrows(): + if row['MET2GCP_p'] >= 0.05: + row['MET2GCP_r_0.05'] = 'NaN' + +print(new_M2G) +new_M2G.to_csv('LASSO_M2G.csv') + + +# In[ ]: + + + + diff --git a/src/python/MET2GCP_CORR.py b/src/python/MET2GCP_CORR.py new file mode 100644 index 0000000..b1241b3 --- /dev/null +++ b/src/python/MET2GCP_CORR.py @@ -0,0 +1,179 @@ +#!/usr/bin/env python +# coding: utf-8 + +# # Chromatin Profile and Metabolomics Correlation +# **Author**: Rachael Jin + +# ## Summary +# This notebook computes the Pearson correlation coefficient and p-value between each histone marker and metabolite pair for 800+ cancer cell lines. + +# ## Import data +# First, we'll read in the metabolomics and chromatin profile data, which are saved as Excel workbooks. + +# In[1]: + + +import pandas as pd +import numpy as np +import scipy.stats +from scipy.stats import kendalltau, pearsonr, spearmanr +from scipy import stats +md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name="All") +md.head() + + +# In[2]: + + +mt = md.drop(['Tissue', 'Medium','Culture'], axis=1) +print('\n\nmd after deleting column\n--------------') +print(mt) + + +# In[3]: + + +hm = pd.read_csv('GCP_proteomics_remapped.csv') +hm.head() + + +# ## Merge datasets based on unique cancer cell line name +# Next, we'll concatenate the two dataframes and match based on cancer cell lines. + +# In[4]: + + +merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line') +merge_tb.head() + + +# In[5]: + + +mt.info() +print('\n') +hm.info() +print('\n') +merge_tb.info() + + +# ## Separate dataframes +# Now that the data is matched by cell lines, we can separate the dataframes again. + +# In[6]: + + +metabolites = merge_tb.iloc[:,1:226] +metabolites.head() + + +# In[7]: + + +histone_markers = merge_tb.iloc[:,227:269] +histone_markers.head() + + +# ## Compute pearson correlation coefficient and pvalue +# Finally, we'll compute the correlation coefficients between metabolites and histone markers and the p-value of correlation. Note that we're also computing metabolite-metabolite and histone-histone correlations. While those are interesting as well, we'll ignore those for downstream analyses. +# + +# In[8]: + + +correlation = merge_tb.corr(method ='pearson') +correlation.to_csv('correlation.csv') + + +# In[9]: + + +corr = pd.concat([metabolites, histone_markers], axis=1, keys=['metabolites', 'histone_markers']).corr().loc['metabolites', 'histone_markers'] +corr + + +# In[10]: + + +corr.to_csv('corr.csv') + + +# In[11]: + + +def calculate_pvalues(df,mt,hm): + """ + :param df: A pandas dataframe containing the merged table of "CCLE metabolomics dataset" and "GCP_proteomics_remapped". Rows correspond to X, Columns correspond to Y. + :param mt: A pandas dataframe containing just the metabolites portion of the merged table. + :param hm: A pandas dataframe containing just the histone markers portion of the mergerd table. + :return newpvalues: A pandas dataframe containg correlations's p-values that are less or equal to 0.05 + + """ + df = df.dropna()._get_numeric_data() + dfcols = pd.DataFrame(columns=df.columns) + pvalues = dfcols.transpose().join(dfcols, how='outer') + df_mt = mt.dropna()._get_numeric_data() + df_hm = hm.dropna()._get_numeric_data() + df_mtcols = pd.DataFrame(columns=df_mt.columns) + df_hmcols = pd.DataFrame(columns=df_hm.columns) + newpvalues = df_mtcols.transpose().join(df_hmcols, how='outer') + for r in (df.columns): + for c in (df.columns): + pvalues[r][c] = round(pearsonr(df[r], df[c])[1],4) + for r in (df_mt.columns): + for c in (df_hm.columns): + if pvalues[r][c] <= 0.05: + newpvalues[c][r] = pvalues[r][c] + newpvalues.to_csv('pvalues_0.05.csv') + return newpvalues + +calculate_pvalues(merge_tb,metabolites,histone_markers) + + +# In[14]: + + +def generate_corrtable(df,mt,hm,corr): + """ + :param df: A pandas dataframe containing the merged table of "CCLE metabolomics dataset" and "GCP_proteomics_remapped". Rows correspond to X, Columns correspond to Y. + :param mt: A pandas dataframe containing just the metabolites portion of the merged table. + :param hm: A pandas dataframe containing just the histone markers portion of the mergerd table. + :param corr: A pandas dataframe containing previous generated correlation value between metabolites and histone markers. + :return new_corr: A pandas dataframe containg correlation that has p-values <= 0.05 + + """ + df = df.dropna()._get_numeric_data() + dfcols = pd.DataFrame(columns=df.columns) + pvalues = dfcols.transpose().join(dfcols, how='outer') + df_mt = mt.dropna()._get_numeric_data() + df_hm = hm.dropna()._get_numeric_data() + df_mtcols = pd.DataFrame(columns=df_mt.columns) + df_hmcols = pd.DataFrame(columns=df_hm.columns) + newpvalues = df_mtcols.transpose().join(df_hmcols, how='outer') + new_corr = df_mtcols.transpose().join(df_hmcols, how='outer') + for r in (df.columns): + for c in (df.columns): + pvalues[r][c] = round(pearsonr(df[r], df[c])[1],4) + for r in (df_mt.columns): + for c in (df_hm.columns): + if pvalues[r][c] <= 0.05: + newpvalues[c][r] = pvalues[r][c] + for r in (df_mt.columns): + for c in (df_hm.columns): + if np.isnan(newpvalues[c][r]) == False: + new_corr[c][r] = corr[c][r] + if (new_corr[c][r]) > 0: + new_corr[c][r] = 1 + elif (new_corr[c][r] < 0): + new_corr[c][r] = -1 + new_corr.to_csv('new_corr.csv') + return new_corr + +generate_corrtable(merge_tb,metabolites, histone_markers, corr) + + +# In[ ]: + + + + diff --git a/src/python/linear regression.py b/src/python/linear regression.py new file mode 100644 index 0000000..88ea209 --- /dev/null +++ b/src/python/linear regression.py @@ -0,0 +1,336 @@ +#!/usr/bin/env python +# coding: utf-8 + +# In[1]: + + +import pandas as pd +import numpy as np +from sklearn.model_selection import train_test_split +from sklearn.linear_model import LinearRegression +from scipy.stats import pearsonr +from sklearn.metrics import mean_squared_error +from sklearn.metrics import mean_absolute_error +from sklearn.model_selection import KFold +from scipy.stats import median_absolute_deviation as mad +from scipy.stats import norm +### Fit train sets in Lasso with best alpha + + +# ### Merge datasets based on cancer cell line name; +# ### concatenate the two dataframes and match based on cancer cell lines; +# ### save them into two new dataframes- MET and GCP; +# ### split GCP and MET into train and test set respectively. + +# In[27]: + + +md = pd.read_excel(io='CCLE metabolomics dataset.xlsx',sheet_name="All") +mt = md.drop(['Tissue', 'Medium','Culture'], axis=1) +hm = pd.read_csv('GCP_proteomics_remapped.csv') +merge_tb = mt.merge(hm,how='inner',left_on='CCL', right_on='Cell Line') +MET = merge_tb.iloc[:,1:226] +GCP = merge_tb.iloc[:,227:269] + + +# ### Plot the H3K4me1 and K3K9ac1 z-score from originial histone marker data set. + +# In[31]: + + +ax1 = hm.plot.scatter(x='H3K4me1', + y='Cell Line', + c='DarkBlue') +# ax1.figure.savefig('H3K4me1.pdf') +ax2 = hm.plot.scatter(x='H3K9ac1K14ac0', + y='Cell Line', + c='Red') + + +# ### Eliminate NaN +# ### Split GCP and MET into train and test set respectively. + +# In[32]: + + +GCP = np.nan_to_num(GCP, nan=0) +MET = np.nan_to_num(MET, nan=0) +Xtrain, Xtest, Ytrain, Ytest =train_test_split(GCP, MET, test_size=0.3, random_state=0) + +print(Xtest.shape) + +print(Ytrain.shape) + + +# ### Fit train sets with Linear regression to generate models + +# In[4]: + + +GCP2MET_models = [] +for i in range(Ytrain.shape[1]): + mdl_G2M = LinearRegression().fit(Xtrain, Ytrain[:, i]) + GCP2MET_models.append(mdl_G2M) + + +MET2GCP_models = [] + +for j in range(Xtrain.shape[1]): + mdl_M2G = LinearRegression().fit(Ytrain, Xtrain[:,j]) + MET2GCP_models.append(mdl_M2G) + + +# In[5]: + + +# def robust_zscore(df): +# """ +# robust_zscore computes a modified version of the Z-score centered around the media and scaled by the median absolute deviation. +# INPUT: +# :param df: A data frame corresponding to numerical values where rows correspond to cells and columns correspond to genes. +# OUTPUTS: +# :output Z: A data frame of the robust Z-scores. +# :output pval: A data frame of the p-values corresponding to the robust Z-scores. +# # Compute model parameters +# """ +# med = df.median(axis=0) +# n = df.shape[1] +# med_abs_dev = mad(df) +# scale_factor = 1.4826 +# # Compute robust Z-score +# Z = (df - med) / (med_abs_dev * scale_factor) +# Z[~np.isfinite(Z)] = 0 +# # Compute P-value based on Z-score +# pval = norm.sf(abs(Z))*2 +# pval = pd.DataFrame(pval, +# index=df.index, +# columns=df.columns) +# return(Z, pval) + + +# ### To evaluate models and get correlation coefficient, pvalue, and mse value. + +# In[42]: + + +def evaluate_models(models, Xtest, Ytest): + """ + evaluate_models returns results from the model predictions, including the pearson + correlation coefficient, p-Values, and MSE. + + :param models: A list of scikit-learn model objects. + :param Xtest: A numpy array or pandas dataframe containing validation set input data. + :param Ytest: A numpy array or pandas dataframe containing validation set output data. + :return pred_resul: A dictionary containing the final MSE, pValue, or rValue. + + """ + + predictions = [] + rValue = list() + pValue = list() + MSE = list() + for i in range(len(models)): + mdl = models[i] + Ypred = mdl.predict(Xtest) + predictions.append(Ypred) + + r, p_value = pearsonr(Ypred, Ytest[:, i]) + # Compute P-value based on r-value + pval = norm.sf(abs(r))*2 + rValue.append(r) + pValue.append(pval) + + mse = mean_squared_error(Ypred, Ytest[:, i]) + MSE.append(mse) + + df_MSE = pd.DataFrame(MSE) + df_pValue = pd.DataFrame(pValue) + df_rValue = pd.DataFrame(rValue) + + return df_MSE, df_pValue, df_rValue + + +# ## GCP to MET +# ### perform 3-fold cross validation to find model that generate the smallest mse value. + +# In[43]: + + +mse1,p1,pearson1 = evaluate_models(GCP2MET_models, Xtest, Ytest) +mse1.columns = ["GCP2MET_models"] + +print(mse1) + + +# In[8]: + + + +kf = KFold(n_splits=3) + +KFold(n_splits=3, random_state=None, shuffle=True) +mse_result = pd.DataFrame() +pvalue_result = pd.DataFrame() +rvalue_result = pd.DataFrame() +for train_index, test_index in kf.split(Xtrain, Ytrain): + + X_train, X_test = Xtrain[train_index], Xtrain[test_index] + y_train, y_test = Ytrain[train_index], Ytrain[test_index] + v_GCP2MET_models = [] + final_metrics = [] + for i in range(y_train.shape[1]): + mdl_G2M = LinearRegression().fit(X_train, y_train[:, i]) + v_GCP2MET_models.append(mdl_G2M) + df_MSE, df_pValue, df_rValue = evaluate_models(v_GCP2MET_models, X_test, y_test) + mse_result = pd.concat([mse_result,df_MSE],axis = 1) + pvalue_result = pd.concat([pvalue_result,df_pValue],axis = 1) + rvalue_result = pd.concat([rvalue_result,df_rValue],axis = 1) + + +mse_result.columns = ["mse1","mse2","mse3"] +mse_result = mse_result.T +print(mse_result) + + + +# In[9]: + + +minMSE = mse_result.idxmin() +print(minMSE) + + +# In[10]: + + +mse_min = pd.DataFrame() +MSE_min = list() +for index in mse_result: + v = mse_result[index][minMSE[index]] + MSE_min.append(v) +# print(v) +mse_min = pd.DataFrame(MSE_min) +mse_min.columns = ["v_GCP2MET_models"] +# print(mse_min) +raw = mse1.join(mse_min) +print(raw) + + +# ### Generate new list of model + +# In[11]: + + +new_GCP2MET = list() +for index, row in raw.iterrows(): + if row['GCP2MET_models'] < row['v_GCP2MET_models']: + + new_GCP2MET.append(GCP2MET_models[index]) + else: + new_GCP2MET.append(v_GCP2MET_models[index]) + + +print(new_GCP2MET) + + +# ### Evaluate if the correlation coefficient generated with the list of best model is significant or not + +# In[12]: + + +mse_G2M,p_G2M,pearson_G2M = evaluate_models(new_GCP2MET, Xtest, Ytest) +p_G2M.columns = ["GCP2MET_p"] +pearson_G2M.columns = ["GCP2MET_r"] +raw_G2M = p_G2M.join(pearson_G2M) +pearson_G2M.columns = ["GCP2MET_r_0.05"] +new_G2M = raw_G2M.join(pearson_G2M) + +for index, row in new_G2M.iterrows(): + if row['GCP2MET_p'] >= 0.05: + row['GCP2MET_r_0.05'] = 'NaN' + +print(new_G2M) +new_G2M.to_csv('Linear_Regression_G2M.csv') + + +# ## MET TO GCP (repeat the same process above) + +# In[14]: + + +mse2,p2,pearson2 = evaluate_models(MET2GCP_models, Ytest, Xtest) +mse2.columns = ["MET2GCP_models"] + +kf = KFold(n_splits=3) +KFold(n_splits=3, random_state=None, shuffle=True) +mse2_result = pd.DataFrame() +# pvalue_result = pd.DataFrame() +# rvalue_result = pd.DataFrame() +for train_index, test_index in kf.split(Xtrain, Ytrain): + X_train, X_test = Xtrain[train_index], Xtrain[test_index] + y_train, y_test = Ytrain[train_index], Ytrain[test_index] + v_MET2GCP_models = [] + metrics = [] + for i in range(X_train.shape[1]): + mdl_M2G = LinearRegression().fit(y_train, X_train[:, i]) + v_MET2GCP_models.append(mdl_M2G) + df_MSE, df_pValue, df_rValue = evaluate_models(v_MET2GCP_models, y_test, X_test) + mse2_result = pd.concat([mse2_result,df_MSE],axis = 1) + +mse2_result.columns = ["mse1","mse2","mse3"] +mse2_result = mse2_result.T +print(mse2_result) + + +# In[15]: + + +minMSE2 = mse2_result.idxmin() +# print(minMSE) + +mse2_min = pd.DataFrame() +MSE2_min = list() +for index in mse2_result: + v = mse2_result[index][minMSE2[index]] + MSE2_min.append(v) +# print(v) +mse2_min = pd.DataFrame(MSE2_min) +mse2_min.columns = ["v_MET2GCP_models"] +# print(mse2_min) +raw2 = mse2.join(mse2_min) + +new_MET2GCP = list() +for index, row in raw2.iterrows(): + if row['MET2GCP_models'] < row['v_MET2GCP_models']: + + new_MET2GCP.append(MET2GCP_models[index]) + else: + new_MET2GCP.append(v_MET2GCP_models[index]) + + +print(new_MET2GCP) + + +# In[16]: + + +mse_M2G,p_M2G,pearson_M2G = evaluate_models(new_MET2GCP, Ytest, Xtest) +p_M2G.columns = ["MET2GCP_p"] +pearson_M2G.columns = ["MET2GCP_r"] +raw_M2G = p_M2G.join(pearson_M2G) +pearson_M2G.columns = ["MET2GCP_r_0.05"] +new_M2G = raw_M2G.join(pearson_M2G) + +for index, row in new_M2G.iterrows(): + if row['MET2GCP_p'] >= 0.05: + row['MET2GCP_r_0.05'] = 'NaN' + +print(new_M2G) +new_M2G.to_csv('Linear_Regression_M2G.csv') + + +# In[ ]: + + + + diff --git a/srv/matlab/CBM/CancerCellLineModels.m b/srv/matlab/CBM/CancerCellLineModels.m index fbf67e1..55f0544 100644 --- a/srv/matlab/CBM/CancerCellLineModels.m +++ b/srv/matlab/CBM/CancerCellLineModels.m @@ -21,6 +21,12 @@ % Initialize metabolic modeling components clear all; + +% Initialize the Umich Cluster profiles +setupUmichClusters +NP = str2num(getenv('SLURM_NTASKS')); +thePool = parpool('current', NP); + initCobraToolbox; changeCobraSolver('gurobi', 'all'); %% 2. Load metabolic models % This code block loads specific versions of the eGEMM. There are currently @@ -260,85 +266,7 @@ end end end -%% 10. SANITY CHECK 3: Ensure Gamma has an effect on metabolic flux -% The short answer - it does. -% % Switch between reconstruction with all reactions and writers only -% tmp1 = models{1}; -% tmp1.genes = tmp1.geneEntrezID; -% -% entrez_ids = string(entrez_ids); -% tmp_dm_rxn = dm_reactions(1); -% -% [~, rxnPos] = ismember(tmp_dm_rxn, tmp1.rxns); -% tmp1.c(rxnPos) = epsilon(1); -% -% k = 1; -% % Get differentially expressed genes for each cancer cell line. -% DE{k}.name = cell_names(k); -% DE{k}.medium = medium(k); -% DE{k}.culture = cultures(k); -% DE{k}.tissue = tissues(k); -% DE{k}.upreg = entrez_ids(log2fc(:, k) > 0 & pvalue(:, k) <= 0.05); -% DE{k}.downreg = entrez_ids(log2fc(:, k) < 0 & pvalue(:, k) <= 0.05); -% -% % Constrain the metabolic model to be medium-specific -% mediumModel = addMediumConstraints(tmp1, medium(k)); -% m = 1; -% hyperparams.gamma = []; -% -% hyperparams.hscore = false; -% % Compute flux using iMAT -% [~, soln1] = CFR(mediumModel, hyperparams, ... -% DE{k}.upreg, DE{k}.downreg); -% -% % Get the growth rate -% grates1(k, 1) = soln1.x(3743); -% -% % Ensure there's growth -% tmp2 = mediumModel; -% tmp2.lb(3743) = soln1.x(3743) * 0.99; -% tmp2.c(3743) = 0; -% -% % Compute metabolic flux when optimizing histone markers -% [ ~, soln1] = CFR(tmp2, hyperparams, DE{k}.upreg, DE{k}.downreg); -% -% % Store data here -% fluxes1 = soln1.x(1:length(tmp1.rxns)); -% -% m = 2; -% tmp1 = models{1}; -% tmp1.genes = tmp1.geneEntrezID; -% -% entrez_ids = string(entrez_ids); -% tmp_dm_rxn = dm_reactions(1); -% -% [~, rxnPos] = ismember(tmp_dm_rxn, tmp1.rxns); -% tmp1.c(rxnPos) = epsilon(1); -% hyperparams.gamma = compute_gamma(tmp1, dm_reactions(1), histone_entrez, string(DE{k}.upreg), string(DE{k}.downreg)); -% -% hyperparams.hscore = false; -% % Compute flux using iMAT -% [~, soln2] = CFR(mediumModel, hyperparams, ... -% DE{k}.upreg, DE{k}.downreg); -% -% % Get the growth rate -% grates2(k, 1) = soln2.x(3743); -% -% % Ensure there's growth -% tmp2 = mediumModel; -% tmp2.lb(3743) = soln.x(3743) * 0.99; -% tmp2.c(3743) = 0; -% -% hyperparams.hscore = true; -% -% % Compute metabolic flux when optimizing histone markers -% [ ~, soln2] = CFR(tmp2, hyperparams, DE{k}.upreg, DE{k}.downreg); -% -% % Store data here -% fluxes2 = soln2.x(1:length(tmp1.rxns)); -% -% sum(fluxes1 - fluxes2, 'all'); %% 11. Compute CCLE metabolic fluxes with the gamma score filepaths = [ ... @@ -367,7 +295,7 @@ [~, rxnPos] = ismember(dm_reactions(j), mdl.rxns); tmp = mdl; tmp.c(rxnPos) = epsilon(j); - + DE = cell(size(log2fc, 2)); grates = zeros([size(log2fc, 2), 1]); fluxes = zeros([length(mdl.rxns), size(log2fc, 2)]); @@ -433,6 +361,5 @@ save(filepaths(2), 'write_gamma_flux', 'write_gamma_grate', 'i', 'j', 'k', '-append'); end end -end -%% -% \ No newline at end of file +end +delete(thePool)